2021-11-02 16:30:09 -07:00
|
|
|
use std::ffi::{CStr, CString};
|
|
|
|
|
use std::os::raw::c_char;
|
|
|
|
|
|
|
|
|
|
use crate::{AuthInfo, ZeroIDC};
|
|
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_new(
|
2021-11-30 14:22:25 -08:00
|
|
|
network_id: *const c_char,
|
2021-11-02 16:30:09 -07:00
|
|
|
issuer: *const c_char,
|
|
|
|
|
client_id: *const c_char,
|
|
|
|
|
auth_endpoint: *const c_char,
|
|
|
|
|
web_listen_port: u16,
|
|
|
|
|
) -> *mut ZeroIDC {
|
2021-11-30 14:22:25 -08:00
|
|
|
if network_id.is_null() {
|
|
|
|
|
println!("network_id is null");
|
|
|
|
|
return std::ptr::null_mut();
|
|
|
|
|
|
|
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
if issuer.is_null() {
|
|
|
|
|
println!("issuer is null");
|
|
|
|
|
return std::ptr::null_mut();
|
|
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
if client_id.is_null() {
|
|
|
|
|
println!("client_id is null");
|
|
|
|
|
return std::ptr::null_mut();
|
|
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
if auth_endpoint.is_null() {
|
|
|
|
|
println!("auth_endpoint is null");
|
|
|
|
|
return std::ptr::null_mut();
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
|
|
|
|
|
2021-11-30 14:22:25 -08:00
|
|
|
let network_id = unsafe {CStr::from_ptr(network_id) };
|
|
|
|
|
let issuer = unsafe { CStr::from_ptr(issuer) };
|
|
|
|
|
let client_id = unsafe { CStr::from_ptr(client_id) };
|
2021-11-02 16:30:09 -07:00
|
|
|
let auth_endpoint = unsafe { CStr::from_ptr(auth_endpoint) };
|
|
|
|
|
match ZeroIDC::new(
|
2021-11-30 14:22:25 -08:00
|
|
|
network_id.to_str().unwrap(),
|
|
|
|
|
issuer.to_str().unwrap(),
|
|
|
|
|
client_id.to_str().unwrap(),
|
2021-11-02 16:30:09 -07:00
|
|
|
auth_endpoint.to_str().unwrap(),
|
|
|
|
|
web_listen_port,
|
|
|
|
|
) {
|
|
|
|
|
Ok(idc) => {
|
|
|
|
|
return Box::into_raw(Box::new(idc));
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
Err(s) => {
|
|
|
|
|
println!("Error creating ZeroIDC instance: {}", s);
|
|
|
|
|
return std::ptr::null_mut();
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
|
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_delete(ptr: *mut ZeroIDC) {
|
|
|
|
|
if ptr.is_null() {
|
|
|
|
|
return;
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
unsafe {
|
|
|
|
|
Box::from_raw(ptr);
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_start(ptr: *mut ZeroIDC) {
|
|
|
|
|
let idc = unsafe {
|
|
|
|
|
assert!(!ptr.is_null());
|
|
|
|
|
&mut *ptr
|
|
|
|
|
};
|
|
|
|
|
idc.start();
|
|
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_stop(ptr: *mut ZeroIDC) {
|
|
|
|
|
let idc = unsafe {
|
|
|
|
|
assert!(!ptr.is_null());
|
|
|
|
|
&mut *ptr
|
|
|
|
|
};
|
|
|
|
|
idc.stop();
|
|
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-29 14:11:29 -08:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_is_running(ptr: *mut ZeroIDC) -> bool {
|
|
|
|
|
let idc = unsafe {
|
|
|
|
|
assert!(!ptr.is_null());
|
|
|
|
|
&mut *ptr
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
idc.is_running()
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-30 14:22:25 -08:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_process_form_post(ptr: *mut ZeroIDC, body: *const c_char) -> bool {
|
|
|
|
|
let idc = unsafe {
|
|
|
|
|
assert!(!ptr.is_null());
|
|
|
|
|
&mut *ptr
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if body.is_null() {
|
|
|
|
|
println!("body is null");
|
|
|
|
|
return false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let body = unsafe { CStr::from_ptr(body) }
|
|
|
|
|
.to_str().unwrap().to_string();
|
|
|
|
|
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_get_auth_info(
|
|
|
|
|
ptr: *mut ZeroIDC,
|
|
|
|
|
csrf_token: *const c_char,
|
|
|
|
|
nonce: *const c_char,
|
|
|
|
|
) -> *mut AuthInfo {
|
|
|
|
|
let idc = unsafe {
|
|
|
|
|
assert!(!ptr.is_null());
|
|
|
|
|
&mut *ptr
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if csrf_token.is_null() {
|
|
|
|
|
println!("csrf_token is null");
|
|
|
|
|
return std::ptr::null_mut();
|
|
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
if nonce.is_null() {
|
|
|
|
|
println!("nonce is null");
|
|
|
|
|
return std::ptr::null_mut();
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
|
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
let csrf_token = unsafe { CStr::from_ptr(csrf_token) }
|
|
|
|
|
.to_str()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.to_string();
|
|
|
|
|
let nonce = unsafe { CStr::from_ptr(nonce) }
|
|
|
|
|
.to_str()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.to_string();
|
|
|
|
|
|
|
|
|
|
match idc.get_auth_info(csrf_token, nonce) {
|
|
|
|
|
Some(a) => Box::into_raw(Box::new(a)),
|
|
|
|
|
None => std::ptr::null_mut(),
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
}
|
2021-11-02 15:55:26 -07:00
|
|
|
|
2021-11-02 16:30:09 -07:00
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_auth_info_delete(ptr: *mut AuthInfo) {
|
|
|
|
|
if ptr.is_null() {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
unsafe {
|
|
|
|
|
Box::from_raw(ptr);
|
2021-11-02 15:55:26 -07:00
|
|
|
}
|
|
|
|
|
}
|
2021-11-02 16:30:09 -07:00
|
|
|
|
|
|
|
|
#[no_mangle]
|
|
|
|
|
pub extern "C" fn zeroidc_get_auth_url(ptr: *mut AuthInfo) -> *const c_char {
|
|
|
|
|
let ai = unsafe {
|
|
|
|
|
assert!(!ptr.is_null());
|
|
|
|
|
&mut *ptr
|
|
|
|
|
};
|
|
|
|
|
let s = CString::new(ai.url.to_string()).unwrap();
|
|
|
|
|
return s.as_ptr();
|
|
|
|
|
}
|