shared/api/endpoints/course/unit.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
//! Endpoints for CourseUnit
use crate::{
api::Method,
domain::{
course::unit::{
CourseUnit, CourseUnitCreateRequest, CourseUnitId, CourseUnitUpdateRequest,
CreateCourseUnitPath, DeleteCourseUnitPath, GetCourseUnitDraftPath,
GetCourseUnitLivePath, UpdateCourseUnitPath,
},
CreateResponse,
},
error::EmptyError,
};
use super::ApiEndpoint;
/// Get an Course Unit on a draft Course
///
/// # Authorization
/// Standard
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`NotFound`](http::StatusCode::NOT_FOUND) if the Course Unit or the parent Course doesn't exist.
pub struct GetDraft;
impl ApiEndpoint for GetDraft {
type Req = ();
type Res = CourseUnit;
type Path = GetCourseUnitDraftPath;
type Err = EmptyError;
const METHOD: Method = Method::Get;
}
/// Get an Course Unit on a live Course
///
/// # Authorization
/// Standard
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`NotFound`](http::StatusCode::NOT_FOUND) if the Course Unit or the parent Course doesn't exist.
pub struct GetLive;
impl ApiEndpoint for GetLive {
type Req = ();
type Res = CourseUnit;
type Path = GetCourseUnitLivePath;
type Err = EmptyError;
const METHOD: Method = Method::Get;
}
/// Add a Course Unit to a draft Course.
///
/// # Authorization
///
/// * Standard + [`UserScope::ManageJig`](crate::domain::user::UserScope)
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`Forbidden`](http::StatusCode::FORBIDDEN) if the user does not have sufficient permission to perform the action.
/// * [`BadRequest`](http::StatusCode::BAD_REQUEST) if the request is missing/invalid.
pub struct Create;
impl ApiEndpoint for Create {
type Path = CreateCourseUnitPath;
type Req = CourseUnitCreateRequest;
type Res = CreateResponse<CourseUnitId>;
type Err = EmptyError;
const METHOD: Method = Method::Post;
}
/// Update an Course Units to a draft Course.
///
/// # Authorization
///
/// * Standard + [`UserScope::ManageJig`](crate::domain::user::UserScope)
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`Forbidden`](http::StatusCode::FORBIDDEN) if the user does not have sufficient permission to perform the action.
/// * [`BadRequest`](http::StatusCode::BAD_REQUEST) if the request is missing/invalid.
pub struct Update;
impl ApiEndpoint for Update {
type Path = UpdateCourseUnitPath;
type Req = CourseUnitUpdateRequest;
type Res = ();
type Err = EmptyError;
const METHOD: Method = Method::Patch;
}
/// Delete an Course Unit from a draft Course.
///
/// # Authorization
///
/// * Standard + [`UserScope::ManageJig`](crate::domain::user::UserScope)
///
/// # Errors
///
/// * [`Unauthorized`](http::StatusCode::UNAUTHORIZED) if authorization is not valid.
/// * [`Forbidden`](http::StatusCode::FORBIDDEN) if the user does not have sufficient permission to perform the action.
/// * [`NotFound`](http::StatusCode::NOT_FOUND) if the Course Unit or parent Course does not exist.
/// * [`BadRequest`](http::StatusCode::BAD_REQUEST) if the given `id` is not a [`Uuid`](uuid::Uuid) or the request is missing/invalid.
pub struct Delete;
impl ApiEndpoint for Delete {
type Req = ();
type Res = ();
type Path = DeleteCourseUnitPath;
type Err = EmptyError;
const METHOD: Method = Method::Delete;
}