Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsample-python2.py
More file actions
Latest commit
153 lines (119 loc) · 5.79 KB
/
Copy pathsample-python2.py
File metadata and controls
153 lines (119 loc) · 5.79 KB
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
try:
from .emitterimportClient
exceptImportError:
fromemitterimportClient
importTkinter
importjson
emitter=Client()
root=Tkinter.Tk()
channel_key=tkinter.StringVar(root, value="8jMLP9F859oDyqmJ3aV4aqnmFZpxApvb")
#channel_key = tkinter.StringVar(root, value="aghbt67CuPawxQvoBfKZ8MpecpPoz7od")#local
channel=tkinter.StringVar(root, value="test/")
shortcut=tkinter.StringVar(root, value="a0")
text_message=tkinter.StringVar(root, value="Hello World")
share_group=tkinter.StringVar(root, value="sg")
share_group_key=tkinter.StringVar(root, value="b7FEsiGFQoSYA6qyeu1dDodFnO0ypp0f")
#share_group_key = tkinter.StringVar(root, value="Q_dM5ODuhWjaR_LNo886hVjoecvt5pMJ") #local
defconnect():
#emitter.connect(host="127.0.0.1", port=8080, secure=False)
emitter.connect()
emitter.on_connect=lambda: result_text.insert("0.0", "Connected\n\n")
emitter.on_disconnect=lambda: result_text.insert("0.0", "Disconnected\n\n")
emitter.on_presence=lambdap: result_text.insert("0.0", "Presence message: '"+p.as_string() +"'\n\n")
emitter.on_message=lambdam: result_text.insert("0.0", "Message received on default handler, destined to "+m.channel+": "+m.as_string() +"\n\n")
emitter.on_error=lambdae: result_text.insert("0.0", "Error received: "+str(e) +"\n\n")
emitter.on_me=lambdame: result_text.insert("0.0", "Information about Me received: "+str(me) +"\n\n")
emitter.loop_start()
defdisconnect():
emitter.loop_stop()
emitter.disconnect()
defsubscribe(share_group=None):
str_key=channel_key.get()
str_channel=channel.get()
emitter.subscribe(str_key,
str_channel,
optional_handler=lambdam: result_text.insert("0.0", "Message received on handler for "+str_channel+": "+m.as_string() +"\n\n"))
result_text.insert("0.0", "Subscribtion to '"+str_channel+"' requested.\n\n")
defsubscribe_share():
str_key=share_group_key.get()
str_channel=channel.get()
str_share=share_group.get()
emitter.subscribe_with_group(str_key,
str_channel,
optional_handler=lambdam: result_text.insert("0.0", "Message received on handler for "+str_channel+": "+m.as_string() +"\n\n"),
share_group=str_share)
result_text.insert("0.0", "Subscribtion to '"+str_channel+"' requested.\n\n")
defunsubscribe():
str_key=channel_key.get()
str_channel=channel.get()
emitter.unsubscribe(str_key, str_channel)
result_text.insert("0.0", "Unsubscribtion to '"+str_channel+"' requested.\n\n")
defpresence():
str_key=channel_key.get()
str_channel=channel.get()
emitter.presence(str_key, str_channel, status=True, changes=True)
result_text.insert("0.0", "Presence on '"+str_channel+"' requested.\n\n")
defmessage(retain=False):
ifretain:
emitter.publish(channel_key.get(), channel.get(), text_message.get(), {Client.with_retain()})
else:
emitter.publish(channel_key.get(), channel.get(), text_message.get(), {})
result_text.insert("0.0", "Test message send through '"+channel.get() +"'.\n\n")
deflink():
str_key=channel_key.get()
str_channel=channel.get()
str_link=shortcut.get()
emitter.link(str_key, str_channel, str_link, True)
defpub_to_link():
str_link=shortcut.get()
emitter.publish_with_link(str_link, text_message.get())
defme():
emitter.me()
# Col 1
Tkinter.Label(root, text="Channel : ").grid(column=1, row=1)
channel_entry=Tkinter.Entry(root, width=40, textvariable=channel)
channel_entry.grid(column=1, row=2)
Tkinter.Label(root, text="Channel key : ").grid(column=1, row=3)
channel_key_entry=Tkinter.Entry(root, width=40, textvariable=channel_key)
channel_key_entry.grid(column=1, row=4)
Tkinter.Label(root, text="Shortcut : ").grid(column=1, row=5)
shortcut_entry=Tkinter.Entry(root, width=40, textvariable=shortcut)
shortcut_entry.grid(column=1, row=6)
Tkinter.Label(root, text="Message : ").grid(column=1, row=7)
message_entry=Tkinter.Entry(root, width=40, textvariable=text_message)
message_entry.grid(column=1, row=8)
Tkinter.Label(root, text="Share group : ").grid(column=1, row=9)
share_entry=Tkinter.Entry(root, width=40, textvariable=share_group)
share_entry.grid(column=1, row=10)
Tkinter.Label(root, text="Share group key : ").grid(column=1, row=11)
share_key_entry=Tkinter.Entry(root, width=40, textvariable=share_group_key)
share_key_entry.grid(column=1, row=12)
# Col 2
connect_button=Tkinter.Button(root, text="Connect", width=30, command=connect)
connect_button.grid(column=2, row=1)
disconnect_button=Tkinter.Button(root, text="Disconnect", width=30, command=disconnect)
disconnect_button.grid(column=2, row=2)
subscribe_button=Tkinter.Button(root, text="Subscribe", width=30, command=subscribe)
subscribe_button.grid(column=2, row=4)
unsubscribe_button=Tkinter.Button(root, text="Unsubscribe", width=30, command=unsubscribe)
unsubscribe_button.grid(column=2, row=5)
subscribe_share_button=Tkinter.Button(root, text="Subscribe to share", width=30, command=subscribe_share)
subscribe_share_button.grid(column=2, row=6)
# Col 3
link_button=Tkinter.Button(root, text="Link to shortcut", width=30, command=link)
link_button.grid(column=3, row=1)
send_button=Tkinter.Button(root, text="Publish to channel", width=30, command=message)
send_button.grid(column=3, row=4)
send_button=Tkinter.Button(root, text="Publish to channel with retain", width=30, command=lambda: message(retain=True))
send_button.grid(column=3, row=5)
pub_to_link_button=Tkinter.Button(root, text="Publish to link", width=30, command=pub_to_link)
pub_to_link_button.grid(column=3, row=6)
# Col 4
presence_button=Tkinter.Button(root, text="Presence", width=30, command=presence)
presence_button.grid(column=4, row=1)
me_button=Tkinter.Button(root, text="Me", width=30, command=me)
me_button.grid(column=4, row=2)
# Text area
result_text=Tkinter.Text(root, height=30, width=120)
result_text.grid(column=1, row=14, columnspan=4)
root.mainloop()