2022-08-25 19:23:44 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
|
|
|
"fmt"
|
2022-08-28 16:37:43 +00:00
|
|
|
|
2022-08-25 19:23:44 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
_ "github.com/mattn/go-sqlite3"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Init database
|
2022-08-28 16:37:43 +00:00
|
|
|
func init_limit_db() *sql.DB {
|
|
|
|
db, err := sql.Open("sqlite3", *DBPath)
|
2022-08-25 19:23:44 +00:00
|
|
|
if err != nil {
|
2022-08-28 16:37:43 +00:00
|
|
|
ErrorLogger.Println("Open database")
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
2022-09-01 11:31:27 +00:00
|
|
|
|
|
|
|
cmd1 := `CREATE TABLE IF NOT EXISTS Limits (id INTEGER PRIMARY KEY AUTOINCREMENT, acct TEXT, ticket INTEGER, time TEXT)`
|
|
|
|
cmd2 := `CREATE TABLE IF NOT EXISTS MsgHashs (message_hash TEXT)`
|
|
|
|
|
|
|
|
stat1, err := db.Prepare(cmd1)
|
|
|
|
if err != nil {
|
|
|
|
ErrorLogger.Println("Create database")
|
|
|
|
}
|
|
|
|
stat1.Exec()
|
|
|
|
|
|
|
|
stat2, err := db.Prepare(cmd2)
|
2022-08-25 19:23:44 +00:00
|
|
|
if err != nil {
|
2022-08-28 16:37:43 +00:00
|
|
|
ErrorLogger.Println("Create database")
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
2022-09-01 11:31:27 +00:00
|
|
|
stat2.Exec()
|
2022-08-25 19:23:44 +00:00
|
|
|
|
|
|
|
return db
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add account to database
|
2022-09-01 11:31:27 +00:00
|
|
|
func add_to_db(acct string) {
|
2022-08-28 16:37:43 +00:00
|
|
|
db := init_limit_db()
|
2022-08-25 19:23:44 +00:00
|
|
|
cmd := `INSERT INTO Limits (acct, ticket) VALUES (?, ?)`
|
|
|
|
stat, err := db.Prepare(cmd)
|
|
|
|
if err != nil {
|
2022-08-28 16:37:43 +00:00
|
|
|
ErrorLogger.Println("Add account to databse")
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
2022-09-01 11:31:27 +00:00
|
|
|
stat.Exec(acct, Conf.Max_toots)
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
|
|
|
|
2022-09-01 11:31:27 +00:00
|
|
|
// Save message hash
|
|
|
|
func save_msg_hash(hash string) {
|
2022-08-28 16:37:43 +00:00
|
|
|
db := init_limit_db()
|
2022-08-25 19:23:44 +00:00
|
|
|
|
2022-09-01 11:31:27 +00:00
|
|
|
cmd1 := `SELECT COUNT(*) FROM MsgHashs`
|
|
|
|
cmd2 := `DELETE FROM MsgHashs WHERE ROWID IN (SELECT ROWID FROM MsgHashs LIMIT 1)`
|
|
|
|
cmd3 := `INSERT INTO MsgHashs (message_hash) VALUES (?)`
|
|
|
|
|
|
|
|
var rows int
|
|
|
|
|
|
|
|
db.QueryRow(cmd1).Scan(&rows)
|
|
|
|
|
|
|
|
if rows >= Conf.Duplicate_buf {
|
|
|
|
superfluous := rows - Conf.Duplicate_buf
|
|
|
|
|
|
|
|
for i := 0; i <= superfluous; i++ {
|
|
|
|
stat2, err := db.Prepare(cmd2)
|
|
|
|
if err != nil {
|
|
|
|
ErrorLogger.Println("Delete message hash from database")
|
|
|
|
}
|
|
|
|
stat2.Exec()
|
|
|
|
}
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
|
|
|
|
2022-09-01 11:31:27 +00:00
|
|
|
stat1, err := db.Prepare(cmd3)
|
2022-08-25 19:23:44 +00:00
|
|
|
if err != nil {
|
2022-09-01 11:31:27 +00:00
|
|
|
ErrorLogger.Println("Add message hash to database")
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
2022-09-01 11:31:27 +00:00
|
|
|
stat1.Exec(hash)
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check followed once
|
2022-08-28 16:37:43 +00:00
|
|
|
func followed(acct string) bool {
|
|
|
|
db := init_limit_db()
|
2022-08-25 19:23:44 +00:00
|
|
|
cmd := `SELECT acct FROM Limits WHERE acct = ?`
|
|
|
|
err := db.QueryRow(cmd, acct).Scan(&acct)
|
|
|
|
if err != nil {
|
|
|
|
if err != sql.ErrNoRows {
|
2022-09-01 11:31:27 +00:00
|
|
|
InfoLogger.Println("Check followed")
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2022-09-01 11:31:27 +00:00
|
|
|
// Check message hash
|
|
|
|
func check_msg_hash(hash string) bool {
|
|
|
|
db := init_limit_db()
|
|
|
|
cmd := `SELECT message_hash FROM MsgHashs WHERE message_hash = ?`
|
|
|
|
err := db.QueryRow(cmd, hash).Scan(&hash)
|
|
|
|
if err != nil {
|
|
|
|
if err != sql.ErrNoRows {
|
|
|
|
InfoLogger.Println("Check message hash in database")
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
// Take ticket for tooting
|
|
|
|
func take_ticket(acct string) {
|
|
|
|
db := init_limit_db()
|
|
|
|
cmd1 := `SELECT ticket FROM Limits WHERE acct = ?`
|
|
|
|
cmd2 := `UPDATE Limits SET ticket = ?, time = ? WHERE acct = ?`
|
|
|
|
|
|
|
|
var ticket uint16
|
|
|
|
db.QueryRow(cmd1, acct).Scan(&ticket)
|
|
|
|
if ticket > 0 {
|
|
|
|
ticket = ticket - 1
|
|
|
|
}
|
|
|
|
|
|
|
|
stat, err := db.Prepare(cmd2)
|
|
|
|
if err != nil {
|
|
|
|
ErrorLogger.Println("Take ticket")
|
|
|
|
}
|
|
|
|
|
|
|
|
now := time.Now()
|
|
|
|
last_toot_at := time.Date(now.Year(), now.Month(), now.Day(), now.Hour(), now.Minute(), now.Second(), 0, time.Local).Format("2006/01/02 15:04:05 MST")
|
|
|
|
|
|
|
|
stat.Exec(ticket, last_toot_at, acct)
|
|
|
|
}
|
|
|
|
|
2022-08-25 19:23:44 +00:00
|
|
|
// Check ticket availability
|
2022-09-01 11:31:27 +00:00
|
|
|
func check_ticket(acct string) uint16 {
|
2022-08-28 16:37:43 +00:00
|
|
|
db := init_limit_db()
|
2022-08-25 19:23:44 +00:00
|
|
|
cmd1 := `SELECT ticket FROM Limits WHERE acct = ?`
|
|
|
|
cmd2 := `SELECT time FROM Limits WHERE acct = ?`
|
|
|
|
|
|
|
|
var tickets uint16
|
|
|
|
var lastS string
|
|
|
|
|
|
|
|
db.QueryRow(cmd1, acct).Scan(&tickets)
|
|
|
|
db.QueryRow(cmd2, acct).Scan(&lastS)
|
|
|
|
|
|
|
|
lastT, _ := time.Parse("2006/01/02 15:04:05 MST", lastS)
|
|
|
|
|
|
|
|
since := time.Since(lastT)
|
2022-09-01 11:31:27 +00:00
|
|
|
limit := fmt.Sprintf("%dh", Conf.Toots_interval)
|
2022-08-25 19:23:44 +00:00
|
|
|
interval, _ := time.ParseDuration(limit)
|
|
|
|
|
|
|
|
if since >= interval {
|
|
|
|
cmd := `UPDATE Limits SET ticket = ? WHERE acct = ?`
|
|
|
|
stat, err := db.Prepare(cmd)
|
|
|
|
if err != nil {
|
2022-08-28 16:37:43 +00:00
|
|
|
ErrorLogger.Println("Check ticket availability")
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
2022-09-01 11:31:27 +00:00
|
|
|
stat.Exec(Conf.Max_toots, acct)
|
2022-08-25 19:23:44 +00:00
|
|
|
|
2022-09-01 11:31:27 +00:00
|
|
|
return Conf.Max_toots
|
2022-08-25 19:23:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return tickets
|
|
|
|
}
|