fix: clean up fixes after APP overhaul

This commit is contained in:
Andy Burke 2025-10-25 19:44:07 -07:00
parent 52f46207ec
commit c34069066d
11 changed files with 76 additions and 88 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
data/ data/
.fsdb .fsdb*
public/files/* public/files/*
.vscode/* .vscode/*

View file

@ -204,10 +204,6 @@ export async function POST(req: Request, meta: Record<string, any>): Promise<Res
}); });
} }
console.dir({
event
});
await events.create(event); await events.create(event);
return Response.json(event, { return Response.json(event, {

View file

@ -10,7 +10,6 @@ import * as CANNED_RESPONSES from '../../../utils/canned_responses.ts';
import * as bcrypt from '@da/bcrypt'; import * as bcrypt from '@da/bcrypt';
import { INVITE_CODE, INVITE_CODES } from '../../../models/invites.ts'; import { INVITE_CODE, INVITE_CODES } from '../../../models/invites.ts';
// TODO: figure out a better solution for doling out permissions // TODO: figure out a better solution for doling out permissions
const DEFAULT_USER_PERMISSIONS: string[] = [ const DEFAULT_USER_PERMISSIONS: string[] = [
'files.write.own', 'files.write.own',
@ -39,10 +38,16 @@ const DEFAULT_USER_PERMISSIONS: string[] = [
// TODO: figure out a better solution for doling out permissions // TODO: figure out a better solution for doling out permissions
const DEFAULT_SUPERUSER_PERMISSIONS: string[] = [ const DEFAULT_SUPERUSER_PERMISSIONS: string[] = [
...DEFAULT_USER_PERMISSIONS, ...DEFAULT_USER_PERMISSIONS,
'topics.create', 'files.write.all',
'topics.delete', 'invites.read.all',
'topics.write', 'signups.read.all',
'topics.create',
'topics.delete',
'topics.write',
'users.write',
'watches.read.all',
'watches.write.all'
]; ];
export const PRECHECKS: PRECHECK_TABLE = {}; export const PRECHECKS: PRECHECK_TABLE = {};

View file

@ -16,7 +16,7 @@
--border-highlight: hsl(from var(--base-color) h 50% 75%); --border-highlight: hsl(from var(--base-color) h 50% 75%);
--icon-scale: 1; --icon-scale: 1;
--border-radius: 12px; --border-radius: 4px;
} }
@media (prefers-color-scheme: light) { @media (prefers-color-scheme: light) {

View file

@ -2,6 +2,7 @@ const HASH_EXTRACTOR = /^\#\/topic\/(?<topic_id>[A-Za-z\-]+)\/?(?<view>\w+)?/gm;
const UPDATE_TOPICS_FREQUENCY = 60_000; const UPDATE_TOPICS_FREQUENCY = 60_000;
const APP = { const APP = {
user: undefined,
user_servers: [], user_servers: [],
user_watches: [], user_watches: [],
@ -56,16 +57,19 @@ const APP = {
groups: {}, groups: {},
}; };
/*
console.dir({ console.dir({
url: window.location.href, url: window.location.href,
hash: window.location.hash, hash: window.location.hash,
topic_id, topic_id,
view, view,
}); });
*/
if (!document.body.dataset.topic || document.body.dataset.topic !== topic_id) { if (!document.body.dataset.topic || document.body.dataset.topic !== topic_id) {
const previous = document.body.dataset.topic; const previous = document.body.dataset.topic;
/*
console.dir({ console.dir({
topic_changed: { topic_changed: {
detail: { detail: {
@ -74,6 +78,7 @@ const APP = {
}, },
}, },
}); });
*/
document.body.dataset.topic = topic_id; document.body.dataset.topic = topic_id;
@ -94,6 +99,7 @@ const APP = {
const previous = document.body.dataset.view; const previous = document.body.dataset.view;
document.body.dataset.view = view; document.body.dataset.view = view;
/*
console.dir({ console.dir({
view_changed: { view_changed: {
detail: { detail: {
@ -102,6 +108,7 @@ const APP = {
}, },
}, },
}); });
*/
this._emit( 'view_changed', { this._emit( 'view_changed', {
previous, previous,
@ -149,8 +156,9 @@ const APP = {
this._emit( 'load', this ); this._emit( 'load', this );
}, },
update_user: async function( updated_user ) { update_user: async function( user ) {
const user = this.user = updated_user; this.user = user;
document.body.dataset.user = JSON.stringify(user); document.body.dataset.user = JSON.stringify(user);
document.body.dataset.perms = user.permissions.join(":"); document.body.dataset.perms = user.permissions.join(":");

View file

@ -809,9 +809,10 @@
form.on_reply = (new_topic) => { form.on_reply = (new_topic) => {
const topic_list = document.getElementById("topic-list"); const topic_list = document.getElementById("topic-list");
topic_list.querySelectorAll( 'li' ).forEach( (li) => li.classList.remove( 'active' ) );
topic_list.insertAdjacentHTML( topic_list.insertAdjacentHTML(
"beforeend", "beforeend",
`<li id="topic-selector-${new_topic.id}" class="topic"><a href="#/topic/${new_topic.id}">${new_topic.name}</a></li>`, `<li id="topic-selector-${new_topic.id}" class="topic active"><a href="#/topic/${new_topic.id}">${new_topic.name}</a></li>`,
); );
new_topic_name_input.value = ""; new_topic_name_input.value = "";

View file

@ -105,12 +105,7 @@
const form = document.currentScript.closest("form"); const form = document.currentScript.closest("form");
form.on_reply = (response) => { form.on_reply = (response) => {
const user = response.user; const user = response.user;
document.body.dataset.user = JSON.stringify(user); APP.login( user );
document.body.dataset.perms = user.permissions.join(":");
document.dispatchEvent(
new CustomEvent("user_logged_in", { detail: { user } }),
);
}; };
} }
</script> </script>

View file

@ -44,7 +44,7 @@ Deno.test({
} }
}); });
const authed_user: USER | undefined = auth_response.user; const _authed_user: USER | undefined = auth_response.user;
const authed_session: Record<string, any> | undefined = auth_response.session; const authed_session: Record<string, any> | undefined = auth_response.session;
cookies.push({ cookies.push({

View file

@ -22,14 +22,34 @@ Deno.test({
port: test_server_info.port port: test_server_info.port
}); });
const info = await get_new_user(client); const root_user_info = await get_new_user(client);
try {
const root_user_topic = await client.fetch('/topics', {
method: 'POST',
headers: {
'x-session_id': root_user_info.session.id,
'x-totp': await generateTotp(root_user_info.session.secret)
},
json: {
name: 'this is the root user topic'
}
});
asserts.assert(root_user_topic);
} catch (error) {
const reason: string = (error as Error).cause as string ?? (error as Error).toString();
asserts.fail(reason);
}
const regular_user_info = await get_new_user(client, {}, root_user_info);
try { try {
const _permission_denied_topic = await client.fetch('/topics', { const _permission_denied_topic = await client.fetch('/topics', {
method: 'POST', method: 'POST',
headers: { headers: {
'x-session_id': info.session.id, 'x-session_id': regular_user_info.session.id,
'x-totp': await generateTotp(info.session.secret) 'x-totp': await generateTotp(regular_user_info.session.secret)
}, },
json: { json: {
name: 'this should not be allowed' name: 'this should not be allowed'
@ -41,14 +61,14 @@ Deno.test({
asserts.assertEquals((error as Error).cause, 'permission_denied'); asserts.assertEquals((error as Error).cause, 'permission_denied');
} }
await set_user_permissions(client, info.user, info.session, [...info.user.permissions, 'topics.create']); await set_user_permissions(client, regular_user_info.user, regular_user_info.session, [...regular_user_info.user.permissions, 'topics.create']);
try { try {
const _too_long_name_topic = await client.fetch('/topics', { const _too_long_name_topic = await client.fetch('/topics', {
method: 'POST', method: 'POST',
headers: { headers: {
'x-session_id': info.session.id, 'x-session_id': regular_user_info.session.id,
'x-totp': await generateTotp(info.session.secret) 'x-totp': await generateTotp(regular_user_info.session.secret)
}, },
json: { json: {
name: 'X'.repeat(1024) name: 'X'.repeat(1024)
@ -63,8 +83,8 @@ Deno.test({
const new_topic = await client.fetch('/topics', { const new_topic = await client.fetch('/topics', {
method: 'POST', method: 'POST',
headers: { headers: {
'x-session_id': info.session.id, 'x-session_id': regular_user_info.session.id,
'x-totp': await generateTotp(info.session.secret) 'x-totp': await generateTotp(regular_user_info.session.secret)
}, },
json: { json: {
name: 'test topic' name: 'test topic'
@ -73,7 +93,8 @@ Deno.test({
asserts.assert(new_topic); asserts.assert(new_topic);
await delete_user(client, info); await delete_user(client, regular_user_info);
await delete_user(client, root_user_info);
} finally { } finally {
clear_topic_events_cache(); clear_topic_events_cache();
if (test_server_info) { if (test_server_info) {

View file

@ -1,8 +1,7 @@
import { api, API_CLIENT } from '../utils/api.ts'; import { api, API_CLIENT } from '../utils/api.ts';
import * as asserts from '@std/assert'; import * as asserts from '@std/assert';
import { USER } from '../models/user.ts';
import { delete_user, EPHEMERAL_SERVER, get_ephemeral_listen_server, get_new_user, random_username, set_user_permissions } from './helpers.ts'; import { delete_user, EPHEMERAL_SERVER, get_ephemeral_listen_server, get_new_user, random_username, set_user_permissions } from './helpers.ts';
import { Cookie, getSetCookies } from '@std/http/cookie'; import { Cookie } from '@std/http/cookie';
import { generateTotp } from '../utils/totp.ts'; import { generateTotp } from '../utils/totp.ts';
import * as fs from '@std/fs'; import * as fs from '@std/fs';
import * as path from '@std/path'; import * as path from '@std/path';
@ -136,55 +135,11 @@ Deno.test({
port: test_server_info.port port: test_server_info.port
}); });
const username = random_username(); const root_user_info = await get_new_user(client);
const password = 'password'; asserts.assert(root_user_info);
const user_creation_response: Record<string, any> = await client.fetch('/users', { const regular_user_info = await get_new_user(client, {}, root_user_info);
method: 'POST', asserts.assert(regular_user_info);
json: {
username,
password
}
});
asserts.assert(user_creation_response?.user);
asserts.assert(user_creation_response?.session);
let cookies: Cookie[] = [];
const auth_response: any = await client.fetch('/auth', {
method: 'POST',
json: {
username,
password: 'password'
},
done: (response) => {
cookies = getSetCookies(response.headers);
}
});
const user: USER | undefined = auth_response.user;
asserts.assert(user);
asserts.assert(user.id);
const session: Record<string, any> | undefined = auth_response.session;
asserts.assert(session);
cookies.push({
name: 'totp',
value: await generateTotp(session?.secret ?? ''),
maxAge: 30,
expires: Date.now() + 30_000,
path: '/'
});
const headers_for_upload_request = new Headers();
for (const cookie of cookies) {
headers_for_upload_request.append(`x-${cookie.name}`, cookie.value);
}
headers_for_upload_request.append(
'cookie',
cookies.map((cookie) => `${cookie.name}=${cookie.value}`).join('; ')
);
const upload_body = new FormData(); const upload_body = new FormData();
upload_body.append( upload_body.append(
@ -196,7 +151,10 @@ Deno.test({
`http://${test_server_info.hostname}:${test_server_info.port}/files/test_uploading_to_root_dir.txt`, `http://${test_server_info.hostname}:${test_server_info.port}/files/test_uploading_to_root_dir.txt`,
{ {
method: 'PUT', method: 'PUT',
headers: headers_for_upload_request, headers: {
'x-session_id': regular_user_info.session.id,
'x-totp': await generateTotp(regular_user_info.session.secret)
},
body: upload_body body: upload_body
} }
); );
@ -204,13 +162,16 @@ Deno.test({
asserts.assert(!disallowed_upload_response.ok); asserts.assert(!disallowed_upload_response.ok);
await disallowed_upload_response.text(); await disallowed_upload_response.text();
await set_user_permissions(client, user, session, [...user.permissions, 'files.write.all']); await set_user_permissions(client, regular_user_info.user, regular_user_info.session, [...regular_user_info.user.permissions, 'files.write.all']);
const allowed_upload_response = await fetch( const allowed_upload_response = await fetch(
`http://${test_server_info.hostname}:${test_server_info.port}/files/test_uploading_to_root_dir.txt`, `http://${test_server_info.hostname}:${test_server_info.port}/files/test_uploading_to_root_dir.txt`,
{ {
method: 'PUT', method: 'PUT',
headers: headers_for_upload_request, headers: {
'x-session_id': regular_user_info.session.id,
'x-totp': await generateTotp(regular_user_info.session.secret)
},
body: upload_body body: upload_body
} }
); );

View file

@ -7,9 +7,10 @@ import { decodeBase32 } from '@std/encoding';
* *
* @ignore * @ignore
*/ */
export function counterToBuffer(counter: number): DataView { export function counterToBuffer(counter: number): ArrayBuffer {
const buffer = new DataView(new ArrayBuffer(8)); const buffer = new ArrayBuffer(8);
buffer.setBigUint64(0, BigInt(counter), false); const view = new DataView(buffer);
view.setBigUint64(0, BigInt(counter), false);
return buffer; return buffer;
} }
@ -23,7 +24,7 @@ export async function generateHmacSha1(
): Promise<Uint8Array> { ): Promise<Uint8Array> {
const importedKey = await crypto.subtle.importKey( const importedKey = await crypto.subtle.importKey(
'raw', 'raw',
key, new Uint8Array(key),
{ name: 'HMAC', hash: 'SHA-1' }, { name: 'HMAC', hash: 'SHA-1' },
false, false,
['sign'] ['sign']