1use super::{
16 Error, JsonSnafu, ModelListParams, Schema, SchemaAllowCreate, SchemaAllowEdit, SchemaType,
17 SchemaView, SqlxSnafu, format_datetime,
18};
19use serde::{Deserialize, Serialize};
20use snafu::ResultExt;
21use sqlx::FromRow;
22use sqlx::{Pool, Postgres, QueryBuilder};
23use std::collections::HashMap;
24use tibba_model::Model;
25use time::PrimitiveDateTime;
26
27type Result<T> = std::result::Result<T, Error>;
28
29#[derive(FromRow)]
30struct TokenKeySchema {
31 id: i64,
32 user_id: i64,
33 token: String,
34 name: String,
35 status: i16,
36 expired_at: Option<PrimitiveDateTime>,
37 created_by: i64,
38 created: PrimitiveDateTime,
39 modified: PrimitiveDateTime,
40}
41
42#[derive(Debug, Clone, Deserialize, Serialize)]
43pub struct TokenKey {
44 pub id: i64,
45 pub user_id: i64,
46 pub token: String,
47 pub name: String,
48 pub status: i16,
49 pub expired_at: Option<String>,
50 pub created_by: i64,
51 pub created: String,
52 pub modified: String,
53}
54
55impl From<TokenKeySchema> for TokenKey {
56 fn from(s: TokenKeySchema) -> Self {
57 Self {
58 id: s.id,
59 user_id: s.user_id,
60 token: s.token,
61 name: s.name,
62 status: s.status,
63 expired_at: s.expired_at.map(format_datetime),
64 created_by: s.created_by,
65 created: format_datetime(s.created),
66 modified: format_datetime(s.modified),
67 }
68 }
69}
70
71#[derive(Debug, Clone, Deserialize)]
72pub struct TokenKeyInsertParams {
73 pub user_id: i64,
74 pub name: String,
75 pub created_by: Option<i64>,
76}
77
78#[derive(Debug, Clone, Deserialize, Default)]
79pub struct TokenKeyUpdateParams {
80 pub name: Option<String>,
81 pub status: Option<i16>,
82 pub expired_at: Option<String>,
83}
84
85#[derive(Default)]
86pub struct TokenKeyModel {}
87
88impl TokenKeyModel {
89 pub async fn get_user_id_by_token(
92 &self,
93 pool: &Pool<Postgres>,
94 token: &str,
95 ) -> Result<Option<i64>> {
96 let result = sqlx::query_as::<_, (i64,)>(
97 r#"SELECT user_id FROM token_keys
98 WHERE token = $1
99 AND status = 1
100 AND deleted_at IS NULL
101 AND (expired_at IS NULL OR expired_at > NOW())"#,
102 )
103 .bind(token)
104 .fetch_optional(pool)
105 .await
106 .context(SqlxSnafu)?;
107 Ok(result.map(|r| r.0))
108 }
109}
110
111impl Model for TokenKeyModel {
112 type Output = TokenKey;
113 fn new() -> Self {
114 Self::default()
115 }
116
117 async fn schema_view(&self, _pool: &Pool<Postgres>) -> SchemaView {
118 SchemaView {
119 schemas: vec![
120 Schema::new_id(),
121 Schema::new_user_search("user_id"),
122 Schema {
123 name: "token".to_string(),
124 category: SchemaType::String,
125 read_only: true,
126 auto_create: true,
127 popover: true,
128 ..Default::default()
129 },
130 Schema::new_name(),
131 Schema::new_status(),
132 Schema {
133 name: "expired_at".to_string(),
134 category: SchemaType::Date,
135 ..Default::default()
136 },
137 Schema {
138 name: "created_by".to_string(),
139 category: SchemaType::Number,
140 read_only: true,
141 hidden: true,
142 auto_create: true,
143 ..Default::default()
144 },
145 Schema::new_created(),
146 Schema::new_filterable_modified(),
147 ],
148 allow_edit: SchemaAllowEdit {
149 roles: vec!["su".to_string(), "admin".to_string()],
150 ..Default::default()
151 },
152 allow_create: SchemaAllowCreate {
153 roles: vec!["su".to_string(), "admin".to_string()],
154 ..Default::default()
155 },
156 }
157 }
158
159 async fn insert(&self, pool: &Pool<Postgres>, data: serde_json::Value) -> Result<u64> {
160 let p: TokenKeyInsertParams = serde_json::from_value(data).context(JsonSnafu)?;
161 let token = uuid::Uuid::new_v4().to_string();
162 let row: (i64,) = sqlx::query_as(
163 r#"INSERT INTO token_keys (user_id, name, token, created_by)
164 VALUES ($1, $2, $3, $4) RETURNING id"#,
165 )
166 .bind(p.user_id)
167 .bind(&p.name)
168 .bind(&token)
169 .bind(p.created_by.unwrap_or(0))
170 .fetch_one(pool)
171 .await
172 .context(SqlxSnafu)?;
173 Ok(row.0 as u64)
174 }
175
176 async fn get_by_id(&self, pool: &Pool<Postgres>, id: u64) -> Result<Option<Self::Output>> {
177 let result = sqlx::query_as::<_, TokenKeySchema>(
178 r#"SELECT * FROM token_keys WHERE id = $1 AND deleted_at IS NULL"#,
179 )
180 .bind(id as i64)
181 .fetch_optional(pool)
182 .await
183 .context(SqlxSnafu)?;
184 Ok(result.map(Into::into))
185 }
186
187 async fn update_by_id(
188 &self,
189 pool: &Pool<Postgres>,
190 id: u64,
191 data: serde_json::Value,
192 ) -> Result<()> {
193 let p: TokenKeyUpdateParams = serde_json::from_value(data).context(JsonSnafu)?;
194 let mut qb: QueryBuilder<Postgres> =
195 QueryBuilder::new("UPDATE token_keys SET modified = NOW()");
196 if let Some(name) = p.name {
197 qb.push(", name = ").push_bind(name);
198 }
199 if let Some(status) = p.status {
200 qb.push(", status = ").push_bind(status);
201 }
202 if let Some(expired_at) = p.expired_at {
203 if expired_at.is_empty() {
204 qb.push(", expired_at = NULL");
205 } else {
206 let dt = tibba_model::parse_primitive_datetime(&expired_at).map_err(|_| {
207 Error::NotSupported {
208 name: "invalid expired_at".to_string(),
209 }
210 })?;
211 qb.push(", expired_at = ").push_bind(dt);
212 }
213 }
214 qb.push(" WHERE id = ").push_bind(id as i64);
215 qb.push(" AND deleted_at IS NULL");
216 qb.build().execute(pool).await.context(SqlxSnafu)?;
217 Ok(())
218 }
219
220 async fn delete_by_id(&self, pool: &Pool<Postgres>, id: u64) -> Result<()> {
221 sqlx::query(
222 r#"UPDATE token_keys SET deleted_at = NOW() WHERE id = $1 AND deleted_at IS NULL"#,
223 )
224 .bind(id as i64)
225 .execute(pool)
226 .await
227 .context(SqlxSnafu)?;
228 Ok(())
229 }
230
231 async fn count(&self, pool: &Pool<Postgres>, params: &ModelListParams) -> Result<i64> {
232 let mut qb: QueryBuilder<Postgres> = QueryBuilder::new("SELECT COUNT(*) FROM token_keys");
233 self.push_conditions(&mut qb, params)?;
234 let row: (i64,) = qb
235 .build_query_as()
236 .fetch_one(pool)
237 .await
238 .context(SqlxSnafu)?;
239 Ok(row.0)
240 }
241
242 async fn list(
243 &self,
244 pool: &Pool<Postgres>,
245 params: &ModelListParams,
246 ) -> Result<Vec<Self::Output>> {
247 let mut qb: QueryBuilder<Postgres> = QueryBuilder::new("SELECT * FROM token_keys");
248 self.push_conditions(&mut qb, params)?;
249 params.push_pagination(&mut qb);
250 let rows = qb
251 .build_query_as::<TokenKeySchema>()
252 .fetch_all(pool)
253 .await
254 .context(SqlxSnafu)?;
255 Ok(rows.into_iter().map(Into::into).collect())
256 }
257
258 fn push_filter_conditions<'args>(
259 &self,
260 qb: &mut QueryBuilder<'args, Postgres>,
261 filters: &HashMap<String, String>,
262 ) -> Result<()> {
263 if let Some(user_id) = filters.get("user_id") {
264 if let Ok(v) = user_id.parse::<i64>() {
265 qb.push(" AND user_id = ").push_bind(v);
266 }
267 }
268 Ok(())
269 }
270}