Add RouteCreateRoom stub.

This commit is contained in:
Jordan Bancino 2023-08-08 15:11:50 +00:00
parent 6ef965d1e0
commit e0af88145e
5 changed files with 85 additions and 13 deletions

View file

@ -28,6 +28,8 @@
#include <Str.h>
#include <Db.h>
#include <Schema/RoomCreateRequest.h>
struct Room
{
Db *db;
@ -38,7 +40,7 @@ struct Room
};
Room *
RoomCreate(Db * db, HashMap * json)
RoomCreate(Db * db, RoomCreateRequest *req)
{
return NULL;
}

View file

@ -75,6 +75,8 @@ RouterBuild(void)
R("/_matrix/client/v3/user/(.*)/filter", RouteFilter);
R("/_matrix/client/v3/user/(.*)/filter/(.*)", RouteFilter);
R("/_matrix/client/v3/createRoom", RouteCreateRoom);
/* Telodendria Admin API Routes */
R("/_telodendria/admin/(restart|shutdown|stats)", RouteProcControl);
@ -82,6 +84,7 @@ RouterBuild(void)
R("/_telodendria/admin/privileges", RoutePrivileges);
R("/_telodendria/admin/privileges/(.*)", RoutePrivileges);
#undef R
return router;

View file

@ -0,0 +1,73 @@
/*
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation files
* (the "Software"), to deal in the Software without restriction,
* including without limitation the rights to use, copy, modify, merge,
* publish, distribute, sublicense, and/or sell copies of the Software,
* and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
#include <Routes.h>
#include <Json.h>
#include <Schema/RoomCreateRequest.h>
ROUTE_IMPL(RouteCreateRoom, path, argp)
{
RouteArgs *args = argp;
HashMap *request = NULL;
HashMap *response;
RoomCreateRequest parsed;
char *err;
(void) path;
if (HttpRequestMethodGet(args->context) != HTTP_POST)
{
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
response = MatrixErrorCreate(M_UNRECOGNIZED, "Unknown request method.");
goto finish;
}
request = JsonDecode(HttpServerStream(args->context));
if (!request)
{
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
response = MatrixErrorCreate(M_NOT_JSON, NULL);
goto finish;
}
if (!RoomCreateRequestFromJson(request, &parsed, &err))
{
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
response = MatrixErrorCreate(M_BAD_JSON, err);
goto finish;
}
/* No longer need this now that it is parsed */
JsonFree(request);
request = NULL;
response = HashMapCreate();
finish:
JsonFree(request);
return response;
}

View file

@ -39,6 +39,8 @@
#include <HashMap.h>
#include <Db.h>
#include <Schema/RoomCreateRequest.h>
/**
* The functions in this API operate on an opaque structure.
*/
@ -46,19 +48,9 @@ typedef struct Room Room;
/**
* Create a new room in the given database using the given
* JSON body. The JSON body is the request body from the
* room creation API, which is used to configure the room
* as requested. A handle to the newly created room is
* returned, or NULL if there was an error creating the
* room.
* .Pp
* The JSON should be validated before being passed into
* this function. Malformed JSON will cause this function
* to fail, but since the only way it can indicate an
* error is by returning NULL, it's impossible to tell
* the client what the specific error is.
* RoomCreateRequest.
*/
extern Room * RoomCreate(Db *, HashMap *);
extern Room * RoomCreate(Db *, RoomCreateRequest *);
/**
* Lock the existing room in the specified database,

View file

@ -98,6 +98,8 @@ ROUTE(RouteProcControl);
ROUTE(RouteConfig);
ROUTE(RoutePrivileges);
ROUTE(RouteCreateRoom);
#undef ROUTE
#endif