Plume/src/api/apps.rs

25 lines
625 B
Rust
Raw Permalink Normal View History

use rocket_contrib::json::Json;
2018-10-21 16:22:27 +00:00
use crate::api::Api;
use plume_api::apps::NewAppData;
use plume_common::utils::random_hex;
use plume_models::{apps::*, db_conn::DbConn};
2018-10-21 16:22:27 +00:00
#[post("/apps", data = "<data>")]
pub fn create(conn: DbConn, data: Json<NewAppData>) -> Api<App> {
let client_id = random_hex();
let client_secret = random_hex();
let app = App::insert(
2023-01-02 17:45:13 +00:00
&conn,
NewApp {
name: data.name.clone(),
client_id,
client_secret,
redirect_uri: data.redirect_uri.clone(),
website: data.website.clone(),
},
)?;
Ok(Json(app))
2018-10-21 16:22:27 +00:00
}