-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathagent.vala
More file actions
186 lines (151 loc) · 6.22 KB
/
agent.vala
File metadata and controls
186 lines (151 loc) · 6.22 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
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
[DBus (name = "org.bluez.Agent1")]
public class Agent: Object
{
public GLib.Menu menu;
public GLib.SimpleActionGroup actions;
private GLib.SimpleAction pin_action;
public string menu_path;
public string actions_path;
private MainLoop loop;
private Bluetooth bluetooth;
private Notify.Notification? notification;
private string passkey;
public Agent (Bluetooth bluez)
{
// Menu
menu = new GLib.Menu ();
GLib.MenuItem item = new GLib.MenuItem ("", "notifications.pin");
item.set_attribute_value ("x-canonical-type", new Variant.string ("com.canonical.snapdecision.textfield"));
item.set_attribute_value ("x-echo-mode-password", new Variant.boolean (false));
menu.append_item (item);
// Actions
actions = new GLib.SimpleActionGroup ();
pin_action = new GLib.SimpleAction.stateful ("pin", null, new Variant.string (""));
pin_action.change_state.connect ((value) => {
this.passkey = value.get_string ();
});
actions.add_action (pin_action);
loop = new MainLoop (null, false);
bluetooth = bluez;
Notify.init ("ayatana-indicator-bluetooth");
}
/* TODO: Add a better way to differentiate between rejected and cancelled errors, maybe with an enum */
private bool sendNotification (string device_name, string body, bool need_input, bool have_actions)
{
bool accepted = !have_actions;
notification = new Notify.Notification (@"Pair with $device_name?", body, "bluetooth-active");
notification.closed.connect (() => {
accepted = false;
notification = null;
if (loop.is_running ()) {
loop.quit ();
}
});
bool is_lomiri = AyatanaCommon.utils_is_lomiri ();
if (is_lomiri) {
if (have_actions) {
notification.set_hint ("x-lomiri-snap-decisions", true);
notification.set_hint ("x-lomiri-private-affirmative-tint", "true");
}
if (need_input) {
VariantBuilder actions_builder = new VariantBuilder (new VariantType ("a{sv}"));
actions_builder.add ("{sv}", "notifications", new Variant.string (actions_path));
VariantBuilder builder = new VariantBuilder (new VariantType ("a{sv}"));
builder.add ("{sv}", "busName", new Variant.string ("org.ayatana.indicator.bluetooth"));
builder.add ("{sv}", "menuPath", new Variant.string (menu_path));
builder.add ("{sv}", "actions", actions_builder.end ());
notification.set_hint ("x-lomiri-private-menu-model", builder.end ());
}
}
if (have_actions) {
notification.add_action("yes_id", "Yes", (notif, action) => {
loop.quit ();
notification = null;
accepted = true;
});
notification.add_action("no_id", "No", (notif, action) => {
loop.quit ();
notification = null;
accepted = false;
});
}
if (!have_actions && !need_input) {
// Display-only notification. Make sure we don't time out.
notification.set_hint ("urgency", 2);
}
try {
notification.show ();
}
catch (Error e) {
warning ("Panic: Failed showing notification: %s", e.message);
}
if (have_actions) {
loop.run ();
}
return accepted;
}
public void AuthorizeService (GLib.ObjectPath object, string uuid) throws GLib.DBusError, GLib.IOError
{
}
public void RequestConfirmation (GLib.ObjectPath object, uint32 passkey) throws RejectedError, GLib.DBusError, GLib.IOError
{
string body = "Are you sure you want to pair with passkey %06u?".printf (passkey);
bool confirmed = sendNotification (bluetooth.get_device_name (object), body, false, true);
if (!confirmed) {
throw new RejectedError.ERROR ("Rejected by user");
}
}
public void RequestAuthorization (GLib.ObjectPath object) throws RejectedError, GLib.DBusError, GLib.IOError
{
bool authorized = sendNotification (bluetooth.get_device_name (object), "Are you sure you want to pair with this device?", false, true);
if (!authorized) {
throw new RejectedError.ERROR ("Rejected by user");
}
}
public string RequestPinCode (GLib.ObjectPath object) throws RejectedError, GLib.DBusError, GLib.IOError
{
bool accepted = sendNotification (bluetooth.get_device_name (object), "Enter PIN for this device", true, true);
if (!accepted) {
throw new RejectedError.ERROR ("Rejected by user");
}
return passkey;
}
public void DisplayPinCode (GLib.ObjectPath object, string pincode) throws GLib.DBusError, GLib.IOError
{
sendNotification (bluetooth.get_device_name (object), @"Enter the PIN code $pincode on the other device", false, false);
}
public uint32 RequestPasskey (GLib.ObjectPath object) throws RejectedError, GLib.DBusError, GLib.IOError
{
bool accepted = sendNotification (bluetooth.get_device_name (object), "Enter passkey for this device", true, true);
if (!accepted) {
throw new RejectedError.ERROR ("Rejected by user");
}
return passkey.to_int ();
}
public void DisplayPasskey (GLib.ObjectPath object, uint32 passkey, uint16 entered) throws GLib.DBusError, GLib.IOError
{
string body = "Enter the passkey %06u on the other device".printf (passkey);
sendNotification (bluetooth.get_device_name (object), body, false, false);
}
public void Cancel () throws GLib.DBusError, GLib.IOError
{
if (loop.is_running ()) {
loop.quit ();
}
if (notification != null) {
notification.close ();
notification = null;
}
}
public void Release () throws GLib.DBusError, GLib.IOError
{
}
}
[DBus (name = "org.bluez.Error.Cancelled")]
public errordomain CancelledError {
ERROR
}
[DBus (name = "org.bluez.Error.Rejected")]
public errordomain RejectedError {
ERROR
}