/* * Copyright (C) 2026 Fluxer Contributors * * This file is part of Fluxer. * * Fluxer is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Fluxer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Fluxer. If not, see . */ import type {AuthSessionRow} from '~/database/CassandraTypes'; import type {UserID} from '../BrandedTypes'; export class AuthSession { readonly userId: UserID; readonly sessionIdHash: Buffer; readonly createdAt: Date; readonly approximateLastUsedAt: Date; readonly clientIp: string; readonly clientOs: string; readonly clientPlatform: string; readonly clientCountry: string | null; readonly clientLocation: string | null; readonly version: number; constructor(row: AuthSessionRow) { this.userId = row.user_id; this.sessionIdHash = row.session_id_hash; this.createdAt = row.created_at; this.approximateLastUsedAt = row.approx_last_used_at; this.clientIp = row.client_ip; this.clientOs = row.client_os; this.clientPlatform = row.client_platform; this.clientCountry = row.client_country ?? null; this.clientLocation = row.client_location ?? null; this.version = row.version; } toRow(): AuthSessionRow { return { user_id: this.userId, session_id_hash: this.sessionIdHash, created_at: this.createdAt, approx_last_used_at: this.approximateLastUsedAt, client_ip: this.clientIp, client_os: this.clientOs, client_platform: this.clientPlatform, client_country: this.clientCountry, client_location: this.clientLocation, version: this.version, }; } }