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
#![allow(unknown_lints)]
#![warn(rust_2018_idioms)]
use ffi_support::{
define_bytebuffer_destructor, define_handle_map_deleter, define_string_destructor, ByteBuffer,
ConcurrentHandleMap, ExternError, FfiStr,
};
use std::os::raw::c_char;
use push::config::PushConfiguration;
use push::error::Result;
use push::subscriber::PushManager;
lazy_static::lazy_static! {
static ref MANAGER: ConcurrentHandleMap<PushManager> = ConcurrentHandleMap::new();
}
#[no_mangle]
pub extern "C" fn push_connection_new(
server_host: FfiStr<'_>,
http_protocol: FfiStr<'_>,
bridge_type: FfiStr<'_>,
registration_id: FfiStr<'_>,
sender_id: FfiStr<'_>,
database_path: FfiStr<'_>,
error: &mut ExternError,
) -> u64 {
MANAGER.insert_with_result(error, || {
log::trace!(
"push_connection_new {:?} {:?} -> {:?} {:?}=>{:?}",
http_protocol,
server_host,
bridge_type,
sender_id,
registration_id
);
let host = server_host.into_string();
let protocol = http_protocol.into_opt_string();
let reg_id = registration_id.into_opt_string();
let bridge = bridge_type.into_opt_string();
let sender = sender_id.into_string();
let db_path = database_path.into_opt_string();
let config = PushConfiguration {
server_host: host,
http_protocol: protocol,
bridge_type: bridge,
registration_id: reg_id,
sender_id: sender,
database_path: db_path,
..Default::default()
};
PushManager::new(config)
})
}
#[no_mangle]
pub extern "C" fn push_subscribe(
handle: u64,
channel_id: FfiStr<'_>,
scope: FfiStr<'_>,
app_key: FfiStr<'_>,
error: &mut ExternError,
) -> ByteBuffer {
log::debug!("push_get_subscription");
use push::msg_types::{KeyInfo, SubscriptionInfo, SubscriptionResponse};
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<_> {
let channel = channel_id.as_str();
let scope_s = scope.as_str();
let mut app_key = app_key.as_opt_str();
if app_key == Some("") {
app_key = None;
}
let (info, subscription_key) = mgr.subscribe(channel, scope_s, app_key)?;
Ok(SubscriptionResponse {
channel_id: info.channel_id,
subscription_info: SubscriptionInfo {
endpoint: info.endpoint,
keys: KeyInfo {
auth: base64::encode_config(&subscription_key.auth, base64::URL_SAFE_NO_PAD),
p256dh: base64::encode_config(
&subscription_key.public_key(),
base64::URL_SAFE_NO_PAD,
),
},
},
})
})
}
#[no_mangle]
pub extern "C" fn push_unsubscribe(
handle: u64,
channel_id: FfiStr<'_>,
error: &mut ExternError,
) -> u8 {
log::debug!("push_unsubscribe");
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<bool> {
let channel = channel_id.as_opt_str();
mgr.unsubscribe(channel)
})
}
#[no_mangle]
pub extern "C" fn push_unsubscribe_all(handle: u64, error: &mut ExternError) -> u8 {
log::debug!("push_unsubscribe");
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<bool> {
mgr.unsubscribe_all()
})
}
#[no_mangle]
pub extern "C" fn push_update(handle: u64, new_token: FfiStr<'_>, error: &mut ExternError) -> u8 {
log::debug!("push_update");
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<_> {
let token = new_token.as_str();
mgr.update(&token)
})
}
#[no_mangle]
pub extern "C" fn push_verify_connection(handle: u64, error: &mut ExternError) -> ByteBuffer {
log::debug!("push_verify_connection");
use push::msg_types::PushSubscriptionChanged;
use push::msg_types::PushSubscriptionsChanged;
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<_> {
let subs = mgr
.verify_connection()?
.iter()
.map(|record| PushSubscriptionChanged {
channel_id: record.channel_id.clone(),
scope: record.scope.clone(),
})
.collect();
Ok(PushSubscriptionsChanged { subs })
})
}
#[no_mangle]
pub extern "C" fn push_decrypt(
handle: u64,
chid: FfiStr<'_>,
body: FfiStr<'_>,
encoding: FfiStr<'_>,
salt: FfiStr<'_>,
dh: FfiStr<'_>,
error: &mut ExternError,
) -> *mut c_char {
log::debug!("push_decrypt");
MANAGER.call_with_result_mut(error, handle, |mgr| {
let r_chid = chid.as_str();
let r_body = body.as_str();
let r_encoding = encoding.as_str();
let r_salt: Option<&str> = salt.as_opt_str();
let r_dh: Option<&str> = dh.as_opt_str();
let uaid = mgr.conn.uaid.clone().unwrap();
mgr.decrypt(&uaid, r_chid, r_body, r_encoding, r_salt, r_dh)
})
}
#[no_mangle]
pub extern "C" fn push_dispatch_info_for_chid(
handle: u64,
chid: FfiStr<'_>,
error: &mut ExternError,
) -> ByteBuffer {
log::debug!("push_dispatch_info_for_chid");
use push::msg_types::DispatchInfo;
MANAGER.call_with_result_mut(error, handle, |mgr| -> Result<Option<_>> {
let chid = chid.as_str();
Ok(mgr.get_record_by_chid(chid)?.map(|record| DispatchInfo {
uaid: record.uaid,
scope: record.scope,
endpoint: record.endpoint,
app_server_key: record.app_server_key,
}))
})
}
define_string_destructor!(push_destroy_string);
define_bytebuffer_destructor!(push_destroy_buffer);
define_handle_map_deleter!(MANAGER, push_connection_destroy);