42 lines
1.5 KiB
HolyC
42 lines
1.5 KiB
HolyC
U0 @slon_web_user_get(SlonHttpSession* session)
|
|
{
|
|
SLON_SCRATCH_BUFFER_AND_REQUEST_JSON
|
|
no_warn scratch_buffer, request_json;
|
|
|
|
I64 path_segments_count = 0;
|
|
U8** path_segments = String.Split(StrFind("@", @slon_http_request_path(session)) + 1, '/', &path_segments_count);
|
|
|
|
U8* user = path_segments[0];
|
|
|
|
if (path_segments_count == 1) {
|
|
JsonObject* actor = db->o("actors")->@(user);
|
|
if (!actor) {
|
|
@slon_http_set_status_code(session, 404);
|
|
goto slon_web_user_get_return;
|
|
}
|
|
// gib profil pl0x
|
|
|
|
I64 html_file_size;
|
|
U8* html_file_data = FileRead("M:/Slon/Static/html/user.html", &html_file_size);
|
|
U8* user_file_data = Json.Stringify(actor);
|
|
|
|
U8* html_data = @slon_calloc(session, (html_file_size * 2) + (StrLen(user_file_data) * 2));
|
|
String.Append(html_data, html_file_data);
|
|
String.Append(html_data, "<script>getStatuses(");
|
|
String.Append(html_data, user_file_data);
|
|
String.Append(html_data, ");</script>");
|
|
@slon_http_set_content_type(session, "text/html");
|
|
@slon_http_send(session, html_data, StrLen(html_data));
|
|
|
|
Free(html_file_data);
|
|
Free(user_file_data);
|
|
@slon_free(session, html_data);
|
|
goto slon_web_user_get_return;
|
|
} else {
|
|
// do something here (statuses, followers, media, etc.)
|
|
@slon_http_set_status_code(session, 404);
|
|
}
|
|
|
|
slon_web_user_get_return:
|
|
Free(path_segments);
|
|
}
|