From 0305ef183d4980f3c18934450314c44b0652c020 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Wed, 14 Dec 2022 15:40:23 +0000 Subject: [PATCH] Begin work on RouteRegister --- src/Routes/RouteMatrix.c | 4 +++ src/Routes/RouteRegister.c | 64 ++++++++++++++++++++++++++++++++++++++ src/include/Routes.h | 1 + 3 files changed, 69 insertions(+) create mode 100644 src/Routes/RouteRegister.c diff --git a/src/Routes/RouteMatrix.c b/src/Routes/RouteMatrix.c index 8adf921..0c920b3 100644 --- a/src/Routes/RouteMatrix.c +++ b/src/Routes/RouteMatrix.c @@ -68,6 +68,10 @@ ROUTE_IMPL(RouteMatrix, args) { response = RouteLogin(args); } + else if (MATRIX_PATH_EQUALS(pathPart, "register")) + { + response = RouteRegister(args); + } else { HttpResponseStatus(args->context, HTTP_NOT_FOUND); diff --git a/src/Routes/RouteRegister.c b/src/Routes/RouteRegister.c new file mode 100644 index 0000000..ca3ceb0 --- /dev/null +++ b/src/Routes/RouteRegister.c @@ -0,0 +1,64 @@ +/* + * Copyright (C) 2022 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 + +#include + +#include +#include +#include + +ROUTE_IMPL(RouteRegister, args) +{ + HashMap *request = NULL; + HashMap *response = NULL; + + if (MATRIX_PATH_PARTS(args->path) > 0) + { + HttpResponseStatus(args->context, HTTP_NOT_FOUND); + return MatrixErrorCreate(M_NOT_FOUND); + } + + if (HttpRequestMethodGet(args->context) != HTTP_POST) + { + HttpResponseStatus(args->context, HTTP_BAD_REQUEST); + return MatrixErrorCreate(M_UNRECOGNIZED); + } + + if (!(args->matrixArgs->config->flags & TELODENDRIA_REGISTRATION)) + { + HttpResponseStatus(args->context, HTTP_FORBIDDEN); + return MatrixErrorCreate(M_FORBIDDEN); + } + + request = JsonDecode(HttpStream(args->context)); + if (!request) + { + HttpResponseStatus(args->context, HTTP_BAD_REQUEST); + return MatrixErrorCreate(M_NOT_JSON); + } + + JsonFree(request); + return response; +} diff --git a/src/include/Routes.h b/src/include/Routes.h index baea24e..5d3ceec 100644 --- a/src/include/Routes.h +++ b/src/include/Routes.h @@ -60,6 +60,7 @@ typedef struct RouteArgs ROUTE(RouteWellKnown); /* /.well-known */ ROUTE(RouteMatrix); /* /_matrix */ ROUTE(RouteLogin); /* /_matrix/client/(r0|v3)/login */ +ROUTE(RouteRegister); /* /_matrix/client/(r0|v3)/register */ #undef ROUTE