2021-03-01 17:24:11 +00:00
|
|
|
use crate::settings::structs::Settings;
|
2020-07-10 18:15:41 +00:00
|
|
|
use jsonwebtoken::{decode, encode, DecodingKey, EncodingKey, Header, TokenData, Validation};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
type Jwt = String;
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Claims {
|
|
|
|
pub id: i32,
|
|
|
|
pub iss: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Claims {
|
|
|
|
pub fn decode(jwt: &str) -> Result<TokenData<Claims>, jsonwebtoken::errors::Error> {
|
|
|
|
let v = Validation {
|
|
|
|
validate_exp: false,
|
|
|
|
..Validation::default()
|
|
|
|
};
|
|
|
|
decode::<Claims>(
|
|
|
|
&jwt,
|
2021-03-01 17:24:11 +00:00
|
|
|
&DecodingKey::from_secret(Settings::get().jwt_secret().as_ref()),
|
2020-07-10 18:15:41 +00:00
|
|
|
&v,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-03-11 22:47:44 +00:00
|
|
|
pub fn jwt(local_user_id: i32, hostname: String) -> Result<Jwt, jsonwebtoken::errors::Error> {
|
2020-07-10 18:15:41 +00:00
|
|
|
let my_claims = Claims {
|
2021-03-11 22:47:44 +00:00
|
|
|
id: local_user_id,
|
2020-07-10 18:15:41 +00:00
|
|
|
iss: hostname,
|
|
|
|
};
|
|
|
|
encode(
|
|
|
|
&Header::default(),
|
|
|
|
&my_claims,
|
2021-03-01 17:24:11 +00:00
|
|
|
&EncodingKey::from_secret(Settings::get().jwt_secret().as_ref()),
|
2020-07-10 18:15:41 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|