2018-07-18 14:49:39 +02:00
|
|
|
import os
|
2018-07-24 14:42:53 +02:00
|
|
|
import queues
|
2018-07-25 12:25:47 +02:00
|
|
|
import shutdown
|
|
|
|
import time
|
|
|
|
|
2018-07-09 13:17:59 +02:00
|
|
|
from kivy.app import App
|
2018-07-18 14:49:39 +02:00
|
|
|
from kivy.lang import Builder
|
2018-07-24 12:05:39 +02:00
|
|
|
from kivy.uix.boxlayout import BoxLayout
|
2018-07-24 14:42:53 +02:00
|
|
|
from kivy.properties import BooleanProperty
|
2018-07-25 12:25:47 +02:00
|
|
|
from kivy.clock import Clock
|
2018-07-18 14:49:39 +02:00
|
|
|
from kivy.uix.label import Label
|
2018-07-25 12:25:47 +02:00
|
|
|
from navigationdrawer import NavigationDrawer
|
|
|
|
from kivy.properties import ObjectProperty, StringProperty
|
|
|
|
from kivy.uix.screenmanager import Screen
|
2018-07-18 14:49:39 +02:00
|
|
|
from kivy.uix.textinput import TextInput
|
2018-07-25 12:25:47 +02:00
|
|
|
from kivymd.theming import ThemeManager
|
|
|
|
from kivymd.toolbar import Toolbar
|
|
|
|
from kivy.uix.widget import Widget
|
2018-07-24 12:05:39 +02:00
|
|
|
from bmconfigparser import BMConfigParser
|
2018-07-24 14:42:53 +02:00
|
|
|
from helper_ackPayload import genAckPayload
|
|
|
|
from addresses import decodeAddress, addBMIfNotPresent
|
|
|
|
from helper_sql import sqlExecute
|
2018-07-24 12:05:39 +02:00
|
|
|
statusIconColor = 'red'
|
|
|
|
|
2018-07-07 14:11:58 +02:00
|
|
|
|
2018-07-24 12:05:39 +02:00
|
|
|
class NavigateApp(App, TextInput):
|
2018-07-18 14:49:39 +02:00
|
|
|
theme_cls = ThemeManager()
|
|
|
|
nav_drawer = ObjectProperty()
|
2018-07-03 11:08:02 +02:00
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
def build(self):
|
2018-07-24 14:42:53 +02:00
|
|
|
main_widget = Builder.load_file(
|
|
|
|
os.path.join(os.path.dirname(__file__), 'main.kv'))
|
2018-07-18 14:49:39 +02:00
|
|
|
self.nav_drawer = Navigator()
|
|
|
|
return main_widget
|
2018-07-03 12:06:20 +02:00
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
def say_exit(self):
|
2018-07-24 14:42:53 +02:00
|
|
|
print("**************************EXITING FROM APPLICATION*****************************")
|
2018-07-18 14:49:39 +02:00
|
|
|
App.get_running_app().stop()
|
|
|
|
shutdown.doCleanShutdown()
|
2018-07-03 12:06:20 +02:00
|
|
|
|
2018-07-24 12:05:39 +02:00
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
class Navigator(NavigationDrawer):
|
|
|
|
image_source = StringProperty('images/me.jpg')
|
|
|
|
title = StringProperty('Navigation')
|
2018-07-03 12:06:20 +02:00
|
|
|
|
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
class Inbox(Screen):
|
2018-07-24 12:05:39 +02:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super(Inbox, self).__init__(**kwargs)
|
2018-07-18 14:49:39 +02:00
|
|
|
val_y = .1
|
|
|
|
val_z = 0
|
|
|
|
my_box1 = BoxLayout(orientation='vertical')
|
|
|
|
for i in range(1, 5):
|
2018-07-24 14:42:53 +02:00
|
|
|
my_box1.add_widget(Label(text="I am in inbox", size_hint=(.3, .1), pos_hint={
|
|
|
|
'x': val_z, 'top': val_y}, color=(0, 0, 0, 1), background_color=(0, 0, 0, 0)))
|
2018-07-24 12:05:39 +02:00
|
|
|
val_y += .1
|
2018-07-18 14:49:39 +02:00
|
|
|
self.add_widget(my_box1)
|
2018-07-03 11:08:02 +02:00
|
|
|
|
2018-07-24 12:05:39 +02:00
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
class Sent(Screen):
|
2018-07-24 12:05:39 +02:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super(Sent, self).__init__(**kwargs)
|
2018-07-18 14:49:39 +02:00
|
|
|
val_y = .1
|
|
|
|
val_z = 0
|
|
|
|
my_box1 = BoxLayout(orientation='vertical')
|
|
|
|
for i in range(1, 5):
|
2018-07-24 14:42:53 +02:00
|
|
|
my_box1.add_widget(Label(text="I am in sent", size_hint=(.3, .1), pos_hint={
|
|
|
|
'x': val_z, 'top': val_y}, color=(0, 0, 0, 1), background_color=(0, 0, 0, 0)))
|
2018-07-24 12:05:39 +02:00
|
|
|
val_y += .1
|
2018-07-18 14:49:39 +02:00
|
|
|
self.add_widget(my_box1)
|
2018-07-03 11:08:02 +02:00
|
|
|
|
2018-07-24 12:05:39 +02:00
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
class Trash(Screen):
|
2018-07-24 12:05:39 +02:00
|
|
|
def __init__(self, **kwargs):
|
|
|
|
super(Trash, self).__init__(**kwargs)
|
2018-07-19 13:47:37 +02:00
|
|
|
val_y = .1
|
|
|
|
val_z = 0
|
|
|
|
my_box1 = BoxLayout(orientation='vertical')
|
|
|
|
for i in range(1, 5):
|
2018-07-24 14:42:53 +02:00
|
|
|
my_box1.add_widget(Label(text="I am in trash", size_hint=(.3, .1), pos_hint={
|
|
|
|
'x': val_z, 'top': val_y}, color=(0, 0, 0, 1), background_color=(0, 0, 0, 0)))
|
2018-07-24 12:05:39 +02:00
|
|
|
val_y += .1
|
2018-07-19 13:47:37 +02:00
|
|
|
self.add_widget(my_box1)
|
2018-07-03 11:08:02 +02:00
|
|
|
|
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
class Dialog(Screen):
|
|
|
|
pass
|
2018-07-03 11:08:02 +02:00
|
|
|
|
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
class Test(Screen):
|
|
|
|
pass
|
2018-07-03 11:08:02 +02:00
|
|
|
|
2018-07-07 14:11:58 +02:00
|
|
|
|
2018-07-24 12:05:39 +02:00
|
|
|
class Create(Screen, Widget):
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super(Create, self).__init__(*args, **kwargs)
|
|
|
|
Clock.schedule_once(self.init_ui, 0)
|
|
|
|
|
|
|
|
def init_ui(self, dt=0):
|
|
|
|
# self.ids['recipent'].bind(text=self.on_text)
|
|
|
|
pass
|
|
|
|
|
|
|
|
def showmeaddresses(self):
|
|
|
|
return BMConfigParser().addresses()
|
|
|
|
|
|
|
|
def send(self):
|
2018-07-24 14:42:53 +02:00
|
|
|
# toAddress = self.ids.recipent.text
|
|
|
|
fromAddress = self.ids.spinner_id.text
|
|
|
|
# For now we are using static address i.e we are not using recipent field value.
|
|
|
|
toAddress = "BM-2cWyUfBdY2FbgyuCb7abFZ49JYxSzUhNFe"
|
|
|
|
message = self.ids.message.text
|
|
|
|
subject = self.ids.subject.text
|
|
|
|
encoding = 3
|
|
|
|
print("message: ", self.ids.message.text)
|
|
|
|
sendMessageToPeople = True
|
|
|
|
if sendMessageToPeople:
|
|
|
|
if toAddress != '':
|
|
|
|
status, addressVersionNumber, streamNumber, ripe = decodeAddress(
|
|
|
|
toAddress)
|
|
|
|
if status == 'success':
|
|
|
|
toAddress = addBMIfNotPresent(toAddress)
|
|
|
|
|
|
|
|
if addressVersionNumber > 4 or addressVersionNumber <= 1:
|
|
|
|
print("addressVersionNumber > 4 or addressVersionNumber <= 1")
|
|
|
|
if streamNumber > 1 or streamNumber == 0:
|
|
|
|
print("streamNumber > 1 or streamNumber == 0")
|
|
|
|
if statusIconColor == 'red':
|
|
|
|
print("shared.statusIconColor == 'red'")
|
|
|
|
stealthLevel = BMConfigParser().safeGetInt(
|
|
|
|
'bitmessagesettings', 'ackstealthlevel')
|
|
|
|
ackdata = genAckPayload(streamNumber, stealthLevel)
|
|
|
|
t = ()
|
|
|
|
sqlExecute(
|
|
|
|
'''INSERT INTO sent VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)''',
|
|
|
|
'',
|
|
|
|
toAddress,
|
|
|
|
ripe,
|
|
|
|
fromAddress,
|
|
|
|
subject,
|
|
|
|
message,
|
|
|
|
ackdata,
|
|
|
|
int(time.time()),
|
|
|
|
int(time.time()),
|
|
|
|
0,
|
|
|
|
'msgqueued',
|
|
|
|
0,
|
|
|
|
'sent',
|
|
|
|
encoding,
|
|
|
|
BMConfigParser().getint('bitmessagesettings', 'ttl'))
|
|
|
|
toLabel = ''
|
|
|
|
queues.workerQueue.put(('sendmessage', toAddress))
|
|
|
|
print("sqlExecute successfully ##### ##################")
|
|
|
|
self.ids.message.text = ''
|
|
|
|
self.ids.spinner_id.text = '<select>'
|
|
|
|
self.ids.subject.text = ''
|
|
|
|
self.ids.recipent.text = ''
|
|
|
|
return None
|
|
|
|
|
|
|
|
def cancel(self):
|
|
|
|
self.ids.message.text = ''
|
|
|
|
self.ids.spinner_id.text = '<select>'
|
|
|
|
self.ids.subject.text = ''
|
|
|
|
self.ids.recipent.text = ''
|
|
|
|
return None
|
2018-07-24 12:05:39 +02:00
|
|
|
|
|
|
|
|
|
|
|
class NewIdentity(Screen):
|
|
|
|
is_active = BooleanProperty(False)
|
|
|
|
|
2018-07-24 14:42:53 +02:00
|
|
|
|
2018-07-18 14:49:39 +02:00
|
|
|
if __name__ == '__main__':
|
2018-07-24 14:42:53 +02:00
|
|
|
NavigateApp().run()
|