mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Include https://github.com/mattermost/mattermost-plugin-api into the mono repo Co-authored-by: Jesse Hallam <jesse.hallam@gmail.com> Co-authored-by: Michael Kochell <mjkochell@gmail.com> Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com> Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com> Co-authored-by: Alex Dovenmuehle <alex.dovenmuehle@mattermost.com> Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com> Co-authored-by: Christopher Poile <cpoile@gmail.com> Co-authored-by: İlker Göktuğ Öztürk <ilkergoktugozturk@gmail.com> Co-authored-by: Shota Gvinepadze <wineson@gmail.com> Co-authored-by: Ali Farooq <ali.farooq0@pm.me> Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com> Co-authored-by: Daniel Espino García <larkox@gmail.com> Co-authored-by: Christopher Speller <crspeller@gmail.com> Co-authored-by: Alex Dovenmuehle <adovenmuehle@gmail.com> Co-authored-by: Szymon Gibała <szymongib@gmail.com> Co-authored-by: Lev <1187448+levb@users.noreply.github.com> Co-authored-by: Jason Frerich <jason.frerich@mattermost.com> Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in> Co-authored-by: Artur M. Wolff <artur.m.wolff@gmail.com> Co-authored-by: Madhav Hugar <16546715+madhavhugar@users.noreply.github.com> Co-authored-by: Joe <security.joe@pm.me> Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> Co-authored-by: José Peso <trilopin@users.noreply.github.com>
57 lines
1.6 KiB
Go
57 lines
1.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
// package driver implements a DB driver that can be used by plugins
|
|
// to make SQL queries using RPC. This helps to avoid opening new connections
|
|
// for every plugin, and lets everyone use the central connection
|
|
// pool in the server.
|
|
// The tests for this package are at app/plugin_api_tests/test_db_driver/main.go.
|
|
package driver
|
|
|
|
import (
|
|
"context"
|
|
"database/sql/driver"
|
|
|
|
"github.com/mattermost/mattermost/server/public/plugin"
|
|
)
|
|
|
|
var (
|
|
// Compile-time check to ensure Connector implements the interface.
|
|
_ driver.Connector = &Connector{}
|
|
)
|
|
|
|
// Connector is the DB connector which is used to
|
|
// communicate with the DB API.
|
|
type Connector struct {
|
|
api plugin.Driver
|
|
isMaster bool
|
|
}
|
|
|
|
// NewConnector returns a DB connector that can be used to return a sql.DB object.
|
|
// It takes a plugin.Driver implementation and a boolean flag to indicate whether
|
|
// to connect to a master or replica DB instance.
|
|
func NewConnector(api plugin.Driver, isMaster bool) *Connector {
|
|
return &Connector{api: api, isMaster: isMaster}
|
|
}
|
|
|
|
func (c *Connector) Connect(_ context.Context) (driver.Conn, error) {
|
|
connID, err := c.api.Conn(c.isMaster)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &Conn{id: connID, api: c.api}, nil
|
|
}
|
|
|
|
func (c *Connector) Driver() driver.Driver {
|
|
return &Driver{c: c}
|
|
}
|
|
|
|
// Driver is a DB driver implementation.
|
|
type Driver struct {
|
|
c *Connector
|
|
}
|
|
|
|
func (d Driver) Open(name string) (driver.Conn, error) {
|
|
return d.c.Connect(context.Background())
|
|
}
|