1
0
Fork 0
mirror of https://github.com/Lynnesbian/FediBooks/ synced 2024-11-25 08:38:59 +00:00

save bot's instance type in db

This commit is contained in:
Lynne Megido 2019-09-17 18:24:23 +10:00
parent 5d35519818
commit fc8be5db40
2 changed files with 2 additions and 1 deletions

View file

@ -22,6 +22,7 @@ CREATE TABLE IF NOT EXISTS `bots` (
`push_private_key` BINARY(128) NOT NULL, `push_private_key` BINARY(128) NOT NULL,
`push_public_key` BINARY(128) NOT NULL, `push_public_key` BINARY(128) NOT NULL,
`push_secret` BINARY(16), `push_secret` BINARY(16),
`instance_type` VARCHAR(64) NOT NULL DEFAULT 'Mastodon',
`enabled` BOOLEAN DEFAULT 0, `enabled` BOOLEAN DEFAULT 0,
`replies_enabled` BOOLEAN DEFAULT 1, `replies_enabled` BOOLEAN DEFAULT 1,
`post_frequency` SMALLINT UNSIGNED DEFAULT 30, `post_frequency` SMALLINT UNSIGNED DEFAULT 30,

View file

@ -483,7 +483,7 @@ def bot_create():
secret = privated['auth'] secret = privated['auth']
client.push_subscription_set("{}/push/{}".format(cfg['base_uri'], handle), publicd, mention_events = True) client.push_subscription_set("{}/push/{}".format(cfg['base_uri'], handle), publicd, mention_events = True)
c.execute("INSERT INTO `bots` (handle, user_id, credentials_id, push_public_key, push_private_key, push_secret) VALUES (%s, %s, %s, %s, %s, %s)", (handle, session['user_id'], credentials_id, public, private, secret)) c.execute("INSERT INTO `bots` (handle, user_id, credentials_id, push_public_key, push_private_key, push_secret, instance_type) VALUES (%s, %s, %s, %s, %s, %s)", (handle, session['user_id'], credentials_id, public, private, secret, session['instance_type']))
mysql.connection.commit() mysql.connection.commit()
c.close() c.close()