summary refs log tree commit diff
path: root/src/util/entities/UserSettings.ts
blob: 5cd63dbc2b1f504c93dd93b999f2768dd809e1d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
	Spacebar: A FOSS re-implementation and extension of the Discord.com backend.
	Copyright (C) 2023 Fosscord and Fosscord Contributors
	
	This program 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.
	
	This program 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 this program.  If not, see <https://www.gnu.org/licenses/>.
*/

import { Column, Entity, PrimaryGeneratedColumn } from "typeorm";
import { BaseClassWithoutId } from "./BaseClass";

@Entity("user_settings")
export class UserSettings extends BaseClassWithoutId {
	@PrimaryGeneratedColumn()
	index: string;

	@Column({ nullable: true })
	afk_timeout: number = 3600;

	@Column({ nullable: true })
	allow_accessibility_detection: boolean = true;

	@Column({ nullable: true })
	animate_emoji: boolean = true;

	@Column({ nullable: true })
	animate_stickers: number = 0;

	@Column({ nullable: true })
	contact_sync_enabled: boolean = false;

	@Column({ nullable: true })
	convert_emoticons: boolean = false;

	@Column({ nullable: true, type: "simple-json" })
	custom_status: CustomStatus | null = null;

	@Column({ nullable: true })
	default_guilds_restricted: boolean = false;

	@Column({ nullable: true })
	detect_platform_accounts: boolean = false;

	@Column({ nullable: true })
	developer_mode: boolean = true;

	@Column({ nullable: true })
	disable_games_tab: boolean = true;

	@Column({ nullable: true })
	enable_tts_command: boolean = false;

	@Column({ nullable: true })
	explicit_content_filter: number = 0;

	@Column({ nullable: true, type: "simple-json" })
	friend_source_flags: FriendSourceFlags = { all: true };

	@Column({ nullable: true })
	gateway_connected: boolean = false;

	@Column({ nullable: true })
	gif_auto_play: boolean = false;

	@Column({ nullable: true, type: "simple-json" })
	guild_folders: GuildFolder[] = []; // every top guild is displayed as a "folder"

	@Column({ nullable: true, type: "simple-json" })
	guild_positions: string[] = []; // guild ids ordered by position

	@Column({ nullable: true })
	inline_attachment_media: boolean = true;

	@Column({ nullable: true })
	inline_embed_media: boolean = true;

	@Column({ nullable: true })
	locale: string = "en-US"; // en_US

	@Column({ nullable: true })
	message_display_compact: boolean = false;

	@Column({ nullable: true })
	native_phone_integration_enabled: boolean = true;

	@Column({ nullable: true })
	render_embeds: boolean = true;

	@Column({ nullable: true })
	render_reactions: boolean = true;

	@Column({ nullable: true, type: "simple-json" })
	restricted_guilds: string[] = [];

	@Column({ nullable: true })
	show_current_game: boolean = true;

	@Column({ nullable: true })
	status: "online" | "offline" | "dnd" | "idle" | "invisible" = "online";

	@Column({ nullable: true })
	stream_notifications_enabled: boolean = false;

	@Column({ nullable: true })
	theme: "dark" | "light" = "dark"; // dark

	@Column({ nullable: true })
	timezone_offset: number = 0; // e.g -60
}

interface CustomStatus {
	emoji_id?: string;
	emoji_name?: string;
	expires_at?: number;
	text?: string;
}

interface GuildFolder {
	color: number;
	guild_ids: string[];
	id: number;
	name: string;
}

interface FriendSourceFlags {
	all: boolean;
}