42 lines
1.1 KiB
Rust
42 lines
1.1 KiB
Rust
use axum::{response::IntoResponse, Extension, Json};
|
|
use axum_extra::extract::CookieJar;
|
|
use tetratto_core::{
|
|
database::connections::spotify::SpotifyConnection,
|
|
model::{
|
|
auth::{ConnectionService, ExternalConnectionData},
|
|
ApiReturn, Error,
|
|
},
|
|
};
|
|
use crate::{get_user_from_token, State};
|
|
|
|
pub async fn create_request(
|
|
jar: CookieJar,
|
|
Extension(data): Extension<State>,
|
|
) -> impl IntoResponse {
|
|
let data = &(data.read().await).0;
|
|
let mut user = match get_user_from_token!(jar, data) {
|
|
Some(ua) => ua,
|
|
None => return Json(Error::NotAllowed.into()),
|
|
};
|
|
|
|
let con = (
|
|
SpotifyConnection::connection(),
|
|
ExternalConnectionData::default(),
|
|
);
|
|
|
|
user.connections
|
|
.insert(ConnectionService::Spotify, con.clone());
|
|
|
|
if let Err(e) = data
|
|
.update_user_connections(user.id, user.connections)
|
|
.await
|
|
{
|
|
return Json(e.into());
|
|
}
|
|
|
|
Json(ApiReturn {
|
|
ok: true,
|
|
message: "Connection created".to_string(),
|
|
payload: Some(con.0.data),
|
|
})
|
|
}
|