|
@@ -23,7 +23,7 @@ impl ServerState {
|
|
// unexpected case, but maybe we haven't filled that cache entry yet
|
|
// unexpected case, but maybe we haven't filled that cache entry yet
|
|
|
|
|
|
let qi = self.core.pool.query_interface();
|
|
let qi = self.core.pool.query_interface();
|
|
- let realm = qi.get_one_by(schema::RealmColumns::Shortname, realm_str);
|
|
|
|
|
|
+ let realm = qi.get_one_by(schema::Realm::Shortname, realm_str);
|
|
|
|
|
|
if let Some(with_id) = realm {
|
|
if let Some(with_id) = realm {
|
|
let mut cache = self.realm_cache.write().unwrap();
|
|
let mut cache = self.realm_cache.write().unwrap();
|
|
@@ -54,7 +54,7 @@ impl ServerState {
|
|
pub fn get_or_build_session(&self, req: &Request) -> tide::Result<(schema::SessionID, Option<tide::http::Cookie<'static>>)> {
|
|
pub fn get_or_build_session(&self, req: &Request) -> tide::Result<(schema::SessionID, Option<tide::http::Cookie<'static>>)> {
|
|
let qi = self.core.pool.query_interface();
|
|
let qi = self.core.pool.query_interface();
|
|
if let Some(sid) = req.cookie("vogt_session") {
|
|
if let Some(sid) = req.cookie("vogt_session") {
|
|
- let existing = qi.get_one_by(schema::SessionColumns::Key, sid.value());
|
|
|
|
|
|
+ let existing = qi.get_one_by(schema::Session::Key, sid.value());
|
|
|
|
|
|
if existing.is_some() {
|
|
if existing.is_some() {
|
|
return Ok((existing.unwrap().id(), None))
|
|
return Ok((existing.unwrap().id(), None))
|
|
@@ -66,27 +66,28 @@ impl ServerState {
|
|
pub fn get_auth_for_session(&self, realm: schema::RealmID, session: schema::SessionID) -> Option<microrm::WithID<schema::SessionAuthentication>> {
|
|
pub fn get_auth_for_session(&self, realm: schema::RealmID, session: schema::SessionID) -> Option<microrm::WithID<schema::SessionAuthentication>> {
|
|
let qi = self.core.pool.query_interface();
|
|
let qi = self.core.pool.query_interface();
|
|
|
|
|
|
- use schema::SessionAuthenticationColumns as SAC;
|
|
|
|
- qi.get_one_by_multi(&[SAC::Realm, SAC::Session], µrm::value_list!(&realm, &session))
|
|
|
|
|
|
+ use schema::SessionAuthentication as SAC;
|
|
|
|
+ qi.get_one_by_multi(&[&SAC::Realm, &SAC::Session], µrm::value_list!(realm, session))
|
|
}
|
|
}
|
|
|
|
|
|
pub fn destroy_auth(&self, realm: schema::RealmID, session: schema::SessionID) {
|
|
pub fn destroy_auth(&self, realm: schema::RealmID, session: schema::SessionID) {
|
|
let qi = self.core.pool.query_interface();
|
|
let qi = self.core.pool.query_interface();
|
|
|
|
|
|
- use schema::SessionAuthenticationColumns as SAC;
|
|
|
|
- qi.delete_by_multi(&[SAC::Realm, SAC::Session], µrm::value_list!(&realm, &session));
|
|
|
|
|
|
+ use schema::SessionAuthentication as SAC;
|
|
|
|
+ qi.delete_by_multi(&[&SAC::Realm, &SAC::Session], µrm::value_list!(realm, session));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
impl ServerState {
|
|
impl ServerState {
|
|
- fn render_login_from_auth(&self, response: tide::Response, auth: Option<schema::SessionAuthentication>, error_msg: Option<String>) -> tide::Response {
|
|
|
|
|
|
+ fn render_login_from_auth(&self, mut response: tide::Response, auth: Option<schema::SessionAuthentication>, error_msg: Option<String>) -> tide::Response {
|
|
let to_present: Option<schema::AuthChallengeType> = match auth {
|
|
let to_present: Option<schema::AuthChallengeType> = match auth {
|
|
None => Some(schema::AuthChallengeType::Username),
|
|
None => Some(schema::AuthChallengeType::Username),
|
|
Some(auth) => auth.challenges_left.first().copied()
|
|
Some(auth) => auth.challenges_left.first().copied()
|
|
};
|
|
};
|
|
|
|
|
|
if to_present.is_none() {
|
|
if to_present.is_none() {
|
|
- todo!("Already logged in!");
|
|
|
|
|
|
+ response.set_status(302);
|
|
|
|
+ tide::Redirect::new("/").into()
|
|
}
|
|
}
|
|
else {
|
|
else {
|
|
self.render_login_page(response, to_present.unwrap(), error_msg)
|
|
self.render_login_page(response, to_present.unwrap(), error_msg)
|
|
@@ -183,7 +184,7 @@ async fn v1_login_response(mut req: tide::Request<ServerState>) -> tide::Result<
|
|
let qi = req.state().core.pool.query_interface();
|
|
let qi = req.state().core.pool.query_interface();
|
|
req.state().destroy_auth(realm, session_id);
|
|
req.state().destroy_auth(realm, session_id);
|
|
|
|
|
|
- let user = qi.get_one_by_multi(&[schema::UserColumns::Realm, schema::UserColumns::Username], µrm::value_list![&realm, &body.challenge]);
|
|
|
|
|
|
+ let user = qi.get_one_by_multi(&[&schema::User::Realm, &schema::User::Username], µrm::value_list![&realm, &body.challenge]);
|
|
if user.is_none() {
|
|
if user.is_none() {
|
|
error = Some(format!("No such user {}", body.challenge));
|
|
error = Some(format!("No such user {}", body.challenge));
|
|
}
|
|
}
|
|
@@ -202,8 +203,8 @@ async fn v1_login_response(mut req: tide::Request<ServerState>) -> tide::Result<
|
|
else {
|
|
else {
|
|
let qi = req.state().core.pool.query_interface();
|
|
let qi = req.state().core.pool.query_interface();
|
|
|
|
|
|
- use schema::AuthChallengeColumns;
|
|
|
|
- let challenge = qi.get_one_by_multi(&[AuthChallengeColumns::User, AuthChallengeColumns::ChallengeType], µrm::value_list![&auth.as_ref().unwrap().user, &schema::AuthChallengeType::Password]);
|
|
|
|
|
|
+ use schema::AuthChallenge;
|
|
|
|
+ let challenge = qi.get_one_by_multi(&[&AuthChallenge::User, &AuthChallenge::ChallengeType], µrm::value_list![auth.as_ref().unwrap().user, schema::AuthChallengeType::Password]);
|
|
|
|
|
|
if challenge.is_none() {
|
|
if challenge.is_none() {
|
|
error = Some(format!("User lacks a password. Please contact an administrator."));
|
|
error = Some(format!("User lacks a password. Please contact an administrator."));
|
|
@@ -227,7 +228,7 @@ async fn v1_login_response(mut req: tide::Request<ServerState>) -> tide::Result<
|
|
Ok(req.state().render_login_from_auth(response, auth.map(|a| a.wrapped()), error))
|
|
Ok(req.state().render_login_from_auth(response, auth.map(|a| a.wrapped()), error))
|
|
}
|
|
}
|
|
|
|
|
|
-pub fn id_v1_server(core: &'static super::ServerCoreState) -> tide::Server<ServerState> {
|
|
|
|
|
|
+pub fn session_v1_server(core: &'static super::ServerCoreState) -> tide::Server<ServerState> {
|
|
let mut srv = tide::with_state(ServerState { core, realm_cache: std::sync::Arc::new(std::sync::RwLock::new(std::collections::HashMap::new())) });
|
|
let mut srv = tide::with_state(ServerState { core, realm_cache: std::sync::Arc::new(std::sync::RwLock::new(std::collections::HashMap::new())) });
|
|
|
|
|
|
srv.with(tide::log::LogMiddleware::new());
|
|
srv.with(tide::log::LogMiddleware::new());
|