mirror of
https://github.com/jc21/nginx-proxy-manager.git
synced 2024-08-30 18:22:48 +00:00
39 lines
905 B
Go
39 lines
905 B
Go
package database
|
|
|
|
import (
|
|
"fmt"
|
|
"npm/internal/config"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
// DateFormat for DateFormat
|
|
DateFormat = "2006-01-02"
|
|
// DateTimeFormat for DateTimeFormat
|
|
DateTimeFormat = "2006-01-02T15:04:05"
|
|
)
|
|
|
|
// QuoteTableName is a special function that will quote a table
|
|
// name based on the driver. Gorm normally handles this but this
|
|
// is for special cases where we run raw sql
|
|
func QuoteTableName(tbl string) string {
|
|
switch strings.ToLower(config.Configuration.DB.Driver) {
|
|
case config.DatabasePostgres:
|
|
return fmt.Sprintf(`"%s"`, tbl)
|
|
default:
|
|
// This is the same for Mysql and Sqlite
|
|
return fmt.Sprintf("`%s`", tbl)
|
|
}
|
|
}
|
|
|
|
// GetCaseInsensitiveLike returns a different operator based on
|
|
// the db driver
|
|
func GetCaseInsensitiveLike() string {
|
|
switch strings.ToLower(config.Configuration.DB.Driver) {
|
|
case config.DatabasePostgres:
|
|
return "ILIKE"
|
|
default:
|
|
return "LIKE"
|
|
}
|
|
}
|