This repository has been archived by the owner on Aug 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhubic-gtk.py
executable file
·759 lines (588 loc) · 29.7 KB
/
hubic-gtk.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
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
#!/usr/bin/env python3
# -*- coding: utf-8;mode: python -*-
# Icons are from: https://openclipart.org/detail/171665/nube
# Theme1 : https://openclipart.org/detail/213631/red-cloud
# Theme2 : https://openclipart.org/detail/14715/simple-weather-symbols
# Exclamation : https://openclipart.org/detail/1695/warning-sign
# Gears : https://openclipart.org/detail/256083/gears
# Arrow : https://openclipart.org/detail/198398/mono-rotate-ccw
# Padlock : https://openclipart.org/detail/211857/matticonssystemlockscreen
# python stuff
import os, pwd, time, shlex
import signal, subprocess
from configparser import ConfigParser
# other stuff
import gi
gi.require_version('GdkPixbuf', '2.0')
gi.require_version('Gtk', '3.0')
gi.require_version('Notify', '0.7')
from gi.repository import GdkPixbuf, Gtk, GLib, GObject, Notify
#try:
# gi.require_version('AppIndicator3', '0.1')
# from gi.repository import AppIndicator3 as appindicator
#except (ImportError, ValueError):
# appindicator = None
import dbus
from dbus.mainloop.glib import DBusGMainLoop
from xdg.BaseDirectory import xdg_config_home
HUBIC_STATUS_VERSION = 'dev'
HUBIC_L10N_PATH = './po'
import gettext
gettext.install('hubic-gtk', HUBIC_L10N_PATH)
HUBIC_POSSIBLE_STATUS = {
'Idle': _('Idle'),
'Busy': _('Busy'),
'Paused': _('Paused'),
'Connecting': _('Connecting'),
'NotConnected': _('NotConnected'),
'Synchronized': _('Synchronized'),
'Unsynchronized': _('Unsynchronized'),
'NoStatus': _('NoStatus'),
'Error': _('Error'),
'Starting': _('Starting'),
'Killed': _('Killed')
}
# TODO replace with now standard getboolean
# https://docs.python.org/3.5/library/configparser.html#supported-datatypes
def get_bool_conf_option(config, section, option):
if config.has_option(section, option):
v = config.get(section, option)
return str(v).lower() in ('yes', 'true', 't', '1')
return False
class FileFolderHelper:
def __init__(self, config, hubic_dir):
self.config = config
self.hubic_dir = hubic_dir
self.folder_opener = 'xdg-open {0}'
if self.config.has_section('general') and self.config.has_option('general', 'file_browser'):
self.folder_opener = self.config.get('general', 'file_browser')
def set_hubic_dir(self, hubic_dir):
self.hubic_dir = hubic_dir
def open_folder(self, path):
raw_argv = shlex.split(self.folder_opener.format(path))
subprocess.Popen(raw_argv)
# os.spawnvp(os.P_NOWAIT, raw_argv[0], raw_argv)
def crunch_path(self, file_path):
if self.hubic_dir != '' and file_path[:len(self.hubic_dir)] == self.hubic_dir:
file_path = file_path[len(self.hubic_dir):]
if file_path[0] != '/':
file_path = '/' + file_path
if len(file_path) > 60:
file_path = file_path[:30] + ' (...) ' + file_path[-30:]
return '[HubicRoot]' + file_path
return file_path
def format_task(self, work, crunch = False):
workfile = work[1]
if crunch:
workfile = self.crunch_path(workfile)
else:
workfile = os.path.basename(work[1])
if work[4] != -1 and work[5] != -1:
completness = round((work[4] * 100.0) / work[5], 1)
return '{0} ({1}%)'.format(workfile, completness)
return workfile
def file_size(self, file_size):
# I know that 1byte != 1octet, but here it makes sense... so
# Number used for conversion come from https://fr.wikipedia.org/wiki/Octet
# default prefix_unit is 'binary'
kilo_unit = 1024.0
kilo_symbol = 'Kio'
mega_unit = 1048576.0
mega_symbol = 'Mio'
giga_unit = 1073741824.0
giga_symbol = 'Gio'
tera_unit = 1099511627776.0
tera_symbol = 'Tio'
if self.config.has_section('general') and self.config.has_option('general', 'prefix_unit'):
if self.config.get('general', 'prefix_unit') == 'decimal':
kilo_unit = float(1e3)
kilo_symbol = 'Ko'
mega_unit = float(1e6)
mega_symbol = 'Mo'
giga_unit = float(1e9)
giga_symbol = 'Go'
tera_unit = float(1e12)
tera_symbol = 'To'
if file_size >= tera_unit:
used_gibi = round(file_size / tera_unit, 2)
used_unit = tera_symbol
elif file_size >= giga_unit:
used_gibi = round(file_size / giga_unit, 2)
used_unit = giga_symbol
elif file_size >= mega_unit:
used_gibi = round(file_size / mega_unit, 2)
used_unit = mega_symbol
else:
used_gibi = round(file_size / kilo_unit, 2)
used_unit = kilo_symbol
return (used_gibi, used_unit)
class EncfsMenu(GObject.Object):
def __init__(self, config, hubic_dir, icon_callback):
self.config = config
self.hubic_dir = hubic_dir
self.icon_callback = icon_callback
Notify.init(_('HubicGTK Secure Repositories'))
def set_hubic_dir(self, hubic_dir):
self.hubic_dir = hubic_dir
def build_menu(self, menu):
encfs_repos = self.config.sections()
if self.hubic_dir != '' and len(encfs_repos) > 1:
encfs_menu = Gtk.Menu()
for sec in self.config.sections():
if sec != 'general' and self.config.has_option(sec, 'mount_point'):
mount_point = os.path.expanduser(self.config.get(sec, 'mount_point'))
if subprocess.call(['grep', '-q', mount_point, '/etc/mtab']) == 0:
mi_button = Gtk.MenuItem.new_with_label(_('Umount {0}').format(mount_point))
mi_button.connect('activate', self.encfs_action, 'umount', sec)
else:
mi_button = Gtk.MenuItem.new_with_label(_('Mount {0}').format(mount_point))
mi_button.connect('activate', self.encfs_action, 'mount', sec)
encfs_menu.append(mi_button)
encfs_menu_button = Gtk.MenuItem.new_with_label(_('Encrypted repositories'))
encfs_menu_button.set_submenu(encfs_menu)
menu.append(encfs_menu_button)
def something_is_mounted(self):
encfs_repos = self.config.sections()
if len(encfs_repos) > 1:
for sec in self.config.sections():
if sec != 'general' and self.config.has_option(sec, 'mount_point'):
mount_point = os.path.expanduser(self.config.get(sec, 'mount_point'))
if subprocess.call(['grep', '-q', mount_point, '/etc/mtab']) == 0:
return True
return False
def notify(self, msg, urgency=Notify.Urgency.NORMAL):
nota = Notify.Notification.new(
_('HubicGTK Secure Repositories'),
msg
)
nota.set_urgency(urgency)
nota.show()
def encfs_action(self, widget, action, section):
mount_point = os.path.expanduser(self.config.get(section, 'mount_point'))
origin = os.path.join(self.hubic_dir, section)
if not self.config.has_option(section, 'encfs_config'):
self.notify(
_('No config file path declared for {0}').format(section),
Notify.Urgency.CRITICAL
)
return False
encfs_config_file = os.path.expanduser(self.config.get(section, 'encfs_config'))
if action == 'mount':
if os.path.isdir(mount_point) and len(os.listdir(mount_point)) > 0:
self.notify(
_('{0} already exists in your file system but is NOT an empty folder. Please fix it and then retry to mount {1}').format(mount_point, origin),
Notify.Urgency.CRITICAL
)
return False
elif os.path.exists(mount_point) and not os.path.isdir(mount_point):
self.notify(
_('{0} already exists in your file system but is NOT an empty folder. Please fix it and then retry to mount {1}').format(mount_point, origin),
Notify.Urgency.CRITICAL
)
return False
elif not os.path.exists(mount_point):
os.makedirs(mount_point)
password = ''
if self.config.has_option(section, 'encfs_passphrase'):
password = self.config.get(section, 'encfs_passphrase')
elif self.config.has_option(section, 'encfs_passfile'):
pass_file = os.path.expanduser(self.config.get(section, 'encfs_passfile'))
if os.access(pass_file, os.R_OK):
with open(pass_file) as fp:
password = fp.read()
fp.close()
else:
self.notify(
_('Error while reading your password from {0}. Please check if everything is OK before retrying.').format(pass_file),
Notify.Urgency.CRITICAL
)
return False
else:
try:
password = subprocess.check_output(['zenity', '--password']).decode()
except subprocess.CalledProcessError:
# Nothing to do, user should have hit cancel button
password = ''
password = password.strip()
encfs_mount_cmd = 'false'
if password != '':
encfs_mount_cmd = 'echo "{0}" | ENCFS6_CONFIG="{1}" encfs -S "{2}" "{3}"'.format(password, encfs_config_file, origin, mount_point)
if subprocess.call(encfs_mount_cmd, shell=True) == 0:
self.notify(_('{0} correctly mounted').format(mount_point))
self.icon_callback('NotMounted', 'Mounted')
if get_bool_conf_option(self.config, section, 'open_folder_at_mount'):
folder_heler = FileFolderHelper(self.config, self.hubic_dir)
folder_helper.open_folder(mount_point)
else:
self.notify(
_('An error occured while mounting {0}').format(mount_point),
Notify.Urgency.CRITICAL
)
else:
if subprocess.call(['fusermount', '-u', mount_point]) == 0:
self.notify(_('{0} successfully umounted').format(mount_point))
self.icon_callback('Mounted', 'NotMounted')
else:
self.notify(
_('An error occured while umounting {0}').format(mount_point),
Notify.Urgency.CRITICAL
)
class SystrayIconApp(GObject.Object):
def __init__(self):
Notify.init('HubicGTK')
self.config = ConfigParser()
self.config.read(os.path.join(xdg_config_home, 'hubiC', 'status_icon.conf'))
self.tray = Gtk.StatusIcon()
self.hubic_state = 'Killed'
self.tray.set_from_icon_name('hubic-gtk-alert')
self.tray.set_tooltip_text(HUBIC_POSSIBLE_STATUS[self.hubic_state])
self.tray.connect('popup-menu', self.on_right_click)
self.tray.connect('activate', self.on_left_click)
self.last_messages = []
self.show_messages = False
self.must_autostart = os.path.isfile(os.path.join(xdg_config_home, 'autostart', 'hubic.desktop'))
self.hubic_dir = ''
self.session_bus = None
if self.config.has_section('general'):
self.show_messages = get_bool_conf_option(self.config, 'general', 'notify')
self.show_all_messages = get_bool_conf_option(self.config, 'general', 'show_all_messages')
if self.config.has_option('general', 'hubic_dir'):
self.hubic_dir = os.path.expanduser(self.config.get('general', 'hubic_dir'))
self.ff_helper = FileFolderHelper(self.config, self.hubic_dir)
self.encfs_menu = EncfsMenu(self.config, self.hubic_dir, self.on_state_change)
DBusGMainLoop(set_as_default=True)
self.check_for_hubic_main_process()
def check_for_hubic_main_process(self):
if subprocess.call(['pgrep', '-u' + pwd.getpwuid(os.getuid())[0], '-f', 'mono.*hubiC']) == 0:
if self.session_bus == None:
self.initialize_dbus_infos()
self.on_state_change(self.hubic_state, self.hubic_state)
else:
self.cleanup_dbus_infos(None)
self.on_state_change(self.hubic_state, 'Killed')
def cleanup_dbus_infos(self, dbus_connection):
if self.session_bus != None and (dbus_connection == self.session_bus or dbus_connection == None):
self.session_bus.remove_signal_receiver(self.on_file_change, dbus_interface = 'com.hubic.account', signal_name = 'ItemChanged')
self.session_bus.remove_signal_receiver(self.on_state_change, dbus_interface = 'com.hubic.general', signal_name = 'StateChanged')
self.session_bus.remove_signal_receiver(self.on_message, dbus_interface = 'com.hubic.general', signal_name = 'Messages')
self.session_bus = None
def initialize_dbus_infos(self):
self.on_state_change(self.hubic_state, 'Starting')
dbus.SystemBus().add_signal_receiver(self.on_networking_change, dbus_interface = 'org.freedesktop.NetworkManager', signal_name = 'StateChanged')
self.session_bus = dbus.SessionBus()
self.session_bus.add_signal_receiver(self.on_file_change, dbus_interface = 'com.hubic.account', signal_name = 'ItemChanged')
self.session_bus.add_signal_receiver(self.on_state_change, dbus_interface = 'com.hubic.general', signal_name = 'StateChanged')
self.session_bus.add_signal_receiver(self.on_message, dbus_interface = 'com.hubic.general', signal_name = 'Messages')
self.session_bus.call_on_disconnection(self.cleanup_dbus_infos)
self.hubic_account_obj = self.session_bus.get_object('com.hubiC', '/com/hubic/Account')
self.hubic_account_iface = dbus.Interface(self.hubic_account_obj, 'com.hubic.account')
self.hubic_general_obj = self.session_bus.get_object('com.hubiC', '/com/hubic/General')
self.hubic_general_iface = dbus.Interface(self.hubic_general_obj, 'com.hubic.general')
self.ff_helper.set_hubic_dir(self.get_hubic_dir())
self.encfs_menu.set_hubic_dir(self.get_hubic_dir())
self.on_state_change('Starting', self.hubic_general_obj.Get('com.hubic.general', 'CurrentState'))
def get_hubic_dir(self):
if self.hubic_dir == '':
self.hubic_dir = self.hubic_account_obj.Get('com.hubic.account', 'SynchronizedDir')
if not self.config.has_section('general'):
self.config.add_section('general')
self.config.set('general', 'hubic_dir', self.hubic_dir)
with open(os.path.join(xdg_config_home, 'hubiC', 'status_icon.conf'), 'wb') as configfile:
self.config.write(configfile)
configfile.close()
return self.hubic_dir
def on_networking_change(self, state):
if self.hubic_state != 'Killed' and self.hubic_state != 'Starting':
if state == 70:
# Connectivity is up and not only local
self.last_messages.append((
'',
_('{0} Resume Hubic as network is up').format(
time.strftime('[%d/%m/%Y %H:%M]')
)
))
self.hubic_account_iface.SetPauseState(False)
elif self.hubic_state != 'Paused':
self.last_messages.append((
'',
_('{0} Pause Hubic as network connectivity seems to be down').format(
time.strftime('[%d/%m/%Y %H:%M]')
)
))
self.hubic_account_iface.SetPauseState(True)
def on_state_change(self, old_state, new_state):
if new_state == 'NotConnected' and old_state == 'Connecting':
self.hubic_process(None, 'stop')
return
if new_state != 'Mounted' and new_state != 'NotMounted':
self.hubic_state = new_state
tray_tooltip = HUBIC_POSSIBLE_STATUS[self.hubic_state]
tray_icon = 'hubic-gtk-alert'
if self.hubic_state == 'Busy':
tray_icon = 'hubic-gtk-busy'
current_works = self.hubic_account_obj.Get('com.hubic.account', 'RunningOperations')
if len(current_works) > 0:
tray_tooltip = '{0} – {1}'.format(
tray_tooltip,
self.ff_helper.format_task(current_works[0]))
elif self.hubic_state == 'Connecting':
tray_icon = 'hubic-gtk-busy'
elif self.hubic_state == 'Idle':
tray_icon = 'hubic-gtk'
if self.encfs_menu.something_is_mounted():
tray_icon += '-encfs'
self.tray.set_from_icon_name(tray_icon)
self.tray.set_tooltip_text(tray_tooltip)
def on_file_change(self, file_path):
[status, isPublished, canBePublished] = self.hubic_account_iface.GetItemStatus(file_path)
message = self.ff_helper.crunch_path(file_path) + ': ' + HUBIC_POSSIBLE_STATUS[status]
self.last_messages.append((file_path, time.strftime('[%d/%m/%Y %H:%M]') + ' ' + message))
if self.show_messages:
nota = Notify.Notification.new('HubicGTK', message)
nota.show()
def on_message(self, urgency, message, file_path):
if file_path != '':
[status, isPublished, canBePublished] = self.hubic_account_iface.GetItemStatus(file_path)
info_message = message + "\n" + self.ff_helper.crunch_path(file_path) + ': ' + HUBIC_POSSIBLE_STATUS[status]
else:
info_message = message
self.last_messages.append((file_path, time.strftime('[%d/%m/%Y %H:%M]') + ' ' + info_message))
if self.show_messages or urgency == 2 or urgency == 3:
nota = Notify.Notification.new('HubicGTK', message)
if urgency == 1 or urgency == 2:
nota.set_urgency(Notify.Urgency.NORMAL)
elif urgency == 3:
nota.set_urgency(Notify.Urgency.CRITICAL)
else:
nota.set_urgency(Notify.Urgency.LOW)
nota.show()
def on_right_click(self, icon, event_button, event_time):
self.make_menu(event_button, event_time)
def on_left_click(self, event):
if self.hubic_dir != False:
self.ff_helper.open_folder(self.get_hubic_dir())
def on_report_a_bug(self, widget):
subprocess.Popen(shlex.split('xdg-open https://projects.depar.is/hubic-gtk/ticket'))
def on_backup_management(self, widget):
subprocess.Popen(['./backup_mngt.sh'])
def make_menu(self, event_button, event_time):
menu = Gtk.Menu()
self.check_for_hubic_main_process()
current_state_info = Gtk.MenuItem.new_with_label(HUBIC_POSSIBLE_STATUS[self.hubic_state])
current_state_info.set_sensitive(False)
menu.append(current_state_info)
if self.hubic_state == 'Busy' or self.hubic_state == 'Idle':
total = self.hubic_account_obj.Get('com.hubic.account', 'TotalBytes')
used = self.hubic_account_obj.Get('com.hubic.account', 'UsedBytes')
used_percent = round((used * 100.0) / total, 1)
used_size_info = self.ff_helper.file_size(used)
total_size_info = self.ff_helper.file_size(total)
current_state_info = Gtk.MenuItem.new_with_label(
_('{0} {1} ({2}%) used on {3} {4} total').format(
used_size_info[0],
used_size_info[1],
used_percent,
total_size_info[0],
total_size_info[1]
)
)
current_state_info.set_sensitive(False)
menu.append(current_state_info)
if self.hubic_state == 'Busy':
downspeed = self.ff_helper.file_size(self.hubic_general_obj.Get('com.hubic.general', 'CurrentDownloadSpeed'))
upspeed = self.ff_helper.file_size(self.hubic_general_obj.Get('com.hubic.general', 'CurrentUploadSpeed'))
current_state_info = Gtk.MenuItem.new_with_label(
_('Up: {0} {1}/s – Down: {2} {3}/s').format(
upspeed[0],
upspeed[1],
downspeed[0],
downspeed[1]
)
)
current_state_info.set_sensitive(False)
menu.append(current_state_info)
current_works = self.hubic_account_obj.Get('com.hubic.account', 'RunningOperations')
if len(current_works) > 0:
workmenu = Gtk.Menu()
for work_tuple in current_works:
mi_button = Gtk.MenuItem.new_with_label(self.ff_helper.format_task(work_tuple))
workmenu.append(mi_button)
queue_status = self.hubic_account_obj.Get('com.hubic.account', 'QueueStatus')
total_items = queue_status[0] + queue_status[1] + queue_status[2]
up_infos = self.ff_helper.file_size(queue_status[3])
down_infos = self.ff_helper.file_size(queue_status[4])
mi_button = Gtk.MenuItem.new_with_label(
_('{0} waiting ({1} {2} up – {3} {4} down)').format(
total_items,
up_infos[0],
up_infos[1],
down_infos[0],
down_infos[1]
)
)
workmenu.append(mi_button)
messages_info_button = Gtk.MenuItem.new_with_label(_('Current transfers'))
messages_info_button.set_submenu(workmenu)
menu.append(messages_info_button)
if self.hubic_state == 'Killed':
start_button = Gtk.ImageMenuItem.new_with_label(_('Start Hubic'))
start_button_icon = Gtk.Image.new_from_stock(Gtk.STOCK_MEDIA_PLAY, Gtk.IconSize.MENU)
start_button.set_image(start_button_icon)
menu.append(start_button)
start_button.connect('activate', self.hubic_process, 'start')
else:
if self.hubic_state == 'Paused':
pause_button = Gtk.ImageMenuItem.new_with_label(_('Resume synchronization'))
pause_button_icon = Gtk.Image.new_from_stock(Gtk.STOCK_MEDIA_PLAY, Gtk.IconSize.MENU)
pause_button.connect('activate', self.hubic_process, 'resume')
else:
pause_button = Gtk.ImageMenuItem.new_with_label(_('Suspend synchronization'))
pause_button_icon = Gtk.Image.new_from_stock(Gtk.STOCK_MEDIA_PAUSE, Gtk.IconSize.MENU)
pause_button.connect('activate', self.hubic_process, 'pause')
pause_button.set_image(pause_button_icon)
menu.append(pause_button)
stop_button = Gtk.ImageMenuItem.new_with_label(_('Stop Hubic'))
stop_button_icon = Gtk.Image.new_from_stock(Gtk.STOCK_STOP, Gtk.IconSize.MENU)
stop_button.set_image(stop_button_icon)
menu.append(stop_button)
stop_button.connect('activate', self.hubic_process, 'stop')
sep = Gtk.SeparatorMenuItem()
menu.append(sep)
messages_info = Gtk.Menu()
mi_button = Gtk.CheckMenuItem(_('Show notification messages'))
mi_button.set_active(self.show_messages)
messages_info.append(mi_button)
mi_button.connect('toggled', self.toggle_show_messages)
sep = Gtk.SeparatorMenuItem()
messages_info.append(sep)
messages_to_show = self.last_messages
if not self.show_all_messages:
messages_to_show = self.last_messages[-10:]
for file_path, mi in messages_to_show:
mi_button = Gtk.MenuItem.new_with_label(mi)
messages_info.append(mi_button)
if file_path != '':
mi_button.connect('activate', self.open_parent_dir, file_path)
messages_info_button = Gtk.MenuItem.new_with_label(_('Last messages'))
messages_info_button.set_submenu(messages_info)
menu.append(messages_info_button)
sep = Gtk.SeparatorMenuItem()
menu.append(sep)
# Backup management only when connected?
#backupmgt = Gtk.MenuItem.new_with_label(_('Backup management'))
#menu.append(backupmgt)
#if self.hubic_state == 'Killed':
# backupmgt.set_sensitive(False)
#else:
# backupmgt.connect('activate', self.on_backup_management)
# Encfs submenu
self.encfs_menu.build_menu(menu)
sep = Gtk.SeparatorMenuItem()
menu.append(sep)
# Launch at session start
mi_button = Gtk.CheckMenuItem(_('Automatically start'))
mi_button.set_active(self.must_autostart)
menu.append(mi_button)
mi_button.connect('toggled', self.toggle_must_autostart)
# report a bug
reportbug = Gtk.MenuItem.new_with_label(_('Report a bug'))
menu.append(reportbug)
reportbug.connect('activate', self.on_report_a_bug)
# show about dialog
about = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_ABOUT)
menu.append(about)
about.connect('activate', self.show_about_dialog)
# add quit item
quit_button = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_QUIT)
menu.append(quit_button)
quit_button.connect('activate', self.kthxbye)
menu.show_all()
menu.popup(None, None, Gtk.StatusIcon.position_menu,
self.tray, event_button, event_time)
def toggle_show_messages(self, widget):
self.show_messages = widget.get_active()
if not self.config.has_section('general'):
self.config.add_section('general')
self.config.set('general', 'notify', self.show_messages)
with open(os.path.join(xdg_config_home, 'hubiC', 'status_icon.conf'), 'wb') as configfile:
self.config.write(configfile)
configfile.close()
# TODO check the validity of this desktop file
def toggle_must_autostart(self, widget):
self.must_autostart = widget.get_active()
if not os.path.isdir(os.path.join(xdg_config_home, 'autostart')):
self.must_autostart = False
return False
file_yet_exists = os.path.isfile(os.path.join(xdg_config_home, 'autostart', 'hubic.desktop'))
if not file_yet_exists and self.must_autostart:
with open(os.path.join(xdg_config_home, 'autostart', 'hubic.desktop'), 'w') as asfile:
asfile.write("""[Desktop Entry]
Name=HubicGTK
Comment={}
Exec=hubic-gtk
Icon=/usr/share/icons/hicolor/128x128/hubic.png
Terminal=false
Type=Application
X-MATE-Autostart-enabled=true
X-GNOME-Autostart-Delay=20
StartupNotify=false
""".format(_('hubiC is an online storage platform provided by OVH. This is a status icon for it.')))
asfile.close()
elif file_yet_exists and not self.must_autostart:
os.remove(os.path.join(xdg_config_home, 'autostart', 'hubic.desktop'))
def open_parent_dir(self, widget, file_path):
dir_open = self.get_hubic_dir()
if os.path.isdir(file_path):
dir_open = file_path
elif os.path.isfile(file_path):
dir_open = os.path.dirname(file_path)
else:
file_path = os.path.dirname(file_path)
if os.path.isdir(file_path):
dir_open = file_path
self.ff_helper.open_folder(dir_open)
def hubic_process(self, widget, action):
if self.hubic_state == 'Killed':
if action == 'start':
subprocess.call(['hubic', 'start'])
self.initialize_dbus_infos()
else:
print('Dafuq did I just read?')
else:
if action == 'stop':
self.hubic_general_iface.Stop()
self.on_state_change(self.hubic_state, 'Killed')
elif action == 'pause':
self.hubic_account_iface.SetPauseState(True)
elif action == 'resume':
self.hubic_account_iface.SetPauseState(False)
else:
print('Dafuq did I just read?')
def show_about_dialog(self, widget):
about_dialog = Gtk.AboutDialog()
about_dialog.set_destroy_with_parent(True)
about_dialog.set_icon_name('HubicGTK')
about_dialog.set_name('HubicGTK')
about_dialog.set_website('https://projects.depar.is/hubic-gtk')
about_dialog.set_comments(_('A status icon for hubiC on Gnu/Linux, providing an easy way to manage your encfs synchronised folders too.'))
about_dialog.set_logo(GdkPixbuf.Pixbuf.new_from_file_at_scale('/usr/share/icons/hicolor/scalable/apps/hubic-gtk.svg',
128, 128, True))
about_dialog.set_version(HUBIC_STATUS_VERSION)
hubic_b_version = subprocess.check_output('hubic help | head -n2', shell=True)
mono_b_version = subprocess.check_output('mono -V | head -n2', shell=True)
hubic_version = "\n\n{0}{1}".format(hubic_b_version.decode(), mono_b_version.decode())
about_dialog.set_copyright(_('HubicGTK is released under the WTF public license\nStatus icons use famfamfam silk icons, released under CC By 2.5 license') + hubic_version)
about_dialog.set_authors(['Étienne Deparis <[email protected]>'])
about_dialog.run()
about_dialog.destroy()
def kthxbye(self, widget):
self.cleanup_dbus_infos(None)
Gtk.main_quit()
if __name__ == '__main__':
# Install signal handlers
GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGTERM,
Gtk.main_quit, None)
GLib.unix_signal_add(GLib.PRIORITY_DEFAULT, signal.SIGINT,
Gtk.main_quit, None)
SystrayIconApp()
Gtk.main()