Page MenuHomeSealhub

context.ts
No OneTemporary

context.ts

import App from "./app/app";
import { CollectionItem } from "./chip-types/collection-item";
export default class Context {
timestamp: number;
ip: string | null;
user_id: string | null;
user_data: null | Promise<CollectionItem> = null;
loading_user_data: boolean;
session_id: string | null;
is_super = false;
original_context: Context | null;
constructor(
public app: App,
timestamp: number = Date.now(),
ip?: string | null,
user_id?: string | null,
session_id?: string | null
) {
this.original_context = this;
this.loading_user_data = false;
this.timestamp = timestamp;
this.ip = ip || null;
this.user_id = user_id || null;
this.session_id = session_id || null;
}
async getUserData(app: App): Promise<CollectionItem | null> {
if (this.user_data) {
return this.user_data;
}
if (this.user_id === null) {
return null;
}
const c = new SuperContext(this.app);
this.user_data = app.collections.users.getByID(c, this.user_id);
return this.user_data;
}
toDBEntry() {
return {
timestamp: this.timestamp,
ip: this.ip,
user_id: this.user_id,
session_id: this.session_id,
};
}
}
export class SuperContext extends Context {
is_super = true;
}

File Metadata

Mime Type
text/x-java
Expires
Mon, Dec 23, 14:03 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556942
Default Alt Text
context.ts (1 KB)

Event Timeline