mirror of
				https://github.com/superseriousbusiness/gotosocial.git
				synced 2025-10-31 12:02:26 -05:00 
			
		
		
		
	- github.com/KimMachineGun/automemlimit v0.7.2 => v0.7.3
- github.com/gin-contrib/cors v1.7.5 => v1.7.6
- github.com/minio/minio-go/v7 v7.0.92 => v7.0.94
- github.com/spf13/cast v1.8.0 => v1.9.2
- github.com/uptrace/bun{,/*} v1.2.11 => v1.2.14
- golang.org/x/image v0.27.0 => v0.28.0
- golang.org/x/net v0.40.0 => v0.41.0
- code.superseriousbusiness.org/go-swagger v0.31.0-gts-go1.23-fix => v0.32.3-gts-go1.23-fix
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4304
Co-authored-by: kim <grufwub@gmail.com>
Co-committed-by: kim <grufwub@gmail.com>
		
	
			
		
			
				
	
	
		
			107 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			107 lines
		
	
	
	
		
			2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package bun
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"database/sql"
 | |
| 
 | |
| 	"github.com/uptrace/bun/schema"
 | |
| )
 | |
| 
 | |
| type RawQuery struct {
 | |
| 	baseQuery
 | |
| 
 | |
| 	query   string
 | |
| 	args    []interface{}
 | |
| 	comment string
 | |
| }
 | |
| 
 | |
| func NewRawQuery(db *DB, query string, args ...interface{}) *RawQuery {
 | |
| 	return &RawQuery{
 | |
| 		baseQuery: baseQuery{
 | |
| 			db: db,
 | |
| 		},
 | |
| 		query: query,
 | |
| 		args:  args,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) Conn(db IConn) *RawQuery {
 | |
| 	q.setConn(db)
 | |
| 	return q
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) Err(err error) *RawQuery {
 | |
| 	q.setErr(err)
 | |
| 	return q
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) Exec(ctx context.Context, dest ...interface{}) (sql.Result, error) {
 | |
| 	return q.scanOrExec(ctx, dest, len(dest) > 0)
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) Scan(ctx context.Context, dest ...interface{}) error {
 | |
| 	_, err := q.scanOrExec(ctx, dest, true)
 | |
| 	return err
 | |
| }
 | |
| 
 | |
| // Comment adds a comment to the query, wrapped by /* ... */.
 | |
| func (q *RawQuery) Comment(comment string) *RawQuery {
 | |
| 	q.comment = comment
 | |
| 	return q
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) scanOrExec(
 | |
| 	ctx context.Context, dest []interface{}, hasDest bool,
 | |
| ) (sql.Result, error) {
 | |
| 	if q.err != nil {
 | |
| 		return nil, q.err
 | |
| 	}
 | |
| 
 | |
| 	var model Model
 | |
| 	var err error
 | |
| 
 | |
| 	if hasDest {
 | |
| 		model, err = q.getModel(dest)
 | |
| 		if err != nil {
 | |
| 			return nil, err
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	// if a comment is propagated via the context, use it
 | |
| 	setCommentFromContext(ctx, q)
 | |
| 
 | |
| 	query := q.db.format(q.query, q.args)
 | |
| 	var res sql.Result
 | |
| 
 | |
| 	if hasDest {
 | |
| 		res, err = q.scan(ctx, q, query, model, hasDest)
 | |
| 	} else {
 | |
| 		res, err = q.exec(ctx, q, query)
 | |
| 	}
 | |
| 
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 
 | |
| 	return res, nil
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) AppendQuery(fmter schema.Formatter, b []byte) ([]byte, error) {
 | |
| 	b = appendComment(b, q.comment)
 | |
| 
 | |
| 	return fmter.AppendQuery(b, q.query, q.args...), nil
 | |
| }
 | |
| 
 | |
| func (q *RawQuery) Operation() string {
 | |
| 	return "SELECT"
 | |
| }
 | |
| 
 | |
| // String returns the generated SQL query string. The RawQuery instance must not be
 | |
| // modified during query generation to ensure multiple calls to String() return identical results.
 | |
| func (q *RawQuery) String() string {
 | |
| 	buf, err := q.AppendQuery(q.db.Formatter(), nil)
 | |
| 	if err != nil {
 | |
| 		panic(err)
 | |
| 	}
 | |
| 	return string(buf)
 | |
| }
 |