123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- // mautrix-whatsapp - A Matrix-WhatsApp puppeting bridge.
- // Copyright (C) 2022 Tulir Asokan
- //
- // 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 (
- "database/sql"
- "fmt"
- "time"
- "github.com/lib/pq"
- _ "github.com/mattn/go-sqlite3"
- log "maunium.net/go/maulogger/v2"
- "go.mau.fi/whatsmeow/store/sqlstore"
- "maunium.net/go/mautrix-whatsapp/config"
- "maunium.net/go/mautrix-whatsapp/database/upgrades"
- )
- func init() {
- sqlstore.PostgresArrayWrapper = pq.Array
- }
- type Database struct {
- *sql.DB
- log log.Logger
- dialect string
- User *UserQuery
- Portal *PortalQuery
- Puppet *PuppetQuery
- Message *MessageQuery
- DisappearingMessage *DisappearingMessageQuery
- }
- func New(cfg config.DatabaseConfig, baseLog log.Logger) (*Database, error) {
- conn, err := sql.Open(cfg.Type, cfg.URI)
- if err != nil {
- return nil, err
- }
- db := &Database{
- DB: conn,
- log: baseLog.Sub("Database"),
- dialect: cfg.Type,
- }
- db.User = &UserQuery{
- db: db,
- log: db.log.Sub("User"),
- }
- db.Portal = &PortalQuery{
- db: db,
- log: db.log.Sub("Portal"),
- }
- db.Puppet = &PuppetQuery{
- db: db,
- log: db.log.Sub("Puppet"),
- }
- db.Message = &MessageQuery{
- db: db,
- log: db.log.Sub("Message"),
- }
- db.DisappearingMessage = &DisappearingMessageQuery{
- db: db,
- log: db.log.Sub("DisappearingMessage"),
- }
- db.SetMaxOpenConns(cfg.MaxOpenConns)
- db.SetMaxIdleConns(cfg.MaxIdleConns)
- if len(cfg.ConnMaxIdleTime) > 0 {
- maxIdleTimeDuration, err := time.ParseDuration(cfg.ConnMaxIdleTime)
- if err != nil {
- return nil, fmt.Errorf("failed to parse max_conn_idle_time: %w", err)
- }
- db.SetConnMaxIdleTime(maxIdleTimeDuration)
- }
- if len(cfg.ConnMaxLifetime) > 0 {
- maxLifetimeDuration, err := time.ParseDuration(cfg.ConnMaxLifetime)
- if err != nil {
- return nil, fmt.Errorf("failed to parse max_conn_idle_time: %w", err)
- }
- db.SetConnMaxLifetime(maxLifetimeDuration)
- }
- return db, nil
- }
- func (db *Database) Init() error {
- return upgrades.Run(db.log.Sub("Upgrade"), db.dialect, db.DB)
- }
- type Scannable interface {
- Scan(...interface{}) error
- }
|