Files
mostlymatter/server/platform/shared/driver/conn.go
Agniva De Sarker efaa6264cc MM-53032: Fix module path after repo rename (#23689)
It was a good decision in hindsight to keep the public module as 0.x
because this would have been a breaking change again.

https://mattermost.atlassian.net/browse/MM-53032
```release-note
Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8.

For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public
```
2023-06-11 10:54:35 +05:30

118 строки
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)
}