2025-09-25 17:18:16 +02:00
|
|
|
/*
|
|
|
|
|
This file is part of »zeitbild«.
|
|
|
|
|
|
|
|
|
|
Copyright 2025 'kcf' <fenris@folksprak.org>
|
|
|
|
|
|
|
|
|
|
»zeitbild« is free software: you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
»zeitbild« is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU Lesser General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
|
|
|
along with »zeitbild«. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
*/
|
|
|
|
|
|
2024-09-30 19:52:24 +02:00
|
|
|
|
|
|
|
|
namespace _zeitbild.api
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
*/
|
|
|
|
|
export function register_calendar_change(
|
2025-09-25 16:48:16 +02:00
|
|
|
rest_subject : lib_plankton.rest_http.type_rest
|
2024-09-30 19:52:24 +02:00
|
|
|
) : void
|
|
|
|
|
{
|
|
|
|
|
register<
|
|
|
|
|
{
|
|
|
|
|
name : string;
|
2025-10-13 13:19:33 +02:00
|
|
|
hue : float;
|
2024-09-30 19:52:24 +02:00
|
|
|
access : {
|
2024-10-10 23:00:29 +02:00
|
|
|
public : boolean;
|
2025-10-17 00:42:11 +02:00
|
|
|
default_level : string;
|
2024-09-30 19:52:24 +02:00
|
|
|
attributed : Array<
|
|
|
|
|
{
|
|
|
|
|
user_id : int;
|
2025-10-17 00:42:11 +02:00
|
|
|
level : string;
|
2024-09-30 19:52:24 +02:00
|
|
|
}
|
|
|
|
|
>;
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
null
|
|
|
|
|
>(
|
|
|
|
|
rest_subject,
|
|
|
|
|
lib_plankton.http.enum_method.put,
|
|
|
|
|
"/calendar/:calendar_id",
|
|
|
|
|
{
|
|
|
|
|
"description": "ändert einen Kalender (Resource ist fest)",
|
|
|
|
|
"input_schema": () => ({
|
|
|
|
|
"nullable": true,
|
|
|
|
|
// TODO
|
|
|
|
|
}),
|
|
|
|
|
"output_schema": () => ({
|
|
|
|
|
"nullable": true,
|
|
|
|
|
"type": "null",
|
|
|
|
|
}),
|
|
|
|
|
"restriction": restriction_logged_in,
|
|
|
|
|
"execution": async (stuff) => {
|
|
|
|
|
const session : {key : string; value : lib_plankton.session.type_session;} = await session_from_stuff(stuff);
|
|
|
|
|
const user_id : _zeitbild.type_user_id = await _zeitbild.service.user.identify(session.value.name);
|
|
|
|
|
|
|
|
|
|
if (stuff.input === null) {
|
|
|
|
|
return Promise.reject(new Error("impossible"));
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
const calendar_id : _zeitbild.type_calendar_id = parseInt(stuff.path_parameters["calendar_id"]);
|
|
|
|
|
// TODO move logic to calendar service
|
|
|
|
|
const calendar_object_old : _zeitbild.type_calendar_object = await _zeitbild.service.calendar.get(
|
|
|
|
|
calendar_id,
|
|
|
|
|
user_id
|
|
|
|
|
);
|
|
|
|
|
const calendar_object_new : _zeitbild.type_calendar_object = {
|
|
|
|
|
"name": stuff.input.name,
|
2025-10-13 13:19:33 +02:00
|
|
|
"hue": stuff.input.hue,
|
2024-09-30 19:52:24 +02:00
|
|
|
"access": {
|
2024-10-10 23:00:29 +02:00
|
|
|
"public": stuff.input.access.public,
|
2024-09-30 19:52:24 +02:00
|
|
|
"default_level": _zeitbild.value_object.access_level.from_string(stuff.input.access.default_level),
|
|
|
|
|
"attributed": lib_plankton.map.hashmap.implementation_map(
|
|
|
|
|
lib_plankton.map.hashmap.make(
|
|
|
|
|
x => x.toFixed(0),
|
|
|
|
|
{
|
|
|
|
|
"pairs": (
|
|
|
|
|
stuff.input.access.attributed
|
|
|
|
|
.map(
|
|
|
|
|
(entry) => ({
|
|
|
|
|
"key": entry.user_id,
|
|
|
|
|
"value": _zeitbild.value_object.access_level.from_string(entry.level),
|
|
|
|
|
})
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
}
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
},
|
2025-10-13 13:19:33 +02:00
|
|
|
"resource_id": calendar_object_old.resource_id,
|
2024-09-30 19:52:24 +02:00
|
|
|
};
|
|
|
|
|
await _zeitbild.service.calendar.change(
|
|
|
|
|
calendar_id,
|
|
|
|
|
calendar_object_new,
|
|
|
|
|
user_id
|
|
|
|
|
);
|
|
|
|
|
return Promise.resolve(
|
|
|
|
|
{
|
|
|
|
|
"status_code": 200,
|
|
|
|
|
"data": null,
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|