mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2024-11-11 01:53:23 +01:00
93 lines
2.6 KiB
Rust
93 lines
2.6 KiB
Rust
use crate::session::SessionHandle;
|
|
use api::user_capnp::user::{admin, info, manage, Builder};
|
|
use crate::users::UserRef;
|
|
|
|
pub struct User {
|
|
session: SessionHandle,
|
|
}
|
|
|
|
impl User {
|
|
pub fn new(session: SessionHandle) -> Self {
|
|
Self { session }
|
|
}
|
|
|
|
pub fn build_else(&self, user: Option<UserRef>, mut builder: Builder) {
|
|
if let Some(user) = user {
|
|
builder.set_username(user.get_username());
|
|
}
|
|
}
|
|
|
|
pub fn build_into(self, mut builder: Builder) {
|
|
let user = self.session.get_user();
|
|
builder.set_username(user.get_username());
|
|
}
|
|
|
|
pub fn build(session: SessionHandle, mut builder: Builder) {
|
|
let this = Self::new(session);
|
|
this.build_into(builder)
|
|
}
|
|
}
|
|
|
|
impl info::Server for User {
|
|
fn list_roles(
|
|
&mut self,
|
|
_: info::ListRolesParams,
|
|
_: info::ListRolesResults,
|
|
) -> ::capnp::capability::Promise<(), ::capnp::Error> {
|
|
::capnp::capability::Promise::err(::capnp::Error::unimplemented(
|
|
"method not implemented".to_string(),
|
|
))
|
|
}
|
|
}
|
|
|
|
impl manage::Server for User {
|
|
fn pwd(
|
|
&mut self,
|
|
_: manage::PwdParams,
|
|
_: manage::PwdResults,
|
|
) -> ::capnp::capability::Promise<(), ::capnp::Error> {
|
|
::capnp::capability::Promise::err(::capnp::Error::unimplemented(
|
|
"method not implemented".to_string(),
|
|
))
|
|
}
|
|
}
|
|
|
|
impl admin::Server for User {
|
|
fn get_user_info_extended(
|
|
&mut self,
|
|
_: admin::GetUserInfoExtendedParams,
|
|
_: admin::GetUserInfoExtendedResults,
|
|
) -> ::capnp::capability::Promise<(), ::capnp::Error> {
|
|
::capnp::capability::Promise::err(::capnp::Error::unimplemented(
|
|
"method not implemented".to_string(),
|
|
))
|
|
}
|
|
fn add_role(
|
|
&mut self,
|
|
_: admin::AddRoleParams,
|
|
_: admin::AddRoleResults,
|
|
) -> ::capnp::capability::Promise<(), ::capnp::Error> {
|
|
::capnp::capability::Promise::err(::capnp::Error::unimplemented(
|
|
"method not implemented".to_string(),
|
|
))
|
|
}
|
|
fn remove_role(
|
|
&mut self,
|
|
_: admin::RemoveRoleParams,
|
|
_: admin::RemoveRoleResults,
|
|
) -> ::capnp::capability::Promise<(), ::capnp::Error> {
|
|
::capnp::capability::Promise::err(::capnp::Error::unimplemented(
|
|
"method not implemented".to_string(),
|
|
))
|
|
}
|
|
fn pwd(
|
|
&mut self,
|
|
_: admin::PwdParams,
|
|
_: admin::PwdResults,
|
|
) -> ::capnp::capability::Promise<(), ::capnp::Error> {
|
|
::capnp::capability::Promise::err(::capnp::Error::unimplemented(
|
|
"method not implemented".to_string(),
|
|
))
|
|
}
|
|
}
|