Magellan Linux

Diff of /mcore-src/trunk/mcore-tools/src/modules/citrix/citrix.client.class.in

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

mcore-src/trunk/mcore-tools/daemon/client/include/citrix.client.class revision 2022 by niro, Mon Aug 13 11:23:26 2012 UTC mcore-src/trunk/mcore-tools/src/modules/citrix/citrix.client.class.in revision 2265 by niro, Mon Jan 13 15:38:26 2014 UTC
# Line 5  provide citrix ica Line 5  provide citrix ica
5  # needs fluxbox!  # needs fluxbox!
6  require fluxbox basic-video  require fluxbox basic-video
7    
8    # citrix global config
9    include @@SYSCONFDIR@@/mcore/citrix.conf
10    
11  help_citrix_serverlist()  help_citrix_serverlist()
12  {  {
13   mecho "get citrix.serverlist"   mecho "get citrix.serverlist [action]"
14   mecho " Shows all hosts added on the serverlist."   mecho " Shows all hosts added on the serverlist."
15     mecho " [actions]:"
16     mecho "   print - prints local configured serverlist"
17     mecho "   query - get serverlist of the farm from given [server]"
18   mecho   mecho
19   mecho "set citrix.serverlist [action] [host]"   mecho "set citrix.serverlist [action] [host]"
20   mecho " Adds or deletes a server from the ica serverlist."   mecho " Adds or deletes a server from the ica serverlist."
21   mecho " [actions]:"   mecho " [actions]:"
22   mecho "   add   - adds a server"   mecho "   add   - adds a server"
23   mecho "   del   - deletes a server"   mecho "   del   - deletes a server"
24     mecho "   auto  - queries given [server] for the serverlist and adds all of them"
25   mecho   mecho
26   mecho "   host  - dns hostname or ip of the server"   mecho "   host  - dns hostname or ip of the server"
27   mecho   mecho
# Line 25  help_citrix_session() Line 32  help_citrix_session()
32  {  {
33   mecho "get citrix.session"   mecho "get citrix.session"
34   mecho " Shows all configured ICA sessions"   mecho " Shows all configured ICA sessions"
35     mecho "   print - prints all local configured sessions"
36     mecho "   query - get sessionlist of the farm from given [server]"
37   mecho   mecho
38   mecho "set citrix.session [action] [session] [mode] [user] [domain] [password]"   mecho "set citrix.session [action] [name] [session] [mode] [user] [domain] [password]"
39   mecho "  Adds or delets a ICA session."   mecho "  Adds or delets a ICA session."
40   mecho "  Available actions:"   mecho "  Available actions:"
41   mecho "   add        - adds a new ica session"   mecho "   add        - adds a new ica session"
# Line 49  help_citrix_session() Line 58  help_citrix_session()
58  set_citrix_session()  set_citrix_session()
59  {  {
60   local action="$1"   local action="$1"
61   local session="$2"   local name="$2"
62   local mode="$3"   local session="$3"
63   local user="$4"   local mode="$4"
64   local domain="$5"   local user="$5"
65   local password="$6"   local domain="$6"
66     local password="$7"
67   local serverlist   local serverlist
68   local server   local server
69   local server_num   local server_num
# Line 62  set_citrix_session() Line 72  set_citrix_session()
72   local i   local i
73    
74   [[ -z ${action} ]] && help_citrix_session && return 1   [[ -z ${action} ]] && help_citrix_session && return 1
75   [[ -z ${session} ]] && help_citrix_session && return 1   [[ -z ${name} ]] && help_citrix_session && return 1
76    
77   case "${action}" in   case "${action}" in
78   add)   add)
79   # action 'add' need mode too   # action 'add' need mode too
80   [[ -z ${mode} ]] && help_citrix_session && return 1   [[ -z ${mode} ]] && help_citrix_session && return 1
81     # and session
82     [[ -z ${session} ]] && help_citrix_session && return 1
83    
84   # other sanity checks   # other sanity checks
85   case "${mode}" in   case "${mode}" in
# Line 77  set_citrix_session() Line 89  set_citrix_session()
89   *) help_citrix_session && return 1   *) help_citrix_session && return 1
90   esac   esac
91    
92   icafile="${MCORE_CONFIG_PATH}/citrix/ica/${session}.ica"   icafile="${MCORE_CONFIG_PATH}/citrix/ica/${name}.ica"
93   CONFIG="${MROOT}/${icafile}"   CONFIG="${MROOT}/${icafile}"
94   clearconfig   clearconfig
95    
# Line 136  set_citrix_session() Line 148  set_citrix_session()
148   esac   esac
149    
150   # generate fluxbox menu entry   # generate fluxbox menu entry
151   set_fluxbox_menuitem add "${session}" "wfica ${icafile}"   set_fluxbox_menuitem add "${name}" "wfica ${icafile}"
152   ;;   ;;
153    
154   del)   del)
155   if [[ -f ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica/${session}.ica ]]   if [ -f ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica/"${name}".ica ]
156   then   then
157   rm ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica/"${session}".ica   rm ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica/"${name}".ica
158   set_fluxbox_menuitem del "${session}"   set_fluxbox_menuitem del "${name}"
159    
160   elif [[ -z ${file} ]]   elif [[ -z ${file} ]]
161   then   then
162   # delete all items, needed to loop through every session   # delete all items, needed to loop through every session
163   # or we delete *all* fluxbox menuitem too   # or we delete *all* fluxbox menuitem too
164   for i in ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica/*   for i in $(find ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica -type f)
165   do   do
166   rm ${i}   rm ${i}
167   set_fluxbox_menuitem del "$(basename ${i} .ica)"   set_fluxbox_menuitem del "$(basename ${i} .ica)"
# Line 163  set_citrix_session() Line 175  set_citrix_session()
175    
176  get_citrix_session()  get_citrix_session()
177  {  {
178   list_files_in_directory ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica   local action="$1"
179     local server="$2"
180     local sessionlist
181     local sessioncount
182     local i
183     local exclude
184    
185     [[ -z ${action} ]] && help_citrix_serverlist && return 1
186    
187     case "${action}" in
188     print) list_files_in_directory ${MROOT}/${MCORE_CONFIG_PATH}/citrix/ica ;;
189     query)
190     [[ -n ${PNABROWSE_EXECUTABLE} ]] || eecho "\$PNABROWSE_EXECUTABLE not defined"
191     [[ -n ${PNABROWSE_CITRIX_BROWSER} ]] || eecho "\$PNABROWSE_CITRIX_BROWSER not defined"
192     if [ -x ${MROOT}/${PNABROWSE_EXECUTABLE} ]
193     then
194     if [[ -n ${PNABROWSE_SESSION_EXCLUDE} ]]
195     then
196     exclude="| grep -v '${PNABROWSE_SESSION_EXCLUDE}'"
197     fi
198     sessionlist=( $(${MROOT}/${PNABROWSE_EXECUTABLE} -A "${PNABROWSE_CITRIX_BROWSER}" ${exclude}) )
199     sessioncount="${#sessionlist[*]}"
200     for (( i=0; i<sessioncount; i++))
201     do
202     rvecho -n "${sessionlist[${i}]} "
203     done
204     rvecho
205     else
206     eecho "'${MROOT}/${PNABROWSE_EXECUTABLE}' executable not found."
207     fi
208     ;;
209     *) help_citrix_session && return 1 ;;
210     esac
211  }  }
212    
213  set_citrix_serverlist()  set_citrix_serverlist()
# Line 171  set_citrix_serverlist() Line 215  set_citrix_serverlist()
215   local action="$1"   local action="$1"
216   local server="$2"   local server="$2"
217   local CONFIG   local CONFIG
218     local serverlist
219     local servercount
220     local i
221     local exclude
222    
223   [[ -z ${action} ]] && help_citrix_serverlist && return 1   [[ -z ${action} ]] && help_citrix_serverlist && return 1
224    
# Line 183  set_citrix_serverlist() Line 231  set_citrix_serverlist()
231   ;;   ;;
232    
233   del)   del)
234   if [[ -f ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist/${server} ]]   if [ ! -d ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist ]
235     then
236     eecho "'${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist' directory not found."
237     elif [ -f ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist/${server} ]
238   then   then
239   rm ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist/"${server}"   rm ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist/"${server}"
240   elif [[ -z ${server} ]]   elif [[ -z ${server} ]]
241   then   then
242   # delete all items   # delete all items
243   rm ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist/*   find ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist -type f | xargs --no-run-if-empty rm
244     fi
245     ;;
246    
247     auto)
248     [[ -n ${PNABROWSE_EXECUTABLE} ]] || eecho "\$PNABROWSE_EXECUTABLE not defined"
249     [[ -n ${PNABROWSE_CITRIX_BROWSER} ]] || eecho "\$PNABROWSE_CITRIX_BROWSER not defined"
250     if [ -x ${MROOT}/${PNABROWSE_EXECUTABLE} ]
251     then
252     if [[ -n ${PNABROWSE_SERVER_EXCLUDE} ]]
253     then
254     exclude="| grep -v '${PNABROWSE_SERVER_EXCLUDE}'"
255     fi
256     serverlist=( $(${MROOT}/${PNABROWSE_EXECUTABLE} -S ${PNABROWSE_CITRIX_BROWSER} ${exclude}) )
257     servercount="${#serverlist[*]}"
258     for (( i=0; i<servercount; i++))
259     do
260     server="${serverlist[${i}]}"
261     CONFIG="${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist/${server}"
262     clearconfig
263     addconfig "${server}"
264     done
265     else
266     eecho "'${MROOT}/${PNABROWSE_SERVER_EXCLUDE}' executable not found."
267   fi   fi
268   ;;   ;;
269    
# Line 199  set_citrix_serverlist() Line 273  set_citrix_serverlist()
273    
274  get_citrix_serverlist()  get_citrix_serverlist()
275  {  {
276   list_files_in_directory ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist   local action="$1"
277     local server="$2"
278     local serverlist
279     local servercount
280     local i
281     local exclude
282    
283     [[ -z ${action} ]] && help_citrix_serverlist && return 1
284    
285     case "${action}" in
286     print)
287     list_files_in_directory ${MROOT}/${MCORE_CONFIG_PATH}/citrix/serverlist ;;
288     query)
289     [[ -n ${PNABROWSE_EXECUTABLE} ]] || eecho "\$PNABROWSE_EXECUTABLE not defined"
290     [[ -n ${PNABROWSE_CITRIX_BROWSER} ]] || eecho "\$PNABROWSE_CITRIX_BROWSER not defined"
291     if [ -x ${MROOT}/${PNABROWSE_EXECUTABLE} ]
292     then
293     serverlist=( $(${MROOT}/${PNABROWSE_EXECUTABLE} -S ${PNABROWSE_CITRIX_BROWSER}) )
294     servercount="${#serverlist[*]}"
295     for (( i=0; i<servercount; i++))
296     do
297     rvecho -n "${serverlist[${i}]} "
298     done
299     rvecho
300     else
301     eecho "'${MROOT}/${PNABROWSE_EXECUTABLE}' executable not found."
302     fi
303     ;;
304     *) help_citrix_session && return 1 ;;
305     esac
306  }  }

Legend:
Removed from v.2022  
changed lines
  Added in v.2265