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>
|
|
|
|
|
Use `Makefile`s instead of a custom script (#38)
This pull request also requires the use of the external [Cytoplasm](/Telodendria/Cytoplasm) repository by removing the in-tree copy of Cytoplasm. The increased modularity requires a little more complex build process, but is overall better. Closes #19
The appropriate documentation has been updated. Closes #18
---
Please review the developer certificate of origin:
1. The contribution was created in whole or in part by me, and I have
the right to submit it under the open source licenses of the
Telodendria project; or
1. The contribution is based upon a previous work that, to the best of
my knowledge, is covered under an appropriate open source license and
I have the right under that license to submit that work with
modifications, whether created in whole or in part by me, under the
Telodendria project license; or
1. The contribution was provided directly to me by some other person
who certified (1), (2), or (3), and I have not modified it.
1. I understand and agree that this project and the contribution are
made public and that a record of the contribution—including all
personal information I submit with it—is maintained indefinitely
and may be redistributed consistent with this project or the open
source licenses involved.
- [x] I have read the Telodendria Project development certificate of
origin, and I certify that I have permission to submit this patch
under the conditions specified in it.
Reviewed-on: https://git.telodendria.io/Telodendria/Telodendria/pulls/38
2023-11-01 16:27:45 +00:00
|
|
|
#include <Cytoplasm/Json.h>
|
|
|
|
#include <Cytoplasm/HashMap.h>
|
|
|
|
#include <Cytoplasm/Str.h>
|
|
|
|
#include <Cytoplasm/Memory.h>
|
2023-01-07 15:51:56 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
#include <Schema/Registration.h>
|
|
|
|
|
2023-01-07 15:51:56 +00:00
|
|
|
#include <User.h>
|
2023-02-19 14:58:56 +00:00
|
|
|
#include <Uia.h>
|
2023-04-16 18:32:22 +00:00
|
|
|
#include <RegToken.h>
|
2022-12-14 15:40:23 +00:00
|
|
|
|
2023-03-14 00:37:24 +00:00
|
|
|
static Array *
|
|
|
|
RouteRegisterRegFlow(void)
|
|
|
|
{
|
|
|
|
Array *response = ArrayCreate();
|
|
|
|
|
|
|
|
if (!response)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ArrayAdd(response, UiaStageBuild("m.login.registration_token", NULL));
|
|
|
|
|
|
|
|
return response;
|
|
|
|
}
|
|
|
|
|
2023-04-14 21:20:56 +00:00
|
|
|
ROUTE_IMPL(RouteRegister, path, argp)
|
2022-12-14 15:40:23 +00:00
|
|
|
{
|
2023-04-14 21:20:56 +00:00
|
|
|
RouteArgs *args = argp;
|
2022-12-14 15:40:23 +00:00
|
|
|
HashMap *request = NULL;
|
|
|
|
HashMap *response = NULL;
|
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
RegistrationRequest regReq;
|
2022-12-16 22:56:35 +00:00
|
|
|
|
2022-12-17 00:08:31 +00:00
|
|
|
char *kind;
|
2023-02-24 00:17:56 +00:00
|
|
|
char *fullUsername;
|
2023-11-21 14:11:45 +00:00
|
|
|
char *msg;
|
|
|
|
char *username;
|
2022-12-16 22:56:35 +00:00
|
|
|
|
2023-01-07 15:51:56 +00:00
|
|
|
Db *db = args->matrixArgs->db;
|
2023-01-09 19:22:09 +00:00
|
|
|
User *user = NULL;
|
2023-02-24 14:40:21 +00:00
|
|
|
Array *uiaFlows = NULL;
|
2023-02-19 14:58:56 +00:00
|
|
|
int uiaResult;
|
|
|
|
|
2023-04-16 18:32:22 +00:00
|
|
|
char *session;
|
|
|
|
DbRef *sessionRef;
|
|
|
|
|
2023-04-19 00:33:38 +00:00
|
|
|
Config *config = ConfigLock(db);
|
2023-04-19 02:07:38 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
regReq.username = NULL;
|
|
|
|
regReq.password = NULL;
|
|
|
|
regReq.device_id = NULL;
|
|
|
|
regReq.initial_device_display_name = NULL;
|
|
|
|
regReq.refresh_token = 0;
|
|
|
|
regReq.inhibit_login = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-04-19 00:33:38 +00:00
|
|
|
if (!config)
|
|
|
|
{
|
|
|
|
Log(LOG_ERR, "Registration endpoint failed to lock configuration.");
|
|
|
|
HttpResponseStatus(args->context, HTTP_INTERNAL_SERVER_ERROR);
|
2023-08-05 19:26:03 +00:00
|
|
|
return MatrixErrorCreate(M_UNKNOWN, NULL);
|
2023-04-19 00:33:38 +00:00
|
|
|
}
|
|
|
|
|
2023-04-14 21:20:56 +00:00
|
|
|
if (ArraySize(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);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_UNRECOGNIZED, NULL);
|
2023-04-19 00:33:38 +00:00
|
|
|
goto end;
|
2022-12-14 16:21:01 +00:00
|
|
|
}
|
|
|
|
|
2023-03-16 02:17:48 +00:00
|
|
|
request = JsonDecode(HttpServerStream(args->context));
|
2022-12-14 16:21:01 +00:00
|
|
|
if (!request)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_NOT_JSON, NULL);
|
2023-04-19 00:33:38 +00:00
|
|
|
goto end;
|
2022-12-14 16:21:01 +00:00
|
|
|
}
|
2023-11-21 14:11:45 +00:00
|
|
|
if (!RegistrationRequestFromJson(request, ®Req, &msg))
|
2022-12-18 20:20:08 +00:00
|
|
|
{
|
2023-11-21 14:11:45 +00:00
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
|
|
|
response = MatrixErrorCreate(M_NOT_JSON, msg);
|
|
|
|
goto end;
|
|
|
|
}
|
2022-12-18 20:20:08 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
if (regReq.username)
|
|
|
|
{
|
|
|
|
if (!UserValidate(regReq.username, config->serverName))
|
2022-12-18 20:20:08 +00:00
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_INVALID_USERNAME, NULL);
|
2022-12-18 20:20:08 +00:00
|
|
|
goto finish;
|
|
|
|
}
|
2022-12-26 15:48:21 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
if (UserExists(db, regReq.username))
|
2023-01-07 15:51:56 +00:00
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_USER_IN_USE, NULL);
|
2023-01-07 15:51:56 +00:00
|
|
|
goto finish;
|
|
|
|
}
|
2022-12-18 20:20:08 +00:00
|
|
|
}
|
|
|
|
|
2023-02-19 14:58:56 +00:00
|
|
|
uiaFlows = ArrayCreate();
|
2023-03-14 00:37:24 +00:00
|
|
|
ArrayAdd(uiaFlows, RouteRegisterRegFlow());
|
2023-02-19 14:58:56 +00:00
|
|
|
|
2023-04-19 00:33:38 +00:00
|
|
|
if (config->flags & CONFIG_REGISTRATION)
|
2023-03-14 00:37:24 +00:00
|
|
|
{
|
|
|
|
ArrayAdd(uiaFlows, UiaDummyFlow());
|
|
|
|
}
|
2023-02-19 14:58:56 +00:00
|
|
|
|
|
|
|
uiaResult = UiaComplete(uiaFlows, args->context,
|
2023-04-19 02:07:38 +00:00
|
|
|
db, request, &response,
|
2023-04-19 00:33:38 +00:00
|
|
|
config);
|
2022-12-16 22:56:35 +00:00
|
|
|
|
2023-02-19 14:58:56 +00:00
|
|
|
if (uiaResult < 0)
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_INTERNAL_SERVER_ERROR);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_UNKNOWN, NULL);
|
2023-02-19 14:58:56 +00:00
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
else if (!uiaResult)
|
2022-12-15 22:04:30 +00:00
|
|
|
{
|
2023-02-19 14:58:56 +00:00
|
|
|
/* UiaComplete() sets the response and status for us. */
|
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 */
|
2023-05-06 22:34:36 +00:00
|
|
|
if (kind && !StrEquals(kind, "user"))
|
2022-12-17 00:08:31 +00:00
|
|
|
{
|
2023-11-21 14:11:45 +00:00
|
|
|
msg = "Guest accounts are currently not supported";
|
2022-12-17 00:08:31 +00:00
|
|
|
HttpResponseStatus(args->context, HTTP_FORBIDDEN);
|
2023-11-21 14:11:45 +00:00
|
|
|
response = MatrixErrorCreate(M_INVALID_PARAM, msg);
|
2022-12-17 00:08:31 +00:00
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
if (!regReq.password)
|
2022-12-16 22:56:35 +00:00
|
|
|
{
|
2023-11-21 14:11:45 +00:00
|
|
|
msg = "'password' field is unset";
|
2022-12-16 22:56:35 +00:00
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
2023-11-21 14:11:45 +00:00
|
|
|
response = MatrixErrorCreate(M_MISSING_PARAM, msg);
|
2022-12-16 22:56:35 +00:00
|
|
|
goto finish;
|
|
|
|
}
|
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
/* All of the other fields are optional, we don't have to check
|
|
|
|
* them. */
|
2022-12-17 00:08:31 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
user = UserCreate(db, regReq.username, regReq.password);
|
2023-01-09 19:22:09 +00:00
|
|
|
response = HashMapCreate();
|
2023-02-24 00:17:56 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
fullUsername = StrConcat(4,
|
|
|
|
"@", UserGetName(user), ":", config->serverName);
|
2023-02-24 00:17:56 +00:00
|
|
|
HashMapSet(response, "user_id", JsonValueString(fullUsername));
|
|
|
|
Free(fullUsername);
|
|
|
|
|
2023-01-09 19:22:09 +00:00
|
|
|
HttpResponseStatus(args->context, HTTP_OK);
|
2023-11-21 14:11:45 +00:00
|
|
|
if (!regReq.inhibit_login)
|
2023-01-07 15:51:56 +00:00
|
|
|
{
|
2023-11-21 14:11:45 +00:00
|
|
|
UserLoginInfo *loginInfo = UserLogin(user, regReq.password,
|
|
|
|
regReq.device_id, regReq.initial_device_display_name,
|
|
|
|
regReq.refresh_token);
|
2023-01-16 21:17:44 +00:00
|
|
|
|
|
|
|
HashMapSet(response, "access_token",
|
2023-02-17 03:23:25 +00:00
|
|
|
JsonValueString(loginInfo->accessToken->string));
|
2023-01-16 21:17:44 +00:00
|
|
|
HashMapSet(response, "device_id",
|
2023-02-17 03:23:25 +00:00
|
|
|
JsonValueString(loginInfo->accessToken->deviceId));
|
2023-01-16 21:17:44 +00:00
|
|
|
|
2023-11-21 14:11:45 +00:00
|
|
|
if (regReq.refresh_token)
|
2023-01-16 21:17:44 +00:00
|
|
|
{
|
|
|
|
HashMapSet(response, "expires_in_ms",
|
2023-02-17 03:23:25 +00:00
|
|
|
JsonValueInteger(loginInfo->accessToken->lifetime));
|
2023-01-16 21:17:44 +00:00
|
|
|
HashMapSet(response, "refresh_token",
|
|
|
|
JsonValueString(loginInfo->refreshToken));
|
|
|
|
}
|
|
|
|
|
2023-02-24 00:17:56 +00:00
|
|
|
UserAccessTokenFree(loginInfo->accessToken);
|
|
|
|
Free(loginInfo->refreshToken);
|
2023-01-16 21:17:44 +00:00
|
|
|
Free(loginInfo);
|
2023-01-07 15:51:56 +00:00
|
|
|
}
|
|
|
|
|
2023-04-16 18:32:22 +00:00
|
|
|
session = JsonValueAsString(JsonGet(request, 2, "auth", "session"));
|
|
|
|
sessionRef = DbLock(db, 2, "user_interactive", session);
|
|
|
|
if (sessionRef)
|
|
|
|
{
|
|
|
|
char *token = JsonValueAsString(HashMapGet(DbJson(sessionRef), "registration_token"));
|
|
|
|
|
|
|
|
/* Grant the privileges specified by the given token */
|
|
|
|
if (token)
|
|
|
|
{
|
|
|
|
RegTokenInfo *info = RegTokenGetInfo(db, token);
|
|
|
|
|
|
|
|
if (info)
|
|
|
|
{
|
2023-11-10 14:30:53 +00:00
|
|
|
UserSetPrivileges(user, UserDecodePrivileges(info->grants));
|
2023-04-16 18:32:22 +00:00
|
|
|
RegTokenClose(info);
|
|
|
|
RegTokenFree(info);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
DbUnlock(db, sessionRef);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Log(LOG_WARNING, "Unable to lock UIA session reference to check");
|
|
|
|
Log(LOG_WARNING, "privileges for user registration.");
|
|
|
|
}
|
|
|
|
|
2023-03-22 14:52:04 +00:00
|
|
|
Log(LOG_INFO, "Registered user '%s'", UserGetName(user));
|
2023-01-10 00:38:47 +00:00
|
|
|
|
|
|
|
UserUnlock(user);
|
2022-12-15 21:47:08 +00:00
|
|
|
finish:
|
2023-02-24 14:40:21 +00:00
|
|
|
UiaFlowsFree(uiaFlows);
|
2023-11-21 14:11:45 +00:00
|
|
|
RegistrationRequestFree(®Req);
|
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
|
|
|
if (HttpRequestMethodGet(args->context) == HTTP_GET &&
|
2023-05-06 22:34:36 +00:00
|
|
|
StrEquals(ArrayGet(path, 0), "available"))
|
2022-12-14 16:21:01 +00:00
|
|
|
{
|
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);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_MISSING_PARAM, NULL);
|
2022-12-14 21:23:20 +00:00
|
|
|
}
|
2023-04-19 00:33:38 +00:00
|
|
|
else if (!UserValidate(username, config->serverName))
|
2023-01-07 15:51:56 +00:00
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_INVALID_USERNAME, NULL);
|
2023-01-07 15:51:56 +00:00
|
|
|
}
|
2023-01-07 18:24:16 +00:00
|
|
|
else if (!UserExists(db, username))
|
2023-01-07 15:51:56 +00:00
|
|
|
{
|
|
|
|
response = HashMapCreate();
|
|
|
|
HashMapSet(response, "available", JsonValueBoolean(1));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_BAD_REQUEST);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_USER_IN_USE, NULL);
|
2023-01-07 15:51:56 +00:00
|
|
|
}
|
2022-12-14 16:21:01 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
HttpResponseStatus(args->context, HTTP_NOT_FOUND);
|
2023-08-05 19:26:03 +00:00
|
|
|
response = MatrixErrorCreate(M_UNRECOGNIZED, NULL);
|
2022-12-14 16:21:01 +00:00
|
|
|
}
|
2022-12-14 15:40:23 +00:00
|
|
|
}
|
|
|
|
|
2023-04-19 00:33:38 +00:00
|
|
|
end:
|
|
|
|
ConfigUnlock(config);
|
2022-12-14 15:40:23 +00:00
|
|
|
return response;
|
|
|
|
}
|