-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsshplus.py
executable file
·217 lines (190 loc) · 6.77 KB
/
sshplus.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# SSHplus
# A remote connect utlity, sshmenu compatible clone, and application starter.
#
# (C) 2011 Anil Gulecha
# Based on sshlist, incorporating changes by Benjamin Heil's simplestarter
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# Instructions
#
# 1. Copy file sshplus.py (this file) to /usr/local/bin
# 2. Edit file .sshplus in your home directory to add menu entries, each
# line in the format NAME|COMMAND|ARGS
# 3. Launch sshplus.py
# 4. Or better yet, add it to gnome startup programs list so it's run on login.
import gobject
import gtk
import appindicator
import os
import pynotify
import sys
import shlex
_VERSION = "1.0"
_SETTINGS_FILE = os.getenv("HOME") + "/.sshplus"
_SSHMENU_FILE = os.getenv("HOME") + "/.sshmenu"
_ABOUT_TXT = """A simple application starter as appindicator.
To add items to the menu, edit the file <i>.sshplus</i> in your home directory. Each entry must be on a new line in this format:
<tt>NAME|COMMAND|ARGS</tt>
If the item is clicked in the menu, COMMAND with arguments ARGS will be executed. ARGS can be empty. To insert a separator, add a line which only contains "sep". Lines starting with "#" will be ignored. You can set an unclickable label with the prefix "label:". Items from sshmenu configuration will be automatically added.
Example file:
<tt><small>
Show top|gnome-terminal|-x top
sep
# this is a comment
label:SSH connections
SSH Ex|gnome-terminal|-x ssh [email protected]
label:RDP connections
RDP Ex|rdesktop|-T "RDP-Server" -r sound:local 1.2.3.4
</small></tt>
Copyright 2011 Anil Gulecha
Incorporating changes from simplestarter, Benjamin Heil, http://www.bheil.net
Released under GPL3, http://www.gnu.org/licenses/gpl-3.0.html"""
def menuitem_response(w, item):
if item == '_about':
show_help_dlg(_ABOUT_TXT)
elif item == '_refresh':
newmenu = build_menu()
ind.set_menu(newmenu)
pynotify.Notification("SSHplus refreshed", "Menu list was refreshed!").show()
elif item == '_quit':
sys.exit(0)
else:
print item
os.spawnvp(os.P_NOWAIT, item['cmd'], [item['cmd']] + item['args'])
os.wait3(os.WNOHANG)
def show_help_dlg(msg, error=False):
if error:
dlg_icon = gtk.MESSAGE_ERROR
else:
dlg_icon = gtk.MESSAGE_INFO
md = gtk.MessageDialog(None, 0, dlg_icon, gtk.BUTTONS_OK)
try:
md.set_markup("<b>SSHplus %s</b>" % _VERSION)
md.format_secondary_markup(msg)
md.run()
finally:
md.destroy()
def add_separator(menu):
separator = gtk.SeparatorMenuItem()
separator.show()
menu.append(separator)
def add_menu_item(menu, caption, item=None):
menu_item = gtk.MenuItem(caption)
if item:
menu_item.connect("activate", menuitem_response, item)
else:
menu_item.set_sensitive(False)
menu_item.show()
menu.append(menu_item)
def get_sshmenuconfig():
if not os.path.exists(_SSHMENU_FILE):
return None
hostlist=open(os.getenv("HOME")+"/.sshmenu","r").read()
smenutitle=[]
smenuparams=[]
try:
for line in hostlist.split("\n"):
if line[2:7] == "title":
smenutitle.append(line.split(":")[1])
if line[2:11] == "sshparams":
smenuparams.append(line.split(":")[1])
if len(smenutitle) == len(smenuparams):
if len(smenutitle) != 0:
return (smenutitle,smenuparams)
else:
if len(smenuparams) != 0:
return (smenuparams,smenuparams)
return None
except:
return None
def get_sshplusconfig():
if not os.path.exists(_SETTINGS_FILE):
return []
app_list = []
f = open(_SETTINGS_FILE, "r")
try:
for line in f.readlines():
line = line.rstrip()
if not line or line.startswith('#'):
continue
elif line == "sep":
app_list.append('sep')
elif line.startswith('label:'):
app_list.append({
'name': 'LABEL',
'cmd': line[6:],
'args': ''
})
else:
try:
name, cmd, args = line.split('|', 2)
app_list.append({
'name': name,
'cmd': cmd,
'args': [n.replace("\n", "") for n in shlex.split(args)],
})
except ValueError:
print "The following line has errors and will be ignored:\n%s" % line
finally:
f.close()
return app_list
def build_menu():
if not os.path.exists(_SETTINGS_FILE) and not os.path.exists(_SSHMENU_FILE) :
show_help_dlg("<b>ERROR: No .sshmenu or .sshplus file found in home directory</b>\n\n%s" % \
_ABOUT_TXT, error=True)
sys.exit(1)
app_list = get_sshplusconfig()
#Add sshmenu config items if any
sshmenuitems = get_sshmenuconfig()
if sshmenuitems != None:
app_list.append("sep")
app_list.append({
'name': 'LABEL',
'cmd': "SSHmenu",
'args': ''
})
titles=sshmenuitems[0]
sshparams=sshmenuitems[1]
for i in range(len(titles)):
app_list.append({
'name': titles[i],
'cmd': "gnome-terminal",
'args': [n.replace("\n", "") for n in shlex.split("-x ssh " + sshparams[i])],
})
menu = gtk.Menu()
for app in app_list:
if app == "sep":
add_separator(menu)
elif app['name'] == "LABEL":
add_menu_item(menu, app['cmd'], None)
else:
add_menu_item(menu, app['name'], app)
add_separator(menu)
add_menu_item(menu, 'Refresh', '_refresh')
add_menu_item(menu, 'About', '_about')
add_separator(menu)
add_menu_item(menu, 'Quit', '_quit')
return menu
if __name__ == "__main__":
pynotify.init("SSH Plus")
ind = appindicator.Indicator("sshplus", os.path.abspath('/usr/local/bin/sshplus.png'),
appindicator.CATEGORY_APPLICATION_STATUS)
ind.set_status(appindicator.STATUS_ACTIVE)
appmenu = build_menu()
ind.set_menu(appmenu)
gtk.main()