common.go 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253
  1. package common
  2. import (
  3. "context"
  4. "database/sql"
  5. "fmt"
  6. "io"
  7. "net/url"
  8. "os"
  9. "reflect"
  10. "regexp"
  11. "strconv"
  12. "strings"
  13. "time"
  14. "github.com/amacneil/dbmate/pkg/dbmate"
  15. _ "github.com/amacneil/dbmate/pkg/driver/mysql"
  16. _ "github.com/amacneil/dbmate/pkg/driver/postgres"
  17. _ "github.com/amacneil/dbmate/pkg/driver/sqlite"
  18. "golang.org/x/exp/slices"
  19. )
  20. type Engine interface {
  21. Begin(ctx context.Context, opts *sql.TxOptions) (*Tx, error)
  22. Close() error
  23. CurrentUnixTimestamp() int64
  24. DeleteRowByID(ctx context.Context, id int64, row any) error
  25. Each(ctx context.Context, query string, logic func(ctx context.Context, rows *Rows) error, args ...any) error
  26. EachPrepared(ctx context.Context, prep *Prepared, logic func(ctx context.Context, rows *Rows) error) error
  27. Exec(ctx context.Context, query string, args ...any) (sql.Result, error)
  28. ExecPrepared(ctx context.Context, prep *Prepared) (sql.Result, error)
  29. InsertRow(ctx context.Context, row any) error
  30. Ping(context.Context) error
  31. Prepare(ctx context.Context, query string) (*sql.Stmt, error)
  32. Query(ctx context.Context, query string, args ...any) (*Rows, error)
  33. QueryPrepared(ctx context.Context, prep *Prepared) (*Rows, error)
  34. QueryRow(ctx context.Context, query string, args ...any) *Row
  35. QueryRowByID(ctx context.Context, id int64, row any) error
  36. QueryRowPrepared(ctx context.Context, prep *Prepared) *Row
  37. RowExists(ctx context.Context, id int64, row any) bool
  38. SetConnMaxLifetime(d time.Duration)
  39. SetMaxIdleConns(n int)
  40. SetMaxOpenConns(n int)
  41. Transaction(ctx context.Context, queries func(ctx context.Context, tx *Tx) error) error
  42. }
  43. var rSqlParam = regexp.MustCompile(`\$\d+`)
  44. var rLogSpacesAll = regexp.MustCompile(`[\s\t]+`)
  45. var rLogSpacesEnd = regexp.MustCompile(`[\s\t]+;$`)
  46. func currentUnixTimestamp() int64 {
  47. return time.Now().UTC().Unix()
  48. }
  49. func deleteRowByIDString(row any) string {
  50. v := reflect.ValueOf(row).Elem()
  51. t := v.Type()
  52. var table string
  53. for i := 0; i < t.NumField(); i++ {
  54. if table == "" {
  55. if tag := t.Field(i).Tag.Get("table"); tag != "" {
  56. table = tag
  57. }
  58. }
  59. }
  60. return `DELETE FROM ` + table + ` WHERE id = $1`
  61. }
  62. func fixQuery(query string) string {
  63. return rSqlParam.ReplaceAllString(query, "?")
  64. }
  65. func insertRowString(row any) (string, []any) {
  66. v := reflect.ValueOf(row).Elem()
  67. t := v.Type()
  68. var table string
  69. fields := []string{}
  70. values := []string{}
  71. args := []any{}
  72. position := 1
  73. created_at := currentUnixTimestamp()
  74. for i := 0; i < t.NumField(); i++ {
  75. if table == "" {
  76. if tag := t.Field(i).Tag.Get("table"); tag != "" {
  77. table = tag
  78. }
  79. }
  80. if tag := t.Field(i).Tag.Get("field"); tag != "" && tag != "id" {
  81. fields = append(fields, tag)
  82. values = append(values, "$"+strconv.Itoa(position))
  83. if tag == "created_at" || tag == "updated_at" {
  84. args = append(args, created_at)
  85. } else {
  86. switch t.Field(i).Type.Kind() {
  87. case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
  88. args = append(args, v.Field(i).Int())
  89. case reflect.Float32, reflect.Float64:
  90. args = append(args, v.Field(i).Float())
  91. case reflect.String:
  92. args = append(args, v.Field(i).String())
  93. }
  94. }
  95. position++
  96. }
  97. }
  98. return `INSERT INTO ` + table + ` (` + strings.Join(fields, ", ") + `) VALUES (` + strings.Join(values, ", ") + `)`, args
  99. }
  100. func log(w io.Writer, fname string, start time.Time, err error, tx bool, query string, args ...any) string {
  101. var values []string
  102. bold := "0"
  103. color := "33"
  104. // Transaction or not
  105. if tx {
  106. bold = "1"
  107. values = append(values, "[TX]")
  108. }
  109. // Function name
  110. if fname != "" {
  111. values = append(values, "[func "+fname+"]")
  112. }
  113. // SQL query
  114. if query != "" {
  115. values = append(values, rLogSpacesEnd.ReplaceAllString(
  116. strings.Trim(rLogSpacesAll.ReplaceAllString(query, " "), " "), ";",
  117. ))
  118. }
  119. // Params
  120. if len(args) > 0 {
  121. values = append(values, fmt.Sprintf("(%v)", args))
  122. } else {
  123. values = append(values, "(empty)")
  124. }
  125. // Error
  126. if err != nil {
  127. color = "31"
  128. values = append(values, "("+err.Error()+")")
  129. } else {
  130. values = append(values, "(nil)")
  131. }
  132. // Execute time with close color symbols
  133. values = append(values, fmt.Sprintf("%.3f ms\033[0m", time.Since(start).Seconds()))
  134. // Prepend start caption with colors
  135. values = append([]string{"\033[" + bold + ";" + color + "m[SQL]"}, values...)
  136. res := fmt.Sprintln(strings.Join(values, " "))
  137. fmt.Fprint(w, res)
  138. return res
  139. }
  140. func queryRowByIDString(row any) string {
  141. v := reflect.ValueOf(row).Elem()
  142. t := v.Type()
  143. var table string
  144. fields := []string{}
  145. for i := 0; i < t.NumField(); i++ {
  146. if table == "" {
  147. if tag := t.Field(i).Tag.Get("table"); tag != "" {
  148. table = tag
  149. }
  150. }
  151. if tag := t.Field(i).Tag.Get("field"); tag != "" {
  152. fields = append(fields, tag)
  153. }
  154. }
  155. return `SELECT ` + strings.Join(fields, ", ") + ` FROM ` + table + ` WHERE id = $1 LIMIT 1`
  156. }
  157. func rowExistsString(row any) string {
  158. v := reflect.ValueOf(row).Elem()
  159. t := v.Type()
  160. var table string
  161. for i := 0; i < t.NumField(); i++ {
  162. if table == "" {
  163. if tag := t.Field(i).Tag.Get("table"); tag != "" {
  164. table = tag
  165. }
  166. }
  167. }
  168. return `SELECT 1 FROM ` + table + ` WHERE id = $1 LIMIT 1`
  169. }
  170. func scans(row any) []any {
  171. v := reflect.ValueOf(row).Elem()
  172. res := make([]interface{}, v.NumField())
  173. for i := 0; i < v.NumField(); i++ {
  174. res[i] = v.Field(i).Addr().Interface()
  175. }
  176. return res
  177. }
  178. func ParseUrl(dbURL string) (*url.URL, error) {
  179. databaseURL, err := url.Parse(dbURL)
  180. if err != nil {
  181. return nil, fmt.Errorf("unable to parse URL: %w", err)
  182. }
  183. if databaseURL.Scheme == "" {
  184. return nil, fmt.Errorf("protocol scheme is not defined")
  185. }
  186. protocols := []string{"mysql", "postgres", "postgresql", "sqlite", "sqlite3"}
  187. if !slices.Contains(protocols, databaseURL.Scheme) {
  188. return nil, fmt.Errorf("unsupported protocol scheme: %s", databaseURL.Scheme)
  189. }
  190. return databaseURL, nil
  191. }
  192. func OpenDB(databaseURL *url.URL, migrationsDir string, skipMigration bool, debug bool) (*sql.DB, error) {
  193. mate := dbmate.New(databaseURL)
  194. mate.AutoDumpSchema = false
  195. mate.Log = io.Discard
  196. if migrationsDir != "" {
  197. mate.MigrationsDir = migrationsDir
  198. }
  199. driver, err := mate.GetDriver()
  200. if err != nil {
  201. return nil, fmt.Errorf("DB get driver error: %w", err)
  202. }
  203. if !skipMigration {
  204. if err := mate.CreateAndMigrate(); err != nil {
  205. return nil, fmt.Errorf("DB migration error: %w", err)
  206. }
  207. }
  208. var db *sql.DB
  209. start := time.Now()
  210. db, err = driver.Open()
  211. if debug {
  212. log(os.Stdout, "Open", start, err, false, "")
  213. }
  214. if err != nil {
  215. return nil, fmt.Errorf("DB open error: %w", err)
  216. }
  217. return db, nil
  218. }
  219. func PrepareSQL(query string, args ...any) *Prepared {
  220. return &Prepared{query, args}
  221. }