common.go 7.9 KB

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