Add files via upload

This commit is contained in:
Harold Finch
2023-04-10 07:18:32 +02:00
committed by GitHub
parent 06ddbf431f
commit 65875d8fef
100 changed files with 84692 additions and 42 deletions

116
SQL/iredadmin.pgsql Normal file
View File

@@ -0,0 +1,116 @@
-- CREATE DATABASE iredadmin WITH TEMPLATE template0 ENCODING 'UTF8';
-- CREATE ROLE iredadmin WITH LOGIN ENCRYPTED PASSWORD 'plain_password' NOSUPERUSER NOCREATEDB NOCREATEROLE;
-- \c iredadmin;
-- Session table required by webpy session module.
CREATE TABLE sessions (
session_id CHAR(128) UNIQUE NOT NULL,
atime TIMESTAMP WITHOUT TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
data TEXT
);
-- Store all admin operations.
CREATE TABLE log (
id SERIAL PRIMARY KEY,
admin VARCHAR(255) NOT NULL,
timestamp TIMESTAMP WITHOUT TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
ip VARCHAR(40) NOT NULL,
domain VARCHAR(255) NOT NULL DEFAULT '',
username VARCHAR(255) NOT NULL DEFAULT '',
event VARCHAR(20) NOT NULL DEFAULT '',
loglevel VARCHAR(10) NOT NULL DEFAULT 'info',
msg TEXT
);
CREATE INDEX idx_log_timestamp ON log (timestamp);
CREATE INDEX idx_log_ip ON log (ip);
CREATE INDEX idx_log_domain ON log (domain);
CREATE INDEX idx_log_username ON log (username);
CREATE INDEX idx_log_event ON log (event);
CREATE INDEX idx_log_loglevel ON log (loglevel);
CREATE TABLE updatelog (
date DATE NOT NULL,
PRIMARY KEY (date)
);
-- GRANT INSERT,UPDATE,DELETE,SELECT on sessions,log,updatelog to iredadmin;
-- GRANT UPDATE,USAGE,SELECT ON log_id_seq TO iredadmin;
-- Key-value store.
CREATE TABLE tracking (
id SERIAL PRIMARY KEY,
k VARCHAR(255) NOT NULL,
v TEXT,
time TIMESTAMP WITHOUT TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP
);
CREATE UNIQUE INDEX idx_tracking_k ON tracking (k);
-- Store <-> domain <-> verify_code used to verify domain ownership
CREATE TABLE domain_ownership (
id SERIAL PRIMARY KEY,
-- the admin who added this domain with iRedAdmin. Required if domain was
-- added by a normal domain admin.
admin VARCHAR(255) NOT NULL DEFAULT '',
-- the domain we're going to verify. If we're going to verifying an alias
-- domain, it stores primary domain.
domain VARCHAR(255) NOT NULL DEFAULT '',
-- if we're verifying an alias domain:
-- - store primary domain in `domain`
-- - store alias domain in `alias_domain`
alias_domain VARCHAR(255) NOT NULL DEFAULT '',
-- a unique string which domain admin should put in TXT type DNS record
-- or as a web file on web server
verify_code VARCHAR(100) NOT NULL DEFAULT '',
-- store the verify status
verified INT2 NOT NULL DEFAULT 0,
-- store error message if any returned while verifying, so that domain
-- admin can fix it
message TEXT,
-- the last time we verify it. If it's verified, this record will be
-- removed in 1 month.
last_verify TIMESTAMP NULL DEFAULT NULL,
-- expire time. cron job `tools/cleanup_db.py` will remove verified or
-- unverified domains regularly. e.g. one month.
-- Note: stores seconds since Unix epoch
expire INT DEFAULT 0
);
CREATE UNIQUE INDEX idx_ownership_1 ON domain_ownership (admin, domain, alias_domain);
CREATE INDEX idx_ownership_2 ON domain_ownership (verified);
-- mailing list subscription/unsubscription confirms.
CREATE TABLE newsletter_subunsub_confirms (
id SERIAL PRIMARY KEY,
-- email of mailing list
mail VARCHAR(255) NOT NULL DEFAULT '',
-- unique server wide id
mlid VARCHAR(255) NOT NULL DEFAULT '',
-- email of subscriber
subscriber VARCHAR(255) NOT NULL DEFAULT '',
-- kinds of 'subscribe', 'unsubscribe'
kind VARCHAR(20) NOT NULL DEFAULT '',
-- unique server-wide id as confirm token
token VARCHAR(255) NOT NULL DEFAULT '',
expired INT DEFAULT 0
);
CREATE UNIQUE INDEX idx_subunsub_confirms_1 ON newsletter_subunsub_confirms (mlid, subscriber, kind);
CREATE INDEX idx_subunsub_confirms_2 ON newsletter_subunsub_confirms (mail);
CREATE INDEX idx_subunsub_confirms_3 ON newsletter_subunsub_confirms (token);
CREATE INDEX idx_subunsub_confirms_4 ON newsletter_subunsub_confirms (expired);
-- Key-value store for settings.
-- `k` is the (unique) parameter name.
-- `v` must be a valid JSON string with only one key: "value". Its value will
-- be converted to Python native format (string, list, integer).
-- Samples:
-- {"value": 20}
-- {"value": "a-string"}
-- {"value": [v1, v2, v3, ...]}
-- {"value": true}
CREATE TABLE settings (
id SERIAL PRIMARY KEY,
account VARCHAR(255) NOT NULL DEFAULT 'global',
k VARCHAR(255) NOT NULL,
v TEXT
);
CREATE UNIQUE INDEX idx_settings_account_k ON settings (account, k);