2018-08-16 14:59:18 +02:00
|
|
|
// mautrix-whatsapp - A Matrix-WhatsApp puppeting bridge.
|
2019-01-12 14:54:04 +01:00
|
|
|
// Copyright (C) 2019 Tulir Asokan
|
2018-08-16 14:59:18 +02:00
|
|
|
//
|
|
|
|
// 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/>.
|
|
|
|
|
|
|
|
package database
|
|
|
|
|
|
|
|
import (
|
2018-08-26 21:53:13 +02:00
|
|
|
"database/sql"
|
|
|
|
|
2019-01-11 20:17:31 +01:00
|
|
|
log "maunium.net/go/maulogger/v2"
|
|
|
|
|
2018-08-16 23:11:28 +02:00
|
|
|
"maunium.net/go/mautrix-whatsapp/types"
|
2018-08-16 14:59:18 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type PuppetQuery struct {
|
|
|
|
db *Database
|
2018-08-16 18:20:07 +02:00
|
|
|
log log.Logger
|
2018-08-16 14:59:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (pq *PuppetQuery) New() *Puppet {
|
|
|
|
return &Puppet{
|
|
|
|
db: pq.db,
|
|
|
|
log: pq.log,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-28 23:40:54 +02:00
|
|
|
func (pq *PuppetQuery) GetAll() (puppets []*Puppet) {
|
|
|
|
rows, err := pq.db.Query("SELECT * FROM puppet")
|
2018-08-16 14:59:18 +02:00
|
|
|
if err != nil || rows == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
defer rows.Close()
|
|
|
|
for rows.Next() {
|
|
|
|
puppets = append(puppets, pq.New().Scan(rows))
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-08-28 23:40:54 +02:00
|
|
|
func (pq *PuppetQuery) Get(jid types.WhatsAppID) *Puppet {
|
2019-03-06 16:33:42 +01:00
|
|
|
row := pq.db.QueryRow("SELECT * FROM puppet WHERE jid=$1", jid)
|
2018-08-16 14:59:18 +02:00
|
|
|
if row == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return pq.New().Scan(row)
|
|
|
|
}
|
|
|
|
|
|
|
|
type Puppet struct {
|
|
|
|
db *Database
|
2018-08-16 18:20:07 +02:00
|
|
|
log log.Logger
|
2018-08-16 14:59:18 +02:00
|
|
|
|
2018-08-28 23:40:54 +02:00
|
|
|
JID types.WhatsAppID
|
2018-08-16 14:59:18 +02:00
|
|
|
Avatar string
|
2018-09-01 22:38:03 +02:00
|
|
|
Displayname string
|
|
|
|
NameQuality int8
|
2018-08-16 14:59:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (puppet *Puppet) Scan(row Scannable) *Puppet {
|
2018-08-30 00:10:26 +02:00
|
|
|
var displayname, avatar sql.NullString
|
2018-09-01 23:44:10 +02:00
|
|
|
var quality sql.NullInt64
|
|
|
|
err := row.Scan(&puppet.JID, &avatar, &displayname, &quality)
|
2018-08-16 14:59:18 +02:00
|
|
|
if err != nil {
|
2018-08-18 21:57:08 +02:00
|
|
|
if err != sql.ErrNoRows {
|
2018-08-26 00:55:21 +02:00
|
|
|
puppet.log.Errorln("Database scan failed:", err)
|
2018-08-18 21:57:08 +02:00
|
|
|
}
|
|
|
|
return nil
|
2018-08-16 14:59:18 +02:00
|
|
|
}
|
2018-08-30 00:10:26 +02:00
|
|
|
puppet.Displayname = displayname.String
|
|
|
|
puppet.Avatar = avatar.String
|
2018-09-01 23:44:10 +02:00
|
|
|
puppet.NameQuality = int8(quality.Int64)
|
2018-08-16 14:59:18 +02:00
|
|
|
return puppet
|
|
|
|
}
|
|
|
|
|
2019-01-21 22:55:16 +01:00
|
|
|
func (puppet *Puppet) Insert() {
|
2019-03-06 16:33:42 +01:00
|
|
|
_, err := puppet.db.Exec("INSERT INTO puppet VALUES ($1, $2, $3, $4)",
|
2018-09-01 22:38:03 +02:00
|
|
|
puppet.JID, puppet.Avatar, puppet.Displayname, puppet.NameQuality)
|
2018-08-18 21:57:08 +02:00
|
|
|
if err != nil {
|
2018-09-01 22:38:03 +02:00
|
|
|
puppet.log.Warnfln("Failed to insert %s: %v", puppet.JID, err)
|
2018-08-18 21:57:08 +02:00
|
|
|
}
|
2018-08-16 14:59:18 +02:00
|
|
|
}
|
|
|
|
|
2019-01-21 22:55:16 +01:00
|
|
|
func (puppet *Puppet) Update() {
|
2019-03-06 16:33:42 +01:00
|
|
|
_, err := puppet.db.Exec("UPDATE puppet SET displayname=$1, name_quality=$2, avatar=$3 WHERE jid=$4",
|
2018-09-01 22:38:03 +02:00
|
|
|
puppet.Displayname, puppet.NameQuality, puppet.Avatar, puppet.JID)
|
2018-08-18 21:57:08 +02:00
|
|
|
if err != nil {
|
2018-09-01 22:38:03 +02:00
|
|
|
puppet.log.Warnfln("Failed to update %s->%s: %v", puppet.JID, err)
|
2018-08-18 21:57:08 +02:00
|
|
|
}
|
2018-08-16 14:59:18 +02:00
|
|
|
}
|