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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
//! `BaseLayerImage` endpoints.

use actix_web::{
    delete, get, patch, post,
    web::{Data, Json, Path},
    HttpResponse, Result,
};
use uuid::Uuid;

use crate::{
    config::{auth::user_info::UserInfo, data::AppDataInner},
    model::dto::{
        actions::{
            Action, ActionType, CreateBaseLayerImageActionPayload,
            DeleteBaseLayerImageActionPayload, UpdateBaseLayerImageActionPayload,
        },
        core::{
            ActionDtoWrapper, ActionDtoWrapperDeleteBaseLayerImage,
            ActionDtoWrapperNewBaseLayerImage, ActionDtoWrapperUpdateBaseLayerImage,
        },
    },
    service::base_layer_images,
};

/// Endpoint for listing and filtering `BaseLayerImage`.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/layers/base/{layer_id}/images",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
        ("layer_id" = i32, Path, description = "The id of the layer"),
    ),
    responses(
        (status = 200, description = "Find base layer images", body = Vec<BaseLayerImageDto>)
    ),
    security(
        ("oauth2" = [])
    )
)]
#[get("")]
pub async fn find(path: Path<(i32, Uuid)>, app_data: Data<AppDataInner>) -> Result<HttpResponse> {
    let (_map_id, layer_id) = path.into_inner();
    let response = base_layer_images::find(&app_data, layer_id).await?;
    Ok(HttpResponse::Ok().json(response))
}

/// Endpoint for creating a new `BaseLayerImage`.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/layers/base/images",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
    ),
    request_body = ActionDtoWrapperNewBaseLayerImage,
    responses(
        (status = 201, description = "Create a planting", body = BaseLayerImageDto)
    ),
    security(
        ("oauth2" = [])
    )
)]
#[post("")]
pub async fn create(
    path: Path<i32>,
    json: Json<ActionDtoWrapperNewBaseLayerImage>,
    app_data: Data<AppDataInner>,
    user_info: UserInfo,
) -> Result<HttpResponse> {
    let ActionDtoWrapper { action_id, dto } = json.into_inner();

    let dto = base_layer_images::create(dto.clone(), &app_data).await?;

    app_data
        .broadcaster
        .broadcast(
            path.into_inner(),
            Action {
                action_id,
                user_id: user_info.id,
                action: ActionType::CreateBaseLayerImage(CreateBaseLayerImageActionPayload::new(
                    dto.clone(),
                )),
            },
        )
        .await;

    Ok(HttpResponse::Created().json(dto))
}

/// Endpoint for updating a `BaseLayerImage`.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/layers/base/images",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
        ("base_layer_image_id" = Uuid, Path, description = "The id of the BaseLayerImage to update"),
    ),
    request_body = ActionDtoWrapperUpdateBaseLayerImage,
    responses(
        (status = 200, description = "Update a planting", body = BaseLayerImageDto)
    ),
    security(
        ("oauth2" = [])
    )
)]
#[patch("/{base_layer_image_id}")]
pub async fn update(
    path: Path<(i32, Uuid)>,
    json: Json<ActionDtoWrapperUpdateBaseLayerImage>,
    app_data: Data<AppDataInner>,
    user_info: UserInfo,
) -> Result<HttpResponse> {
    let (map_id, base_layer_image_id) = path.into_inner();
    let ActionDtoWrapper { action_id, dto } = json.into_inner();

    let dto = base_layer_images::update(base_layer_image_id, dto.clone(), &app_data).await?;

    app_data
        .broadcaster
        .broadcast(
            map_id,
            Action {
                action_id,
                user_id: user_info.id,
                action: ActionType::UpdateBaseLayerImage(UpdateBaseLayerImageActionPayload::new(
                    dto.clone(),
                )),
            },
        )
        .await;

    Ok(HttpResponse::Ok().json(dto))
}

/// Endpoint for deleting a `BaseLayerImage`.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/layers/base/images",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
    ),
    responses(
        (status = 200, description = "Delete a planting")
    ),
    security(
        ("oauth2" = [])
    )
)]
#[delete("")]
pub async fn delete(
    path: Path<i32>,
    json: Json<ActionDtoWrapperDeleteBaseLayerImage>,
    app_data: Data<AppDataInner>,
    user_info: UserInfo,
) -> Result<HttpResponse> {
    let map_id = path.into_inner();
    let ActionDtoWrapper { action_id, dto } = json.into_inner();

    let id = dto.id;

    base_layer_images::delete_by_id(id, &app_data).await?;

    app_data
        .broadcaster
        .broadcast(
            map_id,
            Action {
                action_id,
                user_id: user_info.id,
                action: ActionType::DeleteBaseLayerImage(DeleteBaseLayerImageActionPayload::new(
                    id,
                )),
            },
        )
        .await;

    Ok(HttpResponse::Ok().finish())
}