common.go 6.6 KB

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