Magellan Linux

Diff of /alx-src/branches/alxconf-060/functions/config_sessions.sh

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2149 by niro, Tue May 17 11:47:17 2011 UTC revision 2435 by niro, Thu Jun 16 16:21:11 2011 UTC
# Line 1  Line 1 
1  # $Id$  # $Id$
2  # configures ica-sessions on the host via mysql db settings  # configures ica-sessions on the host via mysql db settings
3    
4    fix_whitespaces()
5    {
6     local var="$@"
7     echo "${var//\ /_}"
8    }
9    
10  # helper function to create citrix session files  # helper function to create citrix session files
11  generate_ica_session_file()  generate_ica_session_file()
12  {  {
# Line 13  generate_ica_session_file() Line 19  generate_ica_session_file()
19   local ses_domain   local ses_domain
20   local ses_password   local ses_password
21   local ses_browseradrs   local ses_browseradrs
22     local ses_colors
23   local CONFIG   local CONFIG
24    
25   # very basic getops   # very basic getops
# Line 24  generate_ica_session_file() Line 31  generate_ica_session_file()
31   --username) shift; ses_username="$1" ;;   --username) shift; ses_username="$1" ;;
32   --password) shift; ses_password="$1" ;;   --password) shift; ses_password="$1" ;;
33   --domain) shift; ses_domain="$1" ;;   --domain) shift; ses_domain="$1" ;;
34   --server) ses_browseradrs="$1" ;;   --server) shift; ses_browseradrs="$1" ;;
35     --colordepth) shift; ses_colors="$1" ;;
36           esac           esac
37   shift   shift
38   done   done
39    
40   # abort if session, filename or server not given   # abort if session, filename or server not given
41   [[ -z ${session} ]] && return 1   [[ -z ${ses_session} ]] && return 1
42   [[ -z ${file} ]] && return 1   [[ -z ${ses_filename} ]] && return 1
43   [[ -z ${server} ]] && return 1   [[ -z ${ses_browseradrs} ]] && return 1
44    
45   # write session files   # write session files
46   CONFIG="${ALX_ICA_SESSIONS}/${ses_filename}"   CONFIG="${ALX_ICA_SESSIONS}/${ses_filename}"
# Line 59  generate_ica_session_file() Line 67  generate_ica_session_file()
67   addconfig "[${ses_session}]"   addconfig "[${ses_session}]"
68   addconfig "Address=${ses_session}"   addconfig "Address=${ses_session}"
69   addconfig "InitialProgram=#${ses_session}"   addconfig "InitialProgram=#${ses_session}"
70    
71     # convert to ica session file values
72     case ${ses_colors} in
73     24|32) ses_colors="8";;
74     16) ses_colors="4";;
75     8) ses_colors="2";;
76     *) ses_colors="4";; # default to 16bit
77     esac
78     addconfig "DesiredColor=${ses_colors}"
79   addconfig 'TransportDriver=TCP/IP'   addconfig 'TransportDriver=TCP/IP'
80   addconfig 'WinStationDriver=ICA 3.0'   addconfig 'WinStationDriver=ICA 3.0'
81   addconfig "ClearPassword=${ses__password}"   addconfig "ClearPassword=${ses__password}"
# Line 74  generate_program_sh() Line 91  generate_program_sh()
91   local dest   local dest
92   local name   local name
93   local exec   local exec
94     local param
95   local workdir   local workdir
96   local CONFIG   local CONFIG
97    
# Line 83  generate_program_sh() Line 101  generate_program_sh()
101   case $1 in   case $1 in
102   --name|-n) shift; name="$1" ;;   --name|-n) shift; name="$1" ;;
103   --exec|-x) shift; exec="$1" ;;   --exec|-x) shift; exec="$1" ;;
104     --param|-p) shift; param="$1" ;;
105   --dest|-d) shift; dest="$1" ;;   --dest|-d) shift; dest="$1" ;;
106   --workdir|-w) shift; workdir="$1" ;;   --workdir|-w) shift; workdir="$1" ;;
107           esac           esac
# Line 97  generate_program_sh() Line 116  generate_program_sh()
116   CONFIG="${dest}"   CONFIG="${dest}"
117   addconfig "#!/bin/sh"   addconfig "#!/bin/sh"
118   [ -n "${workdir}" ] && addconfig "cd ${workdir}"   [ -n "${workdir}" ] && addconfig "cd ${workdir}"
119   addconfig "exec ${exec}"   addconfig "exec ${exec} ${param}"
120    
121   chmod 0755 "${dest}"   chmod 0755 "${dest}"
122  }  }
# Line 115  generate_icon() Line 134  generate_icon()
134   local iheight   local iheight
135   local deficon   local deficon
136   local CONFIG   local CONFIG
137     local utility
138    
139   # very basic getops   # very basic getops
140   for i in $*   for i in $*
# Line 134  generate_icon() Line 154  generate_icon()
154   done   done
155    
156   # some sanity checks:   # some sanity checks:
157    
158   # abort if name or command not given   # abort if name or command not given
159   [[ -z ${name} ]] && return 1   [[ -z ${name} ]] && return 1
160   [[ -z ${command} ]] && return 1   [[ -z ${command} ]] && return 1
161    
162     # which utility are we using idesk|xtdesk ?
163     if [ -x /usr/bin/idesk ]
164     then
165     utility="idesk"
166     [[ -z ${dest} ]] && dest="${ALX_UNPRIV_HOME}/.idesktop/${name}.lnk"
167     else
168     utility="xtdesk"
169     [[ -z ${dest} ]] && dest="${ALX_UNPRIV_HOME}/.xtdesktop/${name}.lnk"
170     fi
171    
172   # use some defaults for icon, dest, {x,y}res   # use some defaults for icon, dest, {x,y}res
173   [[ -z ${xres} ]] && xres=30   [[ -z ${xres} ]] && xres=30
174   [[ -z ${yres} ]] && xres=30   [[ -z ${yres} ]] && xres=30
  [[ -z ${dest} ]] && dest="${ALX_UNPRIV_HOME}/.xtdesktop/${name}.lnk"  
175   if [[ -z ${icon} ]] || [ ! -f ${icon} ]   if [[ -z ${icon} ]] || [ ! -f ${icon} ]
176   then   then
177   # if no default icon is given use default.png   # if no default icon is given use default.png
# Line 150  generate_icon() Line 179  generate_icon()
179   icon="${ALX_SESSIONS_ICONS}/${deficon}"   icon="${ALX_SESSIONS_ICONS}/${deficon}"
180   fi   fi
181    
182   CONFIG=${dest}   CONFIG="${dest}"
183   clearconfig   clearconfig
184    
185   addconfig 'table Icon'   addconfig 'table Icon'
186   addconfig '  Type: Program'   [[ ${utility} = xtdesk ]] && addconfig '  Type: Program'
187   addconfig "  Caption: ${name}"   addconfig "  Caption: ${name}"
188   addconfig "  Command: ${command}"   addconfig "  Command: ${command}"
189   addconfig "  Icon: ${icon}"   addconfig "  Icon: ${icon}"
# Line 164  generate_icon() Line 193  generate_icon()
193   # add these only if not zero   # add these only if not zero
194   if [[ ! -z ${iwidth} ]] && [[ ! -z ${iheight} ]]   if [[ ! -z ${iwidth} ]] && [[ ! -z ${iheight} ]]
195   then   then
196   addconfig "  IconWidth: ${iwidth}"   if [[ ${utility} = xtdesk ]]
197   addconfig "  IconHeight: ${iheight}"   then
198     addconfig "  IconWidth: ${iwidth}"
199     addconfig "  IconHeight: ${iheight}"
200     fi
201     if [[ ${utility} = idesk ]]
202     then
203     addconfig "  Width: ${iwidth}"
204     addconfig "  Height: ${iheight}"
205     fi
206   fi   fi
207    
208   addconfig 'end'   addconfig 'end'
# Line 180  generate_all_desktop_icons() Line 217  generate_all_desktop_icons()
217   local yres   local yres
218   local x   local x
219   local y   local y
220   local item   local i
221   local name   local name
222   local progsh_path   local progsh_path
223     local utility
224     local dest
225     local rc
226    
227     # which utility are we using idesk|xtdesk ?
228     if [ -x /usr/bin/idesk ]
229     then
230     utility="idesk"
231     dest="${ALX_UNPRIV_HOME}/.idesktop"
232     rc="${ALX_UNPRIV_HOME}/.ideskrc"
233     else
234     utility="xtdesk"
235     dest="${ALX_UNPRIV_HOME}/.xtdesktop"
236     rc="${ALX_UNPRIV_HOME}/.xtdeskrc"
237     fi
238    
239    
240   # progsh path   # progsh path
241   progsh_path=${ALX_UNPRIV_HOME}/.alxprogs   progsh_path="${ALX_UNPRIV_HOME}/.alxprogs"
242    
243   # get the resolution   # get the resolution
244   res=$(mysqldo "select resolution from cfg_graphic where serial='${ALX_SERIAL}'")   res=$(mysqldo "select resolution from cfg_graphic where serial='${ALX_SERIAL}'")
245    
246   # split res to x & y   # split res to x & y
247   xres="${res%x*}"   xres="${res%x*}"
248   xres="${res#*x}"   yres="${res#*x}"
249    
250   # top left edge of the icon is given in config file   # top left edge of the icon is given in config file
251   # remove a little bit to simulate the bottom-right edge   # remove a little bit to simulate the bottom-right edge
252   xres="$(( ${xres} - 120 ))"   xres="$(( ${xres} - 120 ))"
253   yres="$(( ${yres} - 80 ))"   yres="$(( ${yres} - 80 ))"
254    
  # basic config  
  cat ${ALX_SKELETONS}/xtdesktop/xtdeskrc > ${ALX_UNPRIV_HOME}/.xtdeskrc  
   
255   # clean desktop icon location   # clean desktop icon location
256   [ -d ${ALX_UNPRIV_HOME}/.xtdesktop ] && rm -rf ${ALX_UNPRIV_HOME}/.xtdesktop   [ -d ${dest} ] && rm -rf ${dest}
257   install -d ${ALX_UNPRIV_HOME}/.xtdesktop   [ -f ${rc} ] && rm -f ${rc}
258     install -d ${dest}
259    
260    if [[ ${utility} = xtdesk ]]
261    then
262     # basic config
263     cat ${ALX_SKELETONS}/xtdesktop/xtdeskrc > ${ALX_UNPRIV_HOME}/.xtdesktop/xtdeskrc
264    fi
265    
266   # default settings   # default settings
267   declare -i x=30   declare -i x=30
268   declare -i y=30   declare -i y=30
269    
270   # ica icons   # ica icons
271   for item in ${session_list}   for i in ${session_list}
272   do   do
273   # abort if empty   # abort if empty
274   [[ -z ${item} ]] && continue   [[ -z ${i} ]] && continue
275    
276     # get database information
277     evaluate_table cfg_sessions "where serial='${ALX_SERIAL}' and id='${i}'"
278    
279   # new line if x > xres   # new line if x > xres
280   if [ ${x} -ge ${xres} ]   if [ ${x} -ge ${xres} ]
# Line 233  generate_all_desktop_icons() Line 293  generate_all_desktop_icons()
293   [ ${x} -ge ${xres} ] && x=30   [ ${x} -ge ${xres} ] && x=30
294   fi   fi
295    
  name="$(basename ${item} .ica)"  
296   generate_icon \   generate_icon \
297   --name "${name}" \   --name "${cfg_sessions_session}" \
298   --command "nice -n 19 wfica ${ALX_ICA_SESSIONS}/${item}" \   --command "nice -n 19 wfica ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_sessions_filename})" \
299   --icon "${ALX_SESSIONS_ICONS}/${name}.png" \   --icon "${ALX_SESSIONS_ICONS}/$(fix_whitespaces ${cfg_sessions_session}).png" \
300   --dest "${ALX_UNPRIV_HOME}/.xtdesktop/${name}.lnk" \   --dest "${dest}/$(fix_whitespaces ${cfg_sessions_session}).lnk" \
301   --xres "${x}" \   --xres "${x}" \
302   --yres "${y}"   --yres "${y}"
303    
304   y=$((${y} + 80))   y=$((${y} + 80))
305   done   done
306    
307   for item in ${other_menuitem_list}   for i in ${other_menuitem_list}
308   do   do
309   # abort if empty   # abort if empty
310   [[ -z ${item} ]] && continue   [[ -z ${i} ]] && continue
311    
312     # get database information
313     evaluate_table cfg_other_menuitems "where serial='${ALX_SERIAL}' and id='${i}'"
314    
315   # new line if x > xres   # new line if x > xres
316   if [ ${x} -ge ${xres} ]   if [ ${x} -ge ${xres} ]
# Line 268  generate_all_desktop_icons() Line 330  generate_all_desktop_icons()
330   fi   fi
331    
332   generate_icon \   generate_icon \
333   --name "${item}" \   --name "${cfg_other_menuitems_name}" \
334   --command "${progsh_path}/${item}" \   --command "${progsh_path}/$(fix_whitespaces ${cfg_other_menuitems_name})" \
335   --icon "${ALX_SESSIONS_ICONS}/${item}.png" \   --icon "${ALX_SESSIONS_ICONS}/$(fix_whitespaces ${cfg_other_menuitems_name}).png" \
336   --dest "${ALX_UNPRIV_HOME}/.xtdesktop/${item}.lnk" \   --dest "${dest}/$(fix_whitespaces ${cfg_other_menuitems_name}).lnk" \
337   --xres "${x}" \   --xres "${x}" \
338   --yres "${y}" \   --yres "${y}" \
339   --default-icon "default_item.png"   --default-icon "default_item.png"
# Line 301  generate_all_desktop_icons() Line 363  generate_all_desktop_icons()
363   --name "${sysinfo}" \   --name "${sysinfo}" \
364   --command "exit 0" \   --command "exit 0" \
365   --icon "${ALX_SESSIONS_ICONS}/sysinfo.png" \   --icon "${ALX_SESSIONS_ICONS}/sysinfo.png" \
366   --dest "${ALX_UNPRIV_HOME}/.xtdesktop/sysinfo.lnk" \   --dest "${dest}/sysinfo.lnk" \
367   --xres "${xres}" \   --xres "${xres}" \
368   --yres "${yres}" \   --yres "${yres}" \
369   --icon-width "1" \   --icon-width "1" \
# Line 315  config_sessions() Line 377  config_sessions()
377   local all_other_ids   local all_other_ids
378   local CONFIG   local CONFIG
379   local screensaver_passwd_cmd   local screensaver_passwd_cmd
  local all_sessions  
  local all_other_menuitems  
380    
381   # get all session ids from database   # get all session ids from database
382   all_ses_ids=$(mysqldo "select id from cfg_sessions where serial='${ALX_SERIAL}'")   all_ses_ids=$(mysqldo "select id from cfg_sessions where serial='${ALX_SERIAL}'")
# Line 327  config_sessions() Line 387  config_sessions()
387   evaluate_table cfg_screensaver   evaluate_table cfg_screensaver
388   # get autostart settings   # get autostart settings
389   evaluate_table cfg_autostart   evaluate_table cfg_autostart
390     # get current color depth
391     evaluate_table cfg_graphic
392    
393   # now setup fluxbox for user station   # now setup fluxbox for user station
394    
# Line 340  config_sessions() Line 402  config_sessions()
402   cat ${ALX_SKELETONS}/fluxbox/init > ${ALX_UNPRIV_HOME}/.fluxbox/init   cat ${ALX_SKELETONS}/fluxbox/init > ${ALX_UNPRIV_HOME}/.fluxbox/init
403    
404   # fluxbox autostart   # fluxbox autostart
  cat ${ALX_SKELETONS}/fluxbox/apps > ${ALX_UNPRIV_HOME}/.fluxbox/apps  
   
405   CONFIG="${ALX_UNPRIV_HOME}/.fluxbox/apps"   CONFIG="${ALX_UNPRIV_HOME}/.fluxbox/apps"
406     # add icon utility
407     [ -x /usr/bin/idesk ] && addconfig '[startup] {nohup idesk > /dev/null &}'
408     [ -x /usr/bin/xtdesk ] && addconfig '[startup] {nohup xtdesk > /dev/null &}'
409     # add numlock utility
410     [ -x /usr/bin/numlockx ] && addconfig '[startup] {nohup numlockx on &}'
411    
412   # add screensaver   # add screensaver
413   if [[ ! -z ${cfg_screensaver_screensaver} ]] && [[ ! -z ${cfg_screensaver_screensaver_timeout} ]]   if [[ ! -z ${cfg_screensaver_screensaver} ]] && [[ ! -z ${cfg_screensaver_screensaver_timeout} ]]
414   then   then
# Line 359  config_sessions() Line 425  config_sessions()
425   # add autostart session   # add autostart session
426   if [[ ! -z ${cfg_autostart_session} ]]   if [[ ! -z ${cfg_autostart_session} ]]
427   then   then
428   addconfig "[startup] {nohup nice -n 19 wfica ${ALX_ICA_SESSIONS}/${cfg_autostart_session} &}"   # sleep one second to wait until busybox is fully initialized and the screen is really centered
429     addconfig "[startup] {sleep 1 && nohup nice -n 19 wfica ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_autostart_session}) &}"
430   fi   fi
431    
432   # fluxbox hotkeys   # fluxbox hotkeys
433   cat ${ALX_SKELETONS}/fluxbox/keys > ${ALX_UNPRIV_HOME}/.fluxbox/keys   cat ${ALX_SKELETONS}/fluxbox/keys > ${ALX_UNPRIV_HOME}/.fluxbox/keys
434    
435   # generate a fluxbox menu   # generate a fluxbox menu
436   CONFIG=${ALX_UNPRIV_HOME}/.fluxbox/menu   CONFIG="${ALX_UNPRIV_HOME}/.fluxbox/menu"
437   clearconfig   clearconfig
438    
439   # fluxbox menu header   # fluxbox menu header
# Line 383  config_sessions() Line 450  config_sessions()
450   evaluate_table cfg_sessions "where serial='${ALX_SERIAL}' and id='${i}'"   evaluate_table cfg_sessions "where serial='${ALX_SERIAL}' and id='${i}'"
451   generate_ica_session_file \   generate_ica_session_file \
452   --session "${cfg_sessions_session}" \   --session "${cfg_sessions_session}" \
453   --filename "${cfg_sessions_filename}" \   --filename "$(fix_whitespaces ${cfg_sessions_filename})" \
454   --username "${cfg_sessions_username}" \   --username "${cfg_sessions_username}" \
455   --password "${cfg_sessions_password}" \   --password "${cfg_sessions_password}" \
456   --domain "${cfg_sessions_domain}" \   --domain "${cfg_sessions_domain}" \
457   --server "${cfg_sessions_browseradrs}"   --server "${cfg_sessions_browseradrs}" \
458     --colordepth "${cfg_graphic_depth}"
459    
460   # fluxbox menusession   # fluxbox menusession
461   addconfig "[exec] (${cfg_sessions_session}) {nice -n 19 wfica ${ALX_ICA_SESSIONS}/${cfg_sessions_filename}}"   addconfig "[exec] (${cfg_sessions_session}) {nice -n 19 wfica ${ALX_ICA_SESSIONS}/$(fix_whitespaces ${cfg_sessions_filename})}"
   
  # add to all_sessions variable to create icons later for these  
  all_sessions="${all_sessions} ${cfg_sessions_filename}"  
462   done   done
463    
464   # delete all progs   # delete all progs
# Line 421  config_sessions() Line 486  config_sessions()
486   generate_program_sh \   generate_program_sh \
487   --name "${cfg_other_menuitems_name}" \   --name "${cfg_other_menuitems_name}" \
488   --exec "${cfg_other_menuitems_exec}" \   --exec "${cfg_other_menuitems_exec}" \
489   --dest "${progsh_path}/${cfg_other_menuitems_name}" \   --param "${cfg_other_menuitems_param}" \
490   "${cfg_other_menuitems_workdir}"   --dest "${progsh_path}/$(fix_whitespaces ${cfg_other_menuitems_name})" \
491     "${workdir}"
  addconfig "[exec] (${cfg_other_menuitems_name}) {${progsh_path}/${cfg_other_menuitems_name}} ${cfg_other_menuitems_icon}"  
492    
493   # add to all_other_menuitems variable to create icons later for these   addconfig "[exec] (${cfg_other_menuitems_name}) {${progsh_path}/$(fix_whitespaces ${cfg_other_menuitems_name})} ${cfg_other_menuitems_icon}"
  all_other_menuitems="${all_other_menuitems} ${cfg_other_menuitems_name}"  
494   done   done
495    
496   # fluxbox menu footer   # fluxbox menu footer
# Line 436  config_sessions() Line 499  config_sessions()
499   addconfig   addconfig
500    
501   # now it's a good time to generate *all* icons :)   # now it's a good time to generate *all* icons :)
502   generate_all_desktop_icons "${all_sessions}" "${all_other_menuitems}"   generate_all_desktop_icons "${all_ses_ids}" "${all_other_ids}"
503    
504   # fix permissions   # fix permissions
505   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}   chown ${ALX_UNPRIV_USER}:${ALX_UNPRIV_GROUP} ${ALX_UNPRIV_HOME}

Legend:
Removed from v.2149  
changed lines
  Added in v.2435