/usr/lib/python3/dist-packages/monajat/applet.py is in monajat-applet 4.1-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 | # -*- coding: utf-8 -*-
# -*- Mode: Python; py-indent-offset: 4 -*-
import gi
gi.require_version('Notify', '0.7')
gi.require_version('Gtk', '3.0')
gi.require_version('Notify', '0.7')
gi.require_version('Gst', '1.0')
from gi.repository import Gtk, Gdk, Notify, Gst, GObject
import os, os.path
from monajat import itl
from monajat.monajat import Monajat
from monajat.utils import setup_dbus
import locale, gettext
import re
import html
import math
import json
import time
from threading import Timer, Thread, Event
def MainTimer(sec):
def decorator(function):
def wrapper(*args, **kwargs):
stopped = Event()
def loop():
while not stopped.wait(sec):
function(*args, **kwargs)
t = Thread(target=loop)
t.daemon = True
t.start()
return stopped
return wrapper
return decorator
# in gnome3 ['actions', 'action-icons', 'body', 'body-markup', 'icon-static', 'persistence']
# in gnome2 ['actions', 'body', 'body-hyperlinks', 'body-markup', 'icon-static', 'sound']
# "resident"
class SoundPlayer(object):
def __init__(self, fn = "", change_play_status = None):
""" SoundPlayer Using gst """
self.fn = fn
self.change_play_status = change_play_status
Gst.init_check(None)
self.gst_player = Gst.ElementFactory.make("playbin", "Ojuba-SoundPlayer")
self.gst_player.set_property("uri", "file://" + fn)
bus = self.gst_player.get_bus()
bus.add_signal_watch()
#bus.connect("message", self.on_message)
bus.connect('message::eos', self.on_message)
bus.connect('message::error', self.on_message)
def play(self):
fn = self.fn
if fn and os.path.isfile(fn):
self.gst_player.set_state(Gst.State.PLAYING)
def stop(self):
self.gst_player.set_state(Gst.State.NULL)
def set_filename(self,fn):
if not fn or not os.path.isfile(fn):
return
self.fn = fn
self.gst_player.set_property("uri", "file://" + fn)
def on_message(self, bus, message):
if message:
print (message)
self.gst_player.set_state(Gst.State.NULL)
normalize_tb = {
65: 97, 66: 98, 67: 99, 68: 100, 69: 101, 70: 102, 71: 103, 72: 104, 73: 105, 74: 106, 75: 107, 76: 108, 77: 109, 78: 110, 79: 111, 80: 112, 81: 113, 82: 114, 83: 115, 84: 116, 85: 117, 86: 118, 87: 119, 88: 120, 89: 121, 90: 122,
1600: None, 1569: 1575, 1570: 1575, 1571: 1575, 1572: 1575, 1573: 1575, 1574: 1575,
1577: 1607, # teh marboota -> haa
1611: None, 1612: None, 1613: None, 1614: None, 1615: None, 1616: None, 1617: None, 1618: None, 1609: 1575}
def to_uincode(Str):
try:
Str = str(Str)
except UnicodeEncodeError:
pass
if type(Str) == str:
return Str.translate(normalize_tb)
else:
return Str.decode('utf-8').translate(normalize_tb)
class ConfigDlg(Gtk.Dialog):
def __init__(self, applet):
Gtk.Dialog.__init__(self)
self.applet = applet
self.m = applet.m
self.cities_ls = self.get_cities()
#self.set_size_request(300,400)
self.set_resizable(False) # FIXME: reconsider this
self.connect('delete-event', lambda w,*a: w.hide() or True)
self.connect('response', lambda w,*a: w.hide() or True)
self.set_title(('Monajat Configuration'))
self.add_button(('Cancel'), Gtk.ResponseType.CANCEL)
self.add_button(('Save'), Gtk.ResponseType.OK)
tabs = Gtk.Notebook()
tabs.set_size_request(-1,350)
self.get_content_area().add(tabs)
vb = Gtk.VBox(False, 2)
tabs.append_page(vb, Gtk.Label(('Generic')))
self.auto_start = b = Gtk.CheckButton(("Auto start"))
self.auto_start.set_active(not os.path.exists(self.applet.skip_auto_fn))
vb.pack_start(b, False, False, 2)
self.show_merits = b = Gtk.CheckButton(("Show merits"))
self.show_merits.set_active(self.applet.conf['show_merits'])
vb.pack_start(b, False, False, 2)
self.daylight_savings_time = b = Gtk.CheckButton(("daylight_savings_time"))
self.daylight_savings_time.set_active(self.applet.conf['daylight_savings_time'])
vb.pack_start(b, False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('method:')), False, False, 2)
self.pt_method = b = Gtk.ComboBoxText.new()
hb.pack_end(b, False, False, 2)
b.append_text("none. Set to default")
b.append_text("Egyptian General Authority of Survey")
b.append_text("University of Islamic Sciences, Karachi (Shaf'i)")
b.append_text("University of Islamic Sciences, Karachi (Hanafi)")
b.append_text("Islamic Society of North America")
b.append_text("Muslim World League (MWL)")
b.append_text("Umm Al-Qurra, Saudi Arabia")
b.append_text("Fixed Ishaa Interval (always 90)")
b.append_text("Egyptian General Authority of Survey (Egypt)")
b.set_active(self.applet.conf['pt_method'])
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Language:')), False, False, 2)
self.lang = b = Gtk.ComboBoxText.new()
hb.pack_end(b, False, False, 2)
selected = 0
for i,j in enumerate(self.applet.m.langs):
b.append_text(j)
if self.m.lang == j:
selected=i
b.set_active(selected)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Time:')), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, 0, 90, 5, 5)
self.timeout = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
vb = Gtk.VBox(False, 2)
tabs.append_page(vb, Gtk.Label(('Location')))
hb = Gtk.HBox()
hb.pack_start(Gtk.Label(('Current city:')), False, False, 2)
vb.pack_start(hb, False, False, 6)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
# read cuurent city full name
c = self.get_city('id', self.applet.conf['city_id'])
if c:
c = c[0]
self.user_city = c['name']
else:
c = {}
c['country'] = ('Please, Secify your city')
c['state'] = ''
c['name'] = ''
c['locale_name'] = ''
self.user_city = 'Makka'
# set locale_name='' instead of None
c['locale_name'] = c['locale_name'] or ''
cl = '%(country)s - %(state)s - %(name)s %(locale_name)s' % c
self.cur_city_l = l = Gtk.Entry()
l.set_editable(False)
l.set_text(cl)
hb.pack_start(l, True, True, 2)
hb = Gtk.HBox()
hb.pack_start(Gtk.Label(('Change city:')), False, False, 2)
vb.pack_start(hb, False, False, 8)
self.Search_e = e = Gtk.Entry()
e.connect('activate', self._city_search_cb)
hb.pack_start(e, True, True, 2)
s = Gtk.TreeStore(str, bool, int, str) # label, is_city, id, normalized label
self.cities_tree = tree = Gtk.TreeView(s)
col = Gtk.TreeViewColumn('Location', Gtk.CellRendererText(), text=0)
col.set_sizing(Gtk.TreeViewColumnSizing.AUTOSIZE)
tree.insert_column(col, -1)
tree.set_enable_search(True)
tree.set_search_column(3)
tree.set_headers_visible(False)
tree.set_tooltip_column(0)
scroll = Gtk.ScrolledWindow()
scroll.set_policy(Gtk.PolicyType.AUTOMATIC, Gtk.PolicyType.ALWAYS)
scroll.add(tree)
vb.pack_start(scroll, True, True, 2)
self.sound_player = SoundPlayer(self.applet.conf['athan_media_file'],
self.change_play_status)
vb = Gtk.VBox(False, 2)
tabs.append_page(vb, Gtk.Label(('Edit_pt')))
self.Edit_pt = b = Gtk.CheckButton(("Edit_pt"))
self.Edit_pt.set_active(self.applet.conf['Edit_pt'])
vb.pack_start(b, False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Fajr')), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, -60, 60, 1, 5)
self.Fajr_min = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['Fajr_minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Sunrise')), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, -60, 60, 1, 5)
self.Shrooq_min = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['Shrooq_minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Dhuhr')), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, -60, 60, 1, 5)
self.Zuhr_min = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['Zuhr_minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Asr')), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, -60, 60, 1, 5)
self.Asr_min = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['Asr_minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(('Maghrib')), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, -60, 60, 1, 5)
self.Maghrib_min = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['Maghrib_minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
hb.pack_start(Gtk.Label(("Isha'a")), False, False, 2)
hb.pack_start(Gtk.HBox(), True, True, 2)
adj = Gtk.Adjustment(5, -60, 60, 1, 5)
self.Ishaa_min = b = Gtk.SpinButton()
b.set_adjustment(adj)
b.set_value(self.applet.conf['Ishaa_minutes'])
hb.pack_start(b, False, False, 2)
hb.pack_start(Gtk.Label(('minutes')), False, False, 2)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 2)
self.clear = cb = Gtk.Button(('Clear'))
cb.connect('clicked', self.clear_pt_changes)
hb.pack_end(cb, False, False, 2)
vb = Gtk.VBox(False, 2)
tabs.append_page(vb, Gtk.Label(('Notification')))
hb = Gtk.HBox()
vb.pack_start(hb, False, True, 3)
hb.pack_start(Gtk.Label(('Sound:')), False, True, 2)
self.sound_file = b = Gtk.FileChooserButton(('Choose Athan media file'))
if os.path.isfile(self.applet.conf['athan_media_file']):
self.sound_file.set_filename(self.applet.conf['athan_media_file'])
ff = Gtk.FileFilter()
ff.set_name(('Sound Files'))
ff.add_pattern('*.ogg')
ff.add_pattern('*.mp3')
b.add_filter(ff)
ff = Gtk.FileFilter()
ff.set_name(('All files'))
ff.add_pattern('*')
b.add_filter(ff)
self.play_b = pb = Gtk.Button(('Play'))
pb.connect('clicked', self.play_cb)
hb.pack_end(pb, False, False, 2)
hb.pack_end(b, True, True, 5)
hb = Gtk.HBox()
vb.pack_start(hb, False, False, 3)
self.notify_before_b = b = Gtk.CheckButton(("Notify before"))
adj = Gtk.Adjustment(5, 5, 20, 5, 5)
self.notify_before_t = t = Gtk.SpinButton()
t.set_adjustment(adj)
b.set_active(self.applet.conf['notify_before_min'] != 0)
t.set_value(self.applet.conf['notify_before_min'])
hb.pack_start(b,True,True,2)
hb.pack_start(t,False,False,2)
hb.pack_start(Gtk.Label(('minutes')),False,False,2)
self._city_search_cb(self.Search_e, self.user_city)
#self._fill_cities()
def clear_pt_changes(self, b):
self.Fajr_min.set_value(0)
self.Shrooq_min.set_value(0)
self.Zuhr_min.set_value(0)
self.Asr_min.set_value(0)
self.Maghrib_min.set_value(0)
self.Ishaa_min.set_value(0)
def change_play_status(self, status = None):
if status == None:
status = self.sound_player.gst_player.get_state()
if status == Gst.State.PLAYING:
self.sound_file.set_sensitive(False)
self.play_b.set_property('label', ('Stop'))
else:
self.sound_file.set_sensitive(True)
self.play_b.set_property('label', ('Play'))
def play_cb(self, b):
fn = self.sound_file.get_filename()
if not fn:
fn = ''
if b.get_label() == ('Play'):
if not os.path.isfile(fn):
return
self.change_play_status(Gst.State.PLAYING)
self.sound_player.set_filename(fn)
self.sound_player.play()
else:
self.change_play_status(Gst.State.NULL)
self.sound_player.stop()
def get_cities(self):
rows = self.m.cities_c.execute('SELECT * FROM cities')
rows = map(lambda a: dict(a), rows.fetchall())
return rows
def get_city(self, f='id', v=''):
'''
filter self.cities_ls
'''
return filter(lambda a: a[f] == v, self.cities_ls)
def _city_search_cb(self, e, v = None):
e.modify_fg(Gtk.StateType.NORMAL, None)
if v:
txt = v
else:
txt = e.get_text().strip().lower()
txt = to_uincode(txt)
if self.user_city == txt:
self._search_cb(txt)
return
else:
self.user_city = txt
rows = filter(lambda a: txt in str(a['name']).lower() or \
txt in to_uincode(a['locale_name']) or \
txt in str(a['state']).lower() or \
txt in str(a['country']).lower(), self.cities_ls)
country, country_i = None, None
state, state_i = None, None
city_path = None
s = self.cities_tree.get_model()
s.clear()
for r in rows:
#r = dict(R)
if country != r['country']:
country_i = s.append(None,
(r['country'],
False,
0,
r['country'].lower().translate(normalize_tb)))
if state != r['state']:
state_i = s.append(country_i,(r['state'],
False,
0,
r['state'].lower().translate(normalize_tb)))
country = r['country']
state = r['state']
if r['locale_name']:
city = u'%s - %s' % (r['name'], r['locale_name'])
else:
city = r['name']
city_i = s.append(state_i,(city,
True,
r['id'],
city.lower().translate(normalize_tb)))
self._search_cb(txt)
def _search_cb(self, txt):
# FIXME: if same as last successful search text don't update first_match_path
# FIXME: and if self.city_found same as first_match_path highlight in red
# we can use self.search_last_path to fix search
if type(txt) == bytes:
txt = txt.encode('utf-8')
e = self.Search_e
e.modify_fg(Gtk.StateType.NORMAL, None)
tree = self.cities_tree
store, p = tree.get_selection().get_selected_rows()
if p:
current = p[0]
else:
current = None
limit = None
def tree_walk_cb(model, path, i, *a):
if current and path <= current:
return False
if limit and path >= limit:
return True
f = txt in store.get_value(i, 3)
if f:
tree.expand_to_path(path)
tree.scroll_to_cell(path)
tree.get_selection().select_iter(i)
self.city_found = path
return True
self.city_found = None
store.foreach(tree_walk_cb, tree)
if not self.city_found:
limit = current
current = None
store.foreach(tree_walk_cb, tree)
if not self.city_found:
e.modify_fg(Gtk.StateType.NORMAL, Gdk.color_parse("#FF0000"))
def _fill_cities(self):
# FIXME: rerwite one fuction for fill cities and search, to reduce time
tree = self.cities_tree
s = tree.get_model()
rows = self.m.cities_c.execute('SELECT * FROM cities')
country, country_i = None, None
state, state_i = None, None
city_path = None
for R in rows:
r = dict(R)
if country != r['country']:
country_i = s.append(None,
(r['country'],
False,
0,
r['country'].lower().translate(normalize_tb)))
if state != r['state']:
state_i = s.append(country_i,(r['state'],
False,
0,
r['state'].lower().translate(normalize_tb)))
country = r['country']
state = r['state']
if r['locale_name']:
city=u'%s - %s' % (r['name'], r['locale_name'])
else:
city=r['name']
city_i = s.append(state_i,(city,
True,
r['id'],
city.lower().translate(normalize_tb)))
if self.applet.conf.get('city_id',None) == r['id']:
city_path = s.get_path(city_i)
if city_path:
tree.expand_to_path(city_path)
tree.get_selection().select_path(city_path)
tree.scroll_to_cell(city_path)
def run(self, *a, **kw):
self.auto_start.set_active(not os.path.exists(self.applet.skip_auto_fn))
return Gtk.Dialog.run(self, *a, **kw)
class applet(object):
locale_re = re.compile('^[a-z]+_[A-Z]+$', re.I)
skip_auto_fn = os.path.expanduser('~/.monajat-applet-skip-auto')
def _init_locale(self, lang):
try:
l = locale.setlocale(locale.LC_MESSAGES, (lang, 'UTF-8'))
except:
pass
else:
if l:
os.environ['LC_MESSAGES'] = l
return
for l in locale.locale_alias.keys():
if not l.startswith(lang+'_') or not self.locale_re.match(l):
continue
l, c = l.split('_',1)
l = l + "_" + c.upper() + ".UTF-8"
try:
locale.setlocale(locale.LC_MESSAGES, l)
except locale.Error:
pass
else:
os.environ['LC_MESSAGES'] = l
return
def __init__(self):
self.conf_dlg = None
self.chngbody = time.time()
self.minutes_counter = 0
self.m = Monajat() # you may pass width like 20 chars
self.sound_player = SoundPlayer()
self.load_conf()
self.prayer_items = []
kw = self.conf_to_prayer_args()
self.prayer = itl.PrayerTimes(**kw)
self.prayer.method.extreme=int(self.conf['pt_method'])
self.prayer.method.offset=self.conf['Edit_pt']
if self.conf['Edit_pt'] == 1:
self.prayer.method.offList[0]=self.conf['Fajr_minutes']
self.prayer.method.offList[1]=self.conf['Shrooq_minutes']
self.prayer.method.offList[2]=self.conf['Zuhr_minutes']
self.prayer.method.offList[3]=self.conf['Asr_minutes']
self.prayer.method.offList[4]=self.conf['Maghrib_minutes']
self.prayer.method.offList[5]=self.conf['Ishaa_minutes']
self._init_locale(self.m.lang)
ld = os.path.join(self.m.get_prefix(), '..', 'locale')
gettext.install('monajat', ld)
self.ptnames = [("Fajr"),("Sunrise"),("Dhuhr"),("Asr"),("Maghrib"),("Isha'a")]
self.clip1 = Gtk.Clipboard.get(Gdk.SELECTION_CLIPBOARD)
self.clip2 = Gtk.Clipboard.get(Gdk.SELECTION_PRIMARY)
self.init_menu()
self.statusicon = Gtk.StatusIcon ()
self.statusicon.connect('popup-menu',self.popup_cb)
self.statusicon.connect('activate',self.next_cb)
self.statusicon.set_title(("Monajat"))
self.statusicon.set_from_file(os.path.join(self.m.get_prefix(),'monajat.svg'))
Notify.init(("Monajat"))
self.init_notify_cb()
print (self.notifycaps)
self.notif_last_athan = -1
self.next_athan_delta = -1
self.next_athan_i = -1
self.last_athan = -1
self.last_time = 0
self.first_notif_done = False
self.start_time = time.time()
#GObject.timeout_add(1, self.timer_cb)
self.timer_cb()
def init_notify_cb(self):
self.notifycaps = Notify.get_server_caps ()
self.notify = Notify.Notification()
self.notify.set_property('icon-name', os.path.join(self.m.get_prefix(),'monajat.svg'))
self.notify.set_property('summary', ("Monajat") )
if 'actions' in self.notifycaps:
self.notify.add_action("previous", ("Back"), self.notify_cb, None)
self.notify.add_action("next", ("Forward"), self.notify_cb, None)
self.notify.add_action("copy", ("copy"), self.notify_cb, None)
def show_notify_cb(self, body, *args):
self.notify.set_property('body', body )
self.notify.show()
def config_cb(self, *a):
if self.conf_dlg == None:
self.conf_dlg = ConfigDlg(self)
self.conf_dlg.show_all()
r = self.conf_dlg.run()
if r == Gtk.ResponseType.OK:
self.save_auto_start()
self.save_conf()
def default_conf(self):
self.conf = {}
self.conf['show_merits'] = '1'
self.conf['daylight_savings_time']='1'
self.conf['pt_method']='6'
self.conf['Edit_pt']='0'
self.conf['Fajr_minutes']='0'
self.conf['Shrooq_minutes']='0'
self.conf['Zuhr_minutes']='0'
self.conf['Asr_minutes']='0'
self.conf['Maghrib_minutes']='0'
self.conf['Ishaa_minutes']='0'
self.conf['lang'] = self.m.lang
self.conf['minutes'] = '10'
self.conf['athan_media_file'] = os.path.join(self.m.prefix, 'athan.ogg')
print (self.conf['athan_media_file'])
self.conf['notify_before_min'] = '10'
def conf_to_prayer_args(self):
kw = {}
if 'city_id' not in self.conf: return kw
c = self.m.cities_c
try:
c_id = int(self.conf['city_id'])
except ValueError:
return kw
except TypeError:
return kw
r = c.execute('SELECT * FROM cities AS c LEFT JOIN dst AS d ON d.i=dst_id WHERE c.id=?', (c_id,)).fetchone()
# set defaults to Makkah (14244)
if not r:
r = c.execute('SELECT * FROM cities AS c LEFT JOIN dst AS d ON d.i=dst_id WHERE c.id=?',
(14244,)).fetchone()
kw = dict(r)
if "alt" not in kw or not kw["alt"]:
kw["alt"] = 0.0
kw["tz"] = kw["utc"]
# NOTE: get DST from machine local setting
#kw["dst"] = time.localtime().tm_isdst
kw["dst"] = self.conf['daylight_savings_time']
# FIXME: dst should have the following 3 options
# a. auto from system, b. auto from algorithm, c. specified to 0/1 by user
#dst=kw["dst_id"]
#if not dst: kw["dst"]=0
#else:
# # FIXME: add DST logic here
# kw["dst"]=1
print (kw)
#lat=21.43, lon=39.77, tz=3.0, dst=0, alt=0, pressure=1010, temp=10
return kw
def parse_conf(self, s):
self.default_conf()
l1 = list(map(lambda k: k.split('=',1),
filter(lambda j: j,
map(lambda i: i.strip(),s.splitlines())) ))
l2 = list(map(lambda a: (a[0].strip(),a[1].strip()),filter(lambda j: len(j)==2,l1)))
r = dict(l2)
self.conf.update(dict(l2))
return len(l1) == len(l2)
def load_conf(self):
s = ''
fn = os.path.expanduser('~/.monajat-applet.rc')
if os.path.exists(fn):
try:
s = open(fn,'rt').read()
except OSError:
pass
self.parse_conf(s)
if 'city_id' in self.conf:
# make sure city_id is set using the same db
if 'cities_db_ver' not in self.conf \
or self.conf['cities_db_ver'] != self.m.cities_db_ver:
del self.conf['city_id']
# make sure it's integer
try:
c_id = int(self.conf['city_id'])
except ValueError:
self.conf['city_id'] = 14244
except TypeError:
self.conf['city_id'] = 14244
else:
self.conf['city_id'] = c_id
else:
# set default to makkah (14244)
self.conf['city_id'] = 14244
# set athan media file exists
self.sound_player.set_filename(self.conf['athan_media_file'])
# fix types
try:
self.conf['minutes'] = math.ceil(float(self.conf['minutes'])/5.0)*5
except ValueError:
self.conf['minutes'] = 0
try:
self.conf['show_merits'] = int(self.conf['show_merits'])
except ValueError:
self.conf['show_merits'] = 1
try:
self.conf['daylight_savings_time'] = int(self.conf['daylight_savings_time'])
except ValueError:
self.conf['daylight_savings_time'] = 1
try:
self.conf['pt_method'] = int(self.conf['pt_method'])
except ValueError:
self.conf['pt_method'] = 6
try:
self.conf['Edit_pt'] = int(self.conf['Edit_pt'])
except ValueError:
self.conf['Edit_pt'] = 0
try:
self.conf['Fajr_minutes'] = int(self.conf['Fajr_minutes'])
except ValueError:
self.conf['Fajr_minutes'] = 0
try:
self.conf['Shrooq_minutes'] = int(self.conf['Shrooq_minutes'])
except ValueError:
self.conf['Shrooq_minutes'] = 0
try:
self.conf['Zuhr_minutes'] = int(self.conf['Zuhr_minutes'])
except ValueError:
self.conf['Zuhr_minutes'] = 0
try:
self.conf['Asr_minutes'] = int(self.conf['Asr_minutes'])
except ValueError:
self.conf['Asr_minutes'] = 0
try:
self.conf['Maghrib_minutes'] = int(self.conf['Maghrib_minutes'])
except ValueError:
self.conf['Maghrib_minutes'] = 0
try:
self.conf['Ishaa_minutes'] = int(self.conf['Ishaa_minutes'])
except ValueError:
self.conf['Ishaa_minutes'] = 0
try:
self.conf['notify_before_min'] = int(float(self.conf['notify_before_min']))
except ValueError:
self.conf['notify_before_min'] = 10
self.m.set_lang(self.conf['lang'])
self.m.clear()
def apply_conf(self):
kw = self.conf_to_prayer_args()
self.prayer = itl.PrayerTimes(**kw)
self.prayer.method.extreme=int(self.conf['pt_method'])
self.prayer.method.offset=self.conf['Edit_pt']
if self.conf['Edit_pt'] == 1:
self.prayer.method.offList[0]=self.conf['Fajr_minutes']
self.prayer.method.offList[1]=self.conf['Shrooq_minutes']
self.prayer.method.offList[2]=self.conf['Zuhr_minutes']
self.prayer.method.offList[3]=self.conf['Asr_minutes']
self.prayer.method.offList[4]=self.conf['Maghrib_minutes']
self.prayer.method.offList[5]=self.conf['Ishaa_minutes']
self.update_prayer()
self.sound_player.set_filename(self.conf['athan_media_file'])
self.m.clear()
self.m.set_lang(self.conf['lang'])
self.render_body(self.m.go_forward())
self.last_time = time.time()
def save_conf(self):
self.conf['cities_db_ver'] = self.m.cities_db_ver
self.conf['show_merits'] = int(self.conf_dlg.show_merits.get_active())
self.conf['daylight_savings_time'] = int(self.conf_dlg.daylight_savings_time.get_active())
self.conf['pt_method'] = int(self.conf_dlg.pt_method.get_active())
self.conf['Edit_pt']=int(self.conf_dlg.Edit_pt.get_active())
self.conf['Fajr_minutes']=int(self.conf_dlg.Fajr_min.get_value())
self.conf['Shrooq_minutes']=int(self.conf_dlg.Shrooq_min.get_value())
self.conf['Zuhr_minutes']=int(self.conf_dlg.Zuhr_min.get_value())
self.conf['Asr_minutes']=int(self.conf_dlg.Asr_min.get_value())
self.conf['Maghrib_minutes']=int(self.conf_dlg.Maghrib_min.get_value())
self.conf['Ishaa_minutes']=int(self.conf_dlg.Ishaa_min.get_value())
self.conf['lang'] = self.conf_dlg.lang.get_active_text()
self.conf['minutes'] = int(self.conf_dlg.timeout.get_value())
self.conf['athan_media_file'] = self.conf_dlg.sound_file.get_filename()
self.conf['notify_before_min'] = int(self.conf_dlg.notify_before_b.get_active() \
and self.conf_dlg.notify_before_t.get_value())
m, p = self.conf_dlg.cities_tree.get_selection().get_selected_rows()
if p:
city_id = m[p[0]][2]
if city_id:
self.conf['city_id'] = city_id
print ("** saving conf", self.conf)
fn = os.path.expanduser('~/.monajat-applet.rc')
s = '\n'.join(map(lambda k: "%s=%s" % (k,str(self.conf[k])), self.conf.keys()))
try:
open(fn,'wt').write(s)
except OSError:
pass
self.apply_conf()
def athan_show_notif(self):
self.last_time = time.time()
self.first_notif_done = True
s = self.ptnames[self.last_athan]
self.show_notify_cb(('''It's now time for %s prayer''') % s)
return True
def athan_notif_cb(self):
i, t, dt = self.prayer.get_next_time_stamp()
if i < 0:
return False
dt = max(dt, 0)
i = i%6
self.next_athan_delta = dt
self.next_athan_i = i
if dt < 30 and i != self.last_athan:
print ("it's time for prayer number:", i)
self.last_athan = i
self.sound_player.play()
self.athan_show_notif()
return True
return False
@MainTimer(0.5)
def timer_cb(self, *args):
if not 'actions' in self.notifycaps:
self.init_notify_cb()
print (self.notifycaps)
dt = int(time.time()-self.last_time)
if self.prayer.update():
self.update_prayer()
if self.athan_notif_cb(): return True
if not self.first_notif_done:
if int(time.time()-self.start_time) >= 10:
self.next_cb()
return True
if self.conf['notify_before_min'] \
and self.next_athan_delta <= self.conf['notify_before_min']*60 \
and self.next_athan_i != self.notif_last_athan:
self.notif_last_athan = self.next_athan_i
self.next_cb()
elif self.conf['minutes'] and dt >= (self.conf['minutes']*60):
self.next_cb()
return True
def fuzzy_delta(self):
if self.next_athan_i < 0 :
return ""
t = max(int(self.next_athan_delta), 0)
d = {"prayer" : self.ptnames[self.next_athan_i]}
d['hours'] = t/3600
t %= 3600
d['minutes'] = t/60
if d["hours"]:
if d["minutes"] < 5:
r = ("""%(hours)d hours till %(prayer)s prayer""") % d
else:
r = ("""%(hours)d hours and %(minutes)d minutes till %(prayer)s prayer""") % d
elif d["minutes"] >= 2:
r = ("""less than %(minutes)d minutes till %(prayer)s prayer""") % d
else:
r = ("""less than a minute till %(prayer)s prayer""") % d
if "body-markup" in self.notifycaps:
return "<b>%s</b>\n\n" % html.escape(r)
return "%s\n\n" % r
def body_to_str(self, body):
if type(body) == bytes:
return body.encode('utf-8')
return body
def render_body(self, m):
merits = m['merits']
if not self.conf['show_merits']:
merits = None
if "body-markup" in self.notifycaps:
body = html.escape(m['text'])
if merits:
body = """{}\n\n<b>{}</b>: {}""".format(self.body_to_str(body),("Its Merits"),self.body_to_str(html.escape(merits)))
else:
body = m['text']
if merits:
body = """{}\n\n** {} **: {}""".format(self.body_to_str(body),("Its Merits"),self.body_to_str(merits))
if type(body) == bytes:
body = body.encode('utf-8')
if "body-hyperlinks" in self.notifycaps:
L = []
links = m.get('links',u'').split(u'\n')
for l in links:
ll = l.split(u'\t',1)
url = html.escape(ll[0])
if len(ll) > 1:
t = html.escape(ll[1])
else:
t = url
print (url, t)
L.append(u"""<a href='{}'>{}</a>""".format(url,t))
l = u"\n\n".join(L)
body += self.body_to_str("\n\n" + l)
# if we are close to time show it before supplication
if self.next_athan_delta >= 0 and self.next_athan_delta <= 600:
body = self.fuzzy_delta() + self.body_to_str(body)
else:
body = """{}\n\n{}""".format(self.body_to_str(body), self.fuzzy_delta())
#body = body + "\n\n" + self.fuzzy_delta()
#timeNP,isnear, istime = self.nextprayer_note(self.get_nextprayer(self.prayer.get_prayers()))
#if not isnear: body+=timeNP
#else: body=timeNP+body
self.show_notify_cb(body)
return body
def dbus_cb(self, *args):
self.minutes_counter = 1
self.next_cb()
return 0
def next_cb(self, *args):
self.last_time = time.time()
self.first_notif_done = True
self.render_body(self.m.go_forward())
return True
def prev_cb(self, *args):
self.first_notif_done = True
self.render_body(self.m.go_back())
return True
def copy_cb(self, *args):
r = self.m.get_current()
self.clip1.set_text(r['text'], -1)
self.clip2.set_text(r['text'], -1)
def show_about_dialog(self):
# FIXME: please add more the authors
dlg = Gtk.AboutDialog()
dlg.set_default_response(Gtk.ResponseType.CLOSE)
dlg.set_logo_icon_name('monajat')
try:
dlg.set_program_name("Monajat")
except:
pass
dlg.set_name(("Monajat"))
#dlg.set_version(version)
dlg.set_copyright("""Copyright © 2009 sabily.org
Copyright © 2010-2017 Sabily, Ojuba Team""")
dlg.set_comments(("Monajat supplications"))
dlg.set_license("""\
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 2 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.
""")
dlg.set_website("https://launchpad.net/monajat")
dlg.set_website_label("Monajat web site")
dlg.set_authors(["Fadi al-katout <cutout33@gmail.com>",
"Muayyad Saleh Alsadi <alsadi@ojuba.org>",
"Ehab El-Gedawy <ehabsas@gmail.com>",
"Mahyuddin Susanto <udienz@ubuntu.com>",
"عبدالرحيم دوبيلار <abdulrahiem@sabi.li>",
"أحمد المحمودي (Ahmed El-Mahmoudy) <aelmahmoudy@sabily.org>"])
dlg.run()
dlg.destroy()
def save_auto_start(self):
b = self.conf_dlg.auto_start.get_active()
if b and os.path.exists(self.skip_auto_fn):
try:
os.unlink(self.skip_auto_fn)
except OSError:
pass
elif not b:
open(self.skip_auto_fn,'wt').close()
def update_prayer(self):
if not self.prayer_items: return
pt = self.prayer.get_prayers()
j = 0
ptn = list(self.ptnames)
#if you want to disable sunrise time showing from the popup menu use the commands in line 952 and 980
#ptn[1] = ''
for p,t in zip(ptn, pt):
if not p: continue
i = Gtk.MenuItem
self.prayer_items[j].set_label("{: <15} {}".format(p, t.format(),))
j += 1
def init_menu(self):
self.menu = Gtk.Menu()
i = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_COPY, None)
i.set_always_show_image(True)
i.connect('activate', self.copy_cb)
self.menu.add(i)
i = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_GO_FORWARD, None)
i.set_always_show_image(True)
i.connect('activate', self.next_cb)
self.menu.add(i)
i = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_GO_BACK, None)
i.set_always_show_image(True)
i.connect('activate', self.prev_cb)
self.menu.add(i)
self.menu.add(Gtk.SeparatorMenuItem.new())
self.prayer_items = []
#for disabling sunerise time from the popup menu
#for j in range(5):
for j in range(6):
i = Gtk.MenuItem("-")
self.prayer_items.append(i)
self.menu.add(i)
self.update_prayer()
self.menu.add(Gtk.SeparatorMenuItem.new())
i = Gtk.MenuItem(("Configure"))
i.connect('activate', self.config_cb)
self.menu.add(i)
self.menu.add(Gtk.SeparatorMenuItem.new())
i = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_ABOUT, None)
i.set_always_show_image(True)
i.connect('activate', lambda *args: self.show_about_dialog())
self.menu.add(i)
i = Gtk.ImageMenuItem.new_from_stock(Gtk.STOCK_QUIT, None)
i.set_always_show_image(True)
i.connect('activate', Gtk.main_quit)
self.menu.add(i)
self.menu.show_all()
def popup_cb(self, s, button, time):
self.menu.popup(None,
None,
self.statusicon.position_menu,
self.statusicon,
3,
Gtk.get_current_event_time())
def time_set_cb(self, m, t):
self.conf['minutes'] = t
self.minutes_counter = 1
self.save_conf()
def lang_cb(self, m, l):
if not m.get_active(): return
self.m.set_lang(l)
self.save_conf()
def notify_cb(self, notify, action, *a):
if action == "exit":
Gtk.main_quit()
elif action == "copy":
self.copy_cb()
elif action == "next":
self.next_cb()
elif action == "previous":
self.prev_cb()
def applet_main():
Gtk.Window.set_default_icon_name('monajat')
#a = applet
setup_dbus(applet)
Gtk.main()
if __name__ == "__main__":
applet_main()
|