2022-12-14 15:40:23 +00:00
|
|
|
/*
|
2022-12-26 15:52:52 +00:00
|
|
|
* Copyright (C) 2022-2023 Jordan Bancino <@jordan:bancino.net>
|
2022-12-14 15:40:23 +00:00
|
|
|
*
|
|
|
|
* 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 <string.h>
|
|
|
|
|
|
|
|
#include <Json.h>
|
|
|
|
#include <HashMap.h>
|
|
|
|
#include <Util.h>
|
2022-12-14 16:21:01 +00:00
|
|
|
#include <Memory.h>
|
2022-12-26 15:48:21 +00:00
|
|
|
#include <UserInteractiveAuth.h>
|
2022-12-14 15:40:23 +00:00
|
|
|
|
|
|
|
ROUTE_IMPL(RouteRegister, args)
|
|
|
|
{
|
|
|
|
HashMap *request = NULL;
|
|
|
|
HashMap *response = NULL;
|
|
|
|
|
2022-12-14 16:21:01 +00:00
|
|
|
char *pathPart = NULL;
|
2022-12-14 15:40:23 +00:00
|
|
|
|
2022-12-16 22:56:35 +00:00
|
|
|
JsonValue *val;
|
|
|
|
|
2022-12-17 00:08:31 +00:00
|
|
|
char *kind;
|
|
|
|
|
2022-12-16 22:56:35 +00:00
|
|
|
char *username = NULL;
|
|
|
|
char *password = NULL;
|
|
|
|
char *initialDeviceDisplayName = NULL;
|
|
|
|
int refreshToken = 0;
|
|
|
|
int inhibitLogin = 0;
|
2023-01-06 21:54:33 +00:00
|
|
|
char *deviceId = NULL;
|
2022-12-16 22:56:35 +00:00
|
|
|
|
2022-12-14 16:21:01 +00:00
|
|
|
if (MATRIX_PATH_PARTS(args->path) == 0)
|
2022-12-14 15:40:23 +00:00
|
|
|
{
|
2022-12-14 16:21:01 +00:00
|
|
|
if (HttpRequestMethodGet(args->context) != HTTP_POST)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
return MatrixErrorCreate(M_UNRECOGNIZED);
|
|
|
|
}
|
|
|
|
|
|
|
|
request = JsonDecode(HttpStream(args->context));
|
|
|
|
if (!request)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
return MatrixErrorCreate(M_NOT_JSON);
|
|
|
|
}
|
|
|
|
|
2022-12-16 20:08:16 +00:00
|
|
|
if (!(args->matrixArgs->config->flags & TELODENDRIA_REGISTRATION))
|
2022-12-15 21:47:08 +00:00
|
|
|
{
|
2022-12-16 20:08:16 +00:00
|
|
|
HttpResponseStatus(args->context, HTTP_FORBIDDEN);
|
|
|
|
response = MatrixErrorCreate(M_FORBIDDEN);
|
2022-12-15 21:47:08 +00:00
|
|
|
goto finish;
|
2022-12-15 01:48:49 +00:00
|
|
|
}
|
|
|
|
|
2022-12-18 20:20:08 +00:00
|
|
|
val = HashMapGet(request, "username");
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
if (JsonValueType(val) != JSON_STRING)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_BAD_JSON);
|
|
|
|
goto finish;
|
|
|
|
}
|
2022-12-26 15:48:21 +00:00
|
|
|
username = UtilStringDuplicate(JsonValueAsString(val));
|
2022-12-18 20:20:08 +00:00
|
|
|
|
|
|
|
if (!MatrixUserValidate(username, args->matrixArgs->config->serverName))
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_INVALID_USERNAME);
|
|
|
|
goto finish;
|
|
|
|
}
|
2022-12-26 15:48:21 +00:00
|
|
|
|
|
|
|
/* TODO: Check if username exists and throw error if it
|
|
|
|
* does */
|
2022-12-18 20:20:08 +00:00
|
|
|
}
|
|
|
|
|
2022-12-26 15:48:21 +00:00
|
|
|
response = UserInteractiveAuth(args->context,
|
2022-12-17 02:12:04 +00:00
|
|
|
args->matrixArgs->db, request);
|
2022-12-16 22:56:35 +00:00
|
|
|
|
2022-12-16 20:08:16 +00:00
|
|
|
if (response)
|
2022-12-15 22:04:30 +00:00
|
|
|
{
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2022-12-17 00:08:31 +00:00
|
|
|
kind = HashMapGet(HttpRequestParams(args->context), "kind");
|
|
|
|
|
|
|
|
/* We don't support guest accounts yet */
|
|
|
|
if (kind && strcmp(kind, "user") != 0)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_FORBIDDEN);
|
|
|
|
response = MatrixErrorCreate(M_INVALID_PARAM);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2022-12-16 22:56:35 +00:00
|
|
|
|
|
|
|
val = HashMapGet(request, "password");
|
|
|
|
if (!val)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_MISSING_PARAM);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (JsonValueType(val) != JSON_STRING)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_BAD_JSON);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2022-12-26 15:48:21 +00:00
|
|
|
password = UtilStringDuplicate(JsonValueAsString(val));
|
2022-12-16 22:56:35 +00:00
|
|
|
|
2022-12-17 00:08:31 +00:00
|
|
|
val = HashMapGet(request, "device_id");
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
if (JsonValueType(val) != JSON_STRING)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_BAD_JSON);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2022-12-26 15:48:21 +00:00
|
|
|
deviceId = UtilStringDuplicate(JsonValueAsString(val));
|
2022-12-17 00:08:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
val = HashMapGet(request, "inhibit_login");
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
if (JsonValueType(val) != JSON_BOOLEAN)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_BAD_JSON);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
|
|
|
inhibitLogin = JsonValueAsBoolean(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
val = HashMapGet(request, "initial_device_display_name");
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
if (JsonValueType(val) != JSON_STRING)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_BAD_JSON);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2022-12-26 15:48:21 +00:00
|
|
|
initialDeviceDisplayName = UtilStringDuplicate(JsonValueAsString(val));
|
2022-12-17 00:08:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
val = HashMapGet(request, "refresh_token");
|
|
|
|
if (val)
|
|
|
|
{
|
|
|
|
if (JsonValueType(val) != JSON_BOOLEAN)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_BAD_JSON);
|
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
|
|
|
refreshToken = JsonValueAsBoolean(val);
|
|
|
|
}
|
|
|
|
|
2022-12-26 15:48:21 +00:00
|
|
|
if (!username)
|
|
|
|
{
|
|
|
|
username = UtilRandomString(16);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inhibitLogin && !deviceId)
|
|
|
|
{
|
|
|
|
deviceId = UtilRandomString(10);
|
|
|
|
}
|
2022-12-14 16:21:01 +00:00
|
|
|
|
2022-12-17 00:08:31 +00:00
|
|
|
/* These values are already set */
|
|
|
|
(void) password;
|
|
|
|
(void) refreshToken;
|
|
|
|
(void) inhibitLogin;
|
2022-12-26 15:48:21 +00:00
|
|
|
(void) username;
|
2022-12-17 00:08:31 +00:00
|
|
|
|
|
|
|
/* These may be NULL */
|
|
|
|
(void) initialDeviceDisplayName;
|
2022-12-26 15:48:21 +00:00
|
|
|
(void) deviceId;
|
|
|
|
|
|
|
|
/* TODO: Register new user here */
|
2022-12-17 00:08:31 +00:00
|
|
|
|
2022-12-15 21:47:08 +00:00
|
|
|
finish:
|
2022-12-14 16:21:01 +00:00
|
|
|
JsonFree(request);
|
|
|
|
}
|
|
|
|
else
|
2022-12-14 15:40:23 +00:00
|
|
|
{
|
2022-12-14 16:21:01 +00:00
|
|
|
pathPart = MATRIX_PATH_POP(args->path);
|
|
|
|
|
|
|
|
if (HttpRequestMethodGet(args->context) == HTTP_GET &&
|
|
|
|
MATRIX_PATH_EQUALS(pathPart, "available"))
|
|
|
|
{
|
2022-12-16 22:56:35 +00:00
|
|
|
username = HashMapGet(
|
2022-12-15 21:47:08 +00:00
|
|
|
HttpRequestParams(args->context), "username");
|
2022-12-14 21:23:20 +00:00
|
|
|
|
|
|
|
if (!username)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_MISSING_PARAM);
|
|
|
|
}
|
|
|
|
|
2022-12-15 22:04:30 +00:00
|
|
|
/* TODO: Check if username is available */
|
2022-12-14 16:21:01 +00:00
|
|
|
}
|
|
|
|
else if (HttpRequestMethodGet(args->context) == HTTP_POST &&
|
|
|
|
(MATRIX_PATH_EQUALS(pathPart, "email") ||
|
|
|
|
MATRIX_PATH_EQUALS(pathPart, "msisdn")))
|
|
|
|
{
|
|
|
|
Free(pathPart);
|
|
|
|
pathPart = MATRIX_PATH_POP(args->path);
|
|
|
|
if (!MATRIX_PATH_EQUALS(pathPart, "requestToken"))
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_NOT_FOUND);
|
|
|
|
response = MatrixErrorCreate(M_UNRECOGNIZED);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* TODO: Validate request body and potentially return
|
|
|
|
* M_BAD_JSON */
|
|
|
|
HttpResponseStatus(args->context, HTTP_FORBIDDEN);
|
|
|
|
response = MatrixErrorCreate(M_THREEPID_DENIED);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_NOT_FOUND);
|
|
|
|
response = MatrixErrorCreate(M_UNRECOGNIZED);
|
|
|
|
}
|
|
|
|
|
|
|
|
Free(pathPart);
|
2022-12-14 15:40:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return response;
|
|
|
|
}
|