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>
117 lines
2.2 KiB
Go
117 lines
2.2 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package driver
|
|
|
|
import (
|
|
"context"
|
|
"database/sql/driver"
|
|
|
|
"github.com/mattermost/mattermost/server/public/plugin"
|
|
)
|
|
|
|
// Conn is a DB driver conn implementation
|
|
// which executes queries using the Plugin DB API.
|
|
type Conn struct {
|
|
id string
|
|
api plugin.Driver
|
|
}
|
|
|
|
// driverConn is a super-interface combining the basic
|
|
// driver.Conn interface with some new additions later.
|
|
type driverConn interface {
|
|
driver.Conn
|
|
driver.ConnBeginTx
|
|
driver.ConnPrepareContext
|
|
driver.ExecerContext
|
|
driver.QueryerContext
|
|
driver.Pinger
|
|
}
|
|
|
|
var (
|
|
// Compile-time check to ensure Conn implements the interface.
|
|
_ driverConn = &Conn{}
|
|
)
|
|
|
|
func (c *Conn) Begin() (tx driver.Tx, err error) {
|
|
txID, err := c.api.Tx(c.id, driver.TxOptions{})
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
t := &wrapperTx{
|
|
id: txID,
|
|
api: c.api,
|
|
}
|
|
return t, nil
|
|
}
|
|
|
|
func (c *Conn) BeginTx(_ context.Context, opts driver.TxOptions) (driver.Tx, error) {
|
|
txID, err := c.api.Tx(c.id, opts)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
t := &wrapperTx{
|
|
id: txID,
|
|
api: c.api,
|
|
}
|
|
return t, nil
|
|
}
|
|
|
|
func (c *Conn) Prepare(q string) (driver.Stmt, error) {
|
|
stID, err := c.api.Stmt(c.id, q)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
st := &wrapperStmt{
|
|
id: stID,
|
|
api: c.api,
|
|
}
|
|
return st, nil
|
|
}
|
|
|
|
func (c *Conn) PrepareContext(_ context.Context, q string) (driver.Stmt, error) {
|
|
stID, err := c.api.Stmt(c.id, q)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
st := &wrapperStmt{
|
|
id: stID,
|
|
api: c.api,
|
|
}
|
|
return st, nil
|
|
}
|
|
|
|
func (c *Conn) ExecContext(_ context.Context, q string, args []driver.NamedValue) (driver.Result, error) {
|
|
resultContainer, err := c.api.ConnExec(c.id, q, args)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
res := &wrapperResult{
|
|
res: resultContainer,
|
|
}
|
|
return res, nil
|
|
}
|
|
|
|
func (c *Conn) QueryContext(_ context.Context, q string, args []driver.NamedValue) (driver.Rows, error) {
|
|
rowsID, err := c.api.ConnQuery(c.id, q, args)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
rows := &wrapperRows{
|
|
id: rowsID,
|
|
api: c.api,
|
|
}
|
|
return rows, nil
|
|
}
|
|
|
|
func (c *Conn) Ping(_ context.Context) error {
|
|
return c.api.ConnPing(c.id)
|
|
}
|
|
|
|
func (c *Conn) Close() error {
|
|
return c.api.ConnClose(c.id)
|
|
}
|