-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstructure.sql
More file actions
565 lines (401 loc) · 13.9 KB
/
structure.sql
File metadata and controls
565 lines (401 loc) · 13.9 KB
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
--
-- PostgreSQL database dump
--
-- Dumped from database version 14.6 (Homebrew)
-- Dumped by pg_dump version 15.1
SET statement_timeout = 0;
SET lock_timeout = 0;
SET idle_in_transaction_session_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SELECT pg_catalog.set_config('search_path', '', false);
SET check_function_bodies = false;
SET xmloption = content;
SET client_min_messages = warning;
SET row_security = off;
--
-- Name: public; Type: SCHEMA; Schema: -; Owner: -
--
-- *not* creating schema, since initdb creates it
--
-- Name: pgcrypto; Type: EXTENSION; Schema: -; Owner: -
--
CREATE EXTENSION IF NOT EXISTS pgcrypto WITH SCHEMA public;
--
-- Name: EXTENSION pgcrypto; Type: COMMENT; Schema: -; Owner: -
--
COMMENT ON EXTENSION pgcrypto IS 'cryptographic functions';
--
-- Name: medias_kind; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE public.medias_kind AS ENUM (
'photo',
'reels'
);
--
-- Name: pgqueue_status; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE public.pgqueue_status AS ENUM (
'new',
'must_retry',
'no_attempts_left',
'cancelled',
'succeeded'
);
--
-- Name: targets_interaction; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE public.targets_interaction AS ENUM (
'none',
'post_description',
'photo_tag'
);
--
-- Name: targets_status; Type: TYPE; Schema: public; Owner: -
--
CREATE TYPE public.targets_status AS ENUM (
'new',
'in_progress',
'failed',
'notified'
);
SET default_table_access_method = heap;
--
-- Name: bot_accounts; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.bot_accounts (
id uuid DEFAULT gen_random_uuid() NOT NULL,
task_id uuid NOT NULL,
username text NOT NULL,
password text NOT NULL,
user_agent text NOT NULL,
device_data jsonb NOT NULL,
session jsonb NOT NULL,
headers jsonb NOT NULL,
res_proxy jsonb,
work_proxy jsonb,
status smallint NOT NULL,
posts_count smallint DEFAULT '-1'::integer NOT NULL,
started_at timestamp without time zone,
created_at timestamp without time zone DEFAULT now() NOT NULL,
updated_at timestamp without time zone,
deleted_at timestamp without time zone,
file_order integer NOT NULL,
inst_id bigint NOT NULL,
CONSTRAINT not_empty_device CHECK (((device_data <> '[]'::jsonb) AND (device_data <> '{}'::jsonb))),
CONSTRAINT not_empty_headers CHECK (((headers <> '[]'::jsonb) AND (headers <> '{}'::jsonb))),
CONSTRAINT not_empty_session CHECK (((session <> '[]'::jsonb) AND (session <> '{}'::jsonb)))
);
--
-- Name: goose_db_version_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.goose_db_version_id_seq
AS integer
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: logs; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.logs (
id uuid DEFAULT gen_random_uuid() NOT NULL,
bot_id uuid NOT NULL,
operation text NOT NULL,
request jsonb NOT NULL,
response jsonb NOT NULL,
response_code integer NOT NULL,
request_time timestamp without time zone NOT NULL,
proxy_url text
);
--
-- Name: medias; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.medias (
kind public.medias_kind NOT NULL,
inst_id text NOT NULL,
bot_id uuid NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
pk bigint NOT NULL,
is_edited boolean DEFAULT false NOT NULL
);
--
-- Name: pgqueue; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.pgqueue (
id bigint NOT NULL,
kind smallint NOT NULL,
payload bytea NOT NULL,
external_key text,
status public.pgqueue_status DEFAULT 'new'::public.pgqueue_status NOT NULL,
messages text[] DEFAULT ARRAY[]::text[] NOT NULL,
attempts_left smallint NOT NULL,
attempts_elapsed smallint DEFAULT 0 NOT NULL,
delayed_till timestamp with time zone NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL
)
WITH (fillfactor='80');
--
-- Name: pgqueue_id_seq; Type: SEQUENCE; Schema: public; Owner: -
--
CREATE SEQUENCE public.pgqueue_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
--
-- Name: pgqueue_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
--
ALTER SEQUENCE public.pgqueue_id_seq OWNED BY public.pgqueue.id;
--
-- Name: proxies; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.proxies (
id uuid DEFAULT gen_random_uuid() NOT NULL,
task_id uuid NOT NULL,
assigned_to uuid,
host text NOT NULL,
port integer NOT NULL,
login text NOT NULL,
pass text NOT NULL,
type smallint NOT NULL
);
--
-- Name: python_bots; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.python_bots (
session_id text NOT NULL,
settings jsonb NOT NULL
);
--
-- Name: target_users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.target_users (
id uuid DEFAULT gen_random_uuid() NOT NULL,
task_id uuid NOT NULL,
username text NOT NULL,
user_id bigint NOT NULL,
created_at timestamp without time zone DEFAULT now() NOT NULL,
updated_at timestamp without time zone,
status public.targets_status DEFAULT 'new'::public.targets_status NOT NULL,
interaction_type public.targets_interaction DEFAULT 'none'::public.targets_interaction NOT NULL,
media_fk bigint
);
--
-- Name: target_users_to_tasks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.target_users_to_tasks (
target_id uuid NOT NULL,
task_id uuid NOT NULL,
notified_at timestamp without time zone
);
--
-- Name: tasks; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.tasks (
id uuid DEFAULT gen_random_uuid() NOT NULL,
manager_id uuid NOT NULL,
text_template text NOT NULL,
landing_accounts text[] NOT NULL,
account_profile_images bytea[],
account_names text[],
account_urls text[],
images bytea[] NOT NULL,
status smallint NOT NULL,
title text NOT NULL,
bots_filename text,
cheap_proxies_filename text,
res_proxies_filename text,
targets_filename text,
created_at timestamp with time zone NOT NULL,
started_at timestamp with time zone,
stopped_at timestamp with time zone,
updated_at timestamp with time zone,
deleted_at timestamp with time zone,
account_last_names text[],
follow_targets boolean DEFAULT false NOT NULL,
need_photo_tags boolean DEFAULT false NOT NULL,
per_post_sleep_seconds integer DEFAULT 0 NOT NULL,
photo_tags_delay_seconds integer DEFAULT 0 NOT NULL,
type smallint DEFAULT 0 NOT NULL,
video_filename text,
posts_per_bot smallint DEFAULT 0 NOT NULL,
targets_per_post smallint DEFAULT 0 NOT NULL,
photo_tags_posts_per_bot smallint DEFAULT 0 NOT NULL,
photo_targets_per_post smallint DEFAULT 0 NOT NULL,
fixed_tag text,
fixed_photo_tag bigint
);
--
-- Name: users; Type: TABLE; Schema: public; Owner: -
--
CREATE TABLE public.users (
id uuid DEFAULT gen_random_uuid() NOT NULL,
login text NOT NULL,
password_hash text NOT NULL,
role smallint NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
updated_at timestamp with time zone DEFAULT now() NOT NULL,
deleted_at timestamp with time zone,
CONSTRAINT valid_role CHECK ((role = ANY (ARRAY[0, 1])))
);
--
-- Name: pgqueue id; Type: DEFAULT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.pgqueue ALTER COLUMN id SET DEFAULT nextval('public.pgqueue_id_seq'::regclass);
--
-- Name: bot_accounts bot_accounts_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.bot_accounts
ADD CONSTRAINT bot_accounts_pkey PRIMARY KEY (id);
--
-- Name: logs logs_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.logs
ADD CONSTRAINT logs_pkey PRIMARY KEY (id);
--
-- Name: medias medias_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.medias
ADD CONSTRAINT medias_pkey PRIMARY KEY (pk);
--
-- Name: pgqueue pgqueue_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.pgqueue
ADD CONSTRAINT pgqueue_pkey PRIMARY KEY (id);
--
-- Name: proxies proxies_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.proxies
ADD CONSTRAINT proxies_pkey PRIMARY KEY (id);
--
-- Name: python_bots python_bots_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.python_bots
ADD CONSTRAINT python_bots_pkey PRIMARY KEY (session_id);
--
-- Name: target_users target_users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.target_users
ADD CONSTRAINT target_users_pkey PRIMARY KEY (id);
--
-- Name: tasks tasks_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tasks
ADD CONSTRAINT tasks_pkey PRIMARY KEY (id);
--
-- Name: bot_accounts uniq_file_order; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.bot_accounts
ADD CONSTRAINT uniq_file_order UNIQUE (task_id, file_order);
--
-- Name: users users_login_key; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_login_key UNIQUE (login);
--
-- Name: users users_pkey; Type: CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.users
ADD CONSTRAINT users_pkey PRIMARY KEY (id);
--
-- Name: bot_accounts_uniq_username_taskid_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX bot_accounts_uniq_username_taskid_idx ON public.bot_accounts USING btree (task_id, username);
--
-- Name: bots_task_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX bots_task_id_idx ON public.bot_accounts USING btree (task_id);
--
-- Name: medias_bot_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX medias_bot_id_idx ON public.medias USING btree (bot_id);
--
-- Name: pgqueue_broken_tasks_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX pgqueue_broken_tasks_idx ON public.pgqueue USING btree (kind, created_at) WHERE (status = 'no_attempts_left'::public.pgqueue_status);
--
-- Name: pgqueue_idempotency_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX pgqueue_idempotency_idx ON public.pgqueue USING btree (kind, external_key);
--
-- Name: pgqueue_open_tasks_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX pgqueue_open_tasks_idx ON public.pgqueue USING btree (kind, delayed_till) WHERE (status = ANY (ARRAY['new'::public.pgqueue_status, 'must_retry'::public.pgqueue_status]));
--
-- Name: pgqueue_terminal_tasks_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX pgqueue_terminal_tasks_idx ON public.pgqueue USING btree (kind, updated_at) WHERE (status = ANY (ARRAY['cancelled'::public.pgqueue_status, 'succeeded'::public.pgqueue_status]));
--
-- Name: target_users_media_fk_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX target_users_media_fk_idx ON public.target_users USING btree (media_fk);
--
-- Name: target_users_uniq_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE UNIQUE INDEX target_users_uniq_idx ON public.target_users USING btree (task_id, username, user_id);
--
-- Name: targets_task_with_status_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX targets_task_with_status_idx ON public.target_users USING btree (task_id, status);
--
-- Name: targets_user_id_idx; Type: INDEX; Schema: public; Owner: -
--
CREATE INDEX targets_user_id_idx ON public.target_users USING btree (task_id, user_id);
--
-- Name: bot_accounts bot_accounts_task_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.bot_accounts
ADD CONSTRAINT bot_accounts_task_id_fkey FOREIGN KEY (task_id) REFERENCES public.tasks(id);
--
-- Name: logs logs_bot_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.logs
ADD CONSTRAINT logs_bot_id_fkey FOREIGN KEY (bot_id) REFERENCES public.bot_accounts(id);
--
-- Name: medias medias_bot_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.medias
ADD CONSTRAINT medias_bot_id_fkey FOREIGN KEY (bot_id) REFERENCES public.bot_accounts(id);
--
-- Name: proxies proxies_assigned_to_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.proxies
ADD CONSTRAINT proxies_assigned_to_fkey FOREIGN KEY (assigned_to) REFERENCES public.bot_accounts(id);
--
-- Name: proxies proxies_task_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.proxies
ADD CONSTRAINT proxies_task_id_fkey FOREIGN KEY (task_id) REFERENCES public.tasks(id);
--
-- Name: target_users target_users_media_fk_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.target_users
ADD CONSTRAINT target_users_media_fk_fkey FOREIGN KEY (media_fk) REFERENCES public.medias(pk);
--
-- Name: target_users target_users_task_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.target_users
ADD CONSTRAINT target_users_task_id_fkey FOREIGN KEY (task_id) REFERENCES public.tasks(id);
--
-- Name: target_users_to_tasks target_users_to_tasks_target_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.target_users_to_tasks
ADD CONSTRAINT target_users_to_tasks_target_id_fkey FOREIGN KEY (target_id) REFERENCES public.target_users(id);
--
-- Name: target_users_to_tasks target_users_to_tasks_task_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.target_users_to_tasks
ADD CONSTRAINT target_users_to_tasks_task_id_fkey FOREIGN KEY (task_id) REFERENCES public.tasks(id);
--
-- Name: tasks tasks_manager_id_fkey; Type: FK CONSTRAINT; Schema: public; Owner: -
--
ALTER TABLE ONLY public.tasks
ADD CONSTRAINT tasks_manager_id_fkey FOREIGN KEY (manager_id) REFERENCES public.users(id);
--
-- PostgreSQL database dump complete
--