backend/source/api/actions/calendar_change.ts
2025-10-23 11:34:00 +02:00

140 lines
3.7 KiB
TypeScript

/*
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/>.
*/
namespace _zeitbild.api
{
/**
*/
export function register_calendar_change(
rest_subject : lib_plankton.rest_http.type_rest
) : void
{
register<
{
name : string;
hue : float;
access : {
public : boolean;
default_level : string;
attributed_group : Array<
{
group_id : int;
level : string;
}
>;
attributed_user : Array<
{
user_id : int;
level : string;
}
>;
};
},
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,
"hue": stuff.input.hue,
"access": {
"public": stuff.input.access.public,
"default_level": _zeitbild.access_level_from_string(stuff.input.access.default_level),
"attributed_group": lib_plankton.map.hashmap.implementation_map(
lib_plankton.map.hashmap.make(
x => x.toFixed(0),
{
"pairs": (
stuff.input.access.attributed_group
.map(
(entry) => ({
"key": entry.group_id,
"value": _zeitbild.access_level_from_string(entry.level),
})
)
),
}
)
),
"attributed_user": lib_plankton.map.hashmap.implementation_map(
lib_plankton.map.hashmap.make(
x => x.toFixed(0),
{
"pairs": (
stuff.input.access.attributed_user
.map(
(entry) => ({
"key": entry.user_id,
"value": _zeitbild.access_level_from_string(entry.level),
})
)
),
}
)
),
},
"resource_id": calendar_object_old.resource_id,
};
await _zeitbild.service.calendar.change(
calendar_id,
calendar_object_new,
user_id
);
return Promise.resolve(
{
"status_code": 200,
"data": null,
}
);
}
}
}
);
}
}