2023-01-13 05:40:33 +01:00
|
|
|
import {
|
|
|
|
PrimaryColumn,
|
|
|
|
Entity,
|
|
|
|
JoinColumn,
|
|
|
|
Column,
|
|
|
|
ManyToOne,
|
|
|
|
Index,
|
|
|
|
} from "typeorm";
|
|
|
|
import { User } from "./user.js";
|
|
|
|
import { id } from "../id.js";
|
2019-07-03 13:18:07 +02:00
|
|
|
|
|
|
|
@Entity()
|
|
|
|
export class UserSecurityKey {
|
|
|
|
@PrimaryColumn('varchar', {
|
2021-12-09 15:58:30 +01:00
|
|
|
comment: 'Variable-length id given to navigator.credentials.get()',
|
2019-07-03 13:18:07 +02:00
|
|
|
})
|
|
|
|
public id: string;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column(id())
|
2023-01-13 05:40:33 +01:00
|
|
|
public userId: User["id"];
|
2019-07-03 13:18:07 +02:00
|
|
|
|
|
|
|
@ManyToOne(type => User, {
|
2021-12-09 15:58:30 +01:00
|
|
|
onDelete: 'CASCADE',
|
2019-07-03 13:18:07 +02:00
|
|
|
})
|
|
|
|
@JoinColumn()
|
|
|
|
public user: User | null;
|
|
|
|
|
|
|
|
@Index()
|
|
|
|
@Column('varchar', {
|
|
|
|
comment:
|
2021-12-09 15:58:30 +01:00
|
|
|
'Variable-length public key used to verify attestations (hex-encoded).',
|
2019-07-03 13:18:07 +02:00
|
|
|
})
|
|
|
|
public publicKey: string;
|
|
|
|
|
|
|
|
@Column('timestamp with time zone', {
|
|
|
|
comment:
|
2021-12-09 15:58:30 +01:00
|
|
|
'The date of the last time the UserSecurityKey was successfully validated.',
|
2019-07-03 13:18:07 +02:00
|
|
|
})
|
|
|
|
public lastUsed: Date;
|
|
|
|
|
|
|
|
@Column('varchar', {
|
|
|
|
comment: 'User-defined name for this key',
|
2021-12-09 15:58:30 +01:00
|
|
|
length: 30,
|
2019-07-03 13:18:07 +02:00
|
|
|
})
|
|
|
|
public name: string;
|
|
|
|
|
|
|
|
constructor(data: Partial<UserSecurityKey>) {
|
|
|
|
if (data == null) return;
|
|
|
|
|
|
|
|
for (const [k, v] of Object.entries(data)) {
|
|
|
|
(this as any)[k] = v;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|