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
187
188
//! `Areas` endpoints, handling shadings, hydrologies, and soil textures.

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

use crate::{
    config::{
        auth::user_info::UserInfo,
        data::{SharedBroadcaster, SharedPool},
    },
    model::dto::{
        actions::Action,
        areas::{AreaKind, AreaSearchParameters, AreaUpdate, NewAreaDto, UpdateAreaDto},
        core::ActionDtoWrapper,
    },
    service::areas,
};

/// Endpoint for listing and filtering areas.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/areas",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
        AreaSearchParameters
    ),
    responses(
        (status = 200, description = "Find areas", body = Vec<AreaDto>),
    ),
    security(
        ("oauth2" = [])
    )
)]
#[get("")]
pub async fn find(
    search_params: Query<AreaSearchParameters>,
    pool: SharedPool,
) -> Result<HttpResponse> {
    let response = areas::find(search_params.into_inner(), &pool).await?;
    Ok(HttpResponse::Ok().json(response))
}

/// Endpoint for creating a new area.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/areas",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
        ("area_kind" = AreaKind, Path, description = "The type of area"),
    ),
    request_body = NewAreaDto,
    responses(
        (status = 201, description = "Create an areas", body = AreaDto)
    ),
    security(
        ("oauth2" = [])
    )
)]
#[post("/{area_kind}")]
pub async fn create(
    path: Path<(i32, AreaKind)>,
    new_areas: Json<ActionDtoWrapper<Vec<NewAreaDto>>>,
    pool: SharedPool,
    broadcaster: SharedBroadcaster,
    user_info: UserInfo,
) -> Result<HttpResponse> {
    let (map_id, area_kind) = path.into_inner();

    let ActionDtoWrapper { action_id, dto } = new_areas.into_inner();

    let created_areas = areas::create(area_kind, dto, &pool).await?;

    broadcaster
        .broadcast(
            map_id,
            Action::new_create_area_action(
                area_kind,
                created_areas.clone(),
                user_info.id,
                action_id,
            ),
        )
        .await;

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

/// Endpoint for updating an area.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/areas",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
        ("area_kind" = AreaKind, Path, description = "The type of area"),
    ),
    request_body = ActionDtoWrapperUpdateAreas,
    responses(
        (status = 200, description = "Update multiple areas of the same kind", body = Vec<AreaDto>)
    ),
    security(
        ("oauth2" = [])
    )
)]
#[patch("/{area_kind}")]
pub async fn update(
    path: Path<(i32, AreaKind)>,
    update_areas: Json<ActionDtoWrapper<UpdateAreaDto>>,
    pool: SharedPool,
    broadcaster: SharedBroadcaster,
    user_info: UserInfo,
) -> Result<HttpResponse> {
    let (map_id, area_kind) = path.into_inner();

    let ActionDtoWrapper { action_id, dto } = update_areas.into_inner();

    let updated = areas::update(area_kind, dto.clone(), &pool).await?;

    let user_id = user_info.id;
    let action = match dto.update {
        AreaUpdate::UpdateValue(_) => {
            Action::new_update_area_action(area_kind, &updated, user_id, action_id)
        }
        AreaUpdate::UpdateAddDate(_) => {
            Action::new_update_area_add_date_action(area_kind, &updated, user_id, action_id)
        }
        AreaUpdate::UpdateRemoveDate(_) => {
            Action::new_update_area_remove_date_action(area_kind, &updated, user_id, action_id)
        }
        AreaUpdate::UpdateNotes(_) => {
            Action::new_update_area_notes_action(area_kind, &updated, user_id, action_id)
        }
    };
    broadcaster.broadcast(map_id, action).await;

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

/// Endpoint for deleting an area.
///
/// # Errors
/// * If the connection to the database could not be established.
#[utoipa::path(
    context_path = "/api/maps/{map_id}/areas",
    params(
        ("map_id" = i32, Path, description = "The id of the map the layer is on"),
        ("area_kind" = AreaKind, Path, description = "The type of area"),
    ),
    request_body = ActionDtoWrapperDeleteAreas,
    responses(
        (status = 200, description = "Areas deleted")
    ),
    security(
        ("oauth2" = [])
    )
)]
#[delete("/{area_kind}")]
pub async fn delete(
    path: Path<(i32, AreaKind)>,
    ids: Json<ActionDtoWrapper<Vec<Uuid>>>,
    pool: SharedPool,
    broadcaster: SharedBroadcaster,
    user_info: UserInfo,
) -> Result<HttpResponse> {
    let (map_id, area_kind) = path.into_inner();

    let ActionDtoWrapper { action_id, dto } = ids.into_inner();

    areas::delete_by_ids(area_kind, dto.clone(), &pool).await?;

    broadcaster
        .broadcast(
            map_id,
            Action::new_delete_area_action(area_kind, dto, user_info.id, action_id),
        )
        .await;

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