File size: 7,445 Bytes
530729e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 |
// Copyright 2019 GoAdmin Core Team. All rights reserved.
// Use of this source code is governed by a Apache-2.0 style
// license that can be found in the LICENSE file.
package db
import (
"fmt"
"html/template"
"strconv"
)
// DatabaseType is the database field type.
type DatabaseType string
const (
// =================================
// integer
// =================================
Int DatabaseType = "INT"
Tinyint DatabaseType = "TINYINT"
Mediumint DatabaseType = "MEDIUMINT"
Smallint DatabaseType = "SMALLINT"
Bigint DatabaseType = "BIGINT"
Bit DatabaseType = "BIT"
Int8 DatabaseType = "INT8"
Int4 DatabaseType = "INT4"
Int2 DatabaseType = "INT2"
Integer DatabaseType = "INTEGER"
Numeric DatabaseType = "NUMERIC"
Smallserial DatabaseType = "SMALLSERIAL"
Serial DatabaseType = "SERIAL"
Bigserial DatabaseType = "BIGSERIAL"
Money DatabaseType = "MONEY"
// =================================
// float
// =================================
Real DatabaseType = "REAL"
Float DatabaseType = "FLOAT"
Float4 DatabaseType = "FLOAT4"
Float8 DatabaseType = "FLOAT8"
Double DatabaseType = "DOUBLE"
Decimal DatabaseType = "DECIMAL"
Doubleprecision DatabaseType = "DOUBLEPRECISION"
// =================================
// string
// =================================
Date DatabaseType = "DATE"
Time DatabaseType = "TIME"
Year DatabaseType = "YEAR"
Datetime DatabaseType = "DATETIME"
Timestamp DatabaseType = "TIMESTAMP"
Text DatabaseType = "TEXT"
Longtext DatabaseType = "LONGTEXT"
Mediumtext DatabaseType = "MEDIUMTEXT"
Tinytext DatabaseType = "TINYTEXT"
Varchar DatabaseType = "VARCHAR"
Char DatabaseType = "CHAR"
Bpchar DatabaseType = "BPCHAR"
JSON DatabaseType = "JSON"
Blob DatabaseType = "BLOB"
Tinyblob DatabaseType = "TINYBLOB"
Mediumblob DatabaseType = "MEDIUMBLOB"
Longblob DatabaseType = "LONGBLOB"
Interval DatabaseType = "INTERVAL"
Boolean DatabaseType = "BOOLEAN"
Bool DatabaseType = "BOOL"
Point DatabaseType = "POINT"
Line DatabaseType = "LINE"
Lseg DatabaseType = "LSEG"
Box DatabaseType = "BOX"
Path DatabaseType = "PATH"
Polygon DatabaseType = "POLYGON"
Circle DatabaseType = "CIRCLE"
Cidr DatabaseType = "CIDR"
Inet DatabaseType = "INET"
Macaddr DatabaseType = "MACADDR"
Character DatabaseType = "CHARACTER"
Varyingcharacter DatabaseType = "VARYINGCHARACTER"
Nchar DatabaseType = "NCHAR"
Nativecharacter DatabaseType = "NATIVECHARACTER"
Nvarchar DatabaseType = "NVARCHAR"
Clob DatabaseType = "CLOB"
Binary DatabaseType = "BINARY"
Varbinary DatabaseType = "VARBINARY"
Enum DatabaseType = "ENUM"
Set DatabaseType = "SET"
Geometry DatabaseType = "GEOMETRY"
Multilinestring DatabaseType = "MULTILINESTRING"
Multipolygon DatabaseType = "MULTIPOLYGON"
Linestring DatabaseType = "LINESTRING"
Multipoint DatabaseType = "MULTIPOINT"
Geometrycollection DatabaseType = "GEOMETRYCOLLECTION"
Name DatabaseType = "NAME"
UUID DatabaseType = "UUID"
Timestamptz DatabaseType = "TIMESTAMPTZ"
Timetz DatabaseType = "TIMETZ"
)
// DT turn the string value into DatabaseType.
func DT(s string) DatabaseType {
return DatabaseType(s)
}
// GetDTAndCheck check the DatabaseType.
func GetDTAndCheck(s string) DatabaseType {
ss := DatabaseType(s)
if !Contains(ss, BoolTypeList) &&
!Contains(ss, IntTypeList) &&
!Contains(ss, FloatTypeList) &&
!Contains(ss, UintTypeList) &&
!Contains(ss, StringTypeList) {
panic("wrong type: " + s)
}
return ss
}
var (
// StringTypeList is a DatabaseType list of string.
StringTypeList = []DatabaseType{Date, Time, Year, Datetime, Timestamptz, Timestamp, Timetz,
Varchar, Char, Mediumtext, Longtext, Tinytext,
Text, JSON, Blob, Tinyblob, Mediumblob, Longblob,
Interval, Point, Bpchar,
Line, Lseg, Box, Path, Polygon, Circle, Cidr, Inet, Macaddr, Character, Varyingcharacter,
Nchar, Nativecharacter, Nvarchar, Clob, Binary, Varbinary, Enum, Set, Geometry, Multilinestring,
Multipolygon, Linestring, Multipoint, Geometrycollection, Name, UUID, Timestamptz,
Name, UUID, Inet}
// BoolTypeList is a DatabaseType list of bool.
BoolTypeList = []DatabaseType{Bool, Boolean}
// IntTypeList is a DatabaseType list of integer.
IntTypeList = []DatabaseType{Int4, Int2, Int8,
Int,
Tinyint,
Mediumint,
Smallint,
Smallserial, Serial, Bigserial,
Integer,
Bigint}
// FloatTypeList is a DatabaseType list of float.
FloatTypeList = []DatabaseType{Float, Float4, Float8, Double, Real, Doubleprecision}
// UintTypeList is a DatabaseType list of uint.
UintTypeList = []DatabaseType{Decimal, Bit, Money, Numeric}
)
// Contains check the given DatabaseType is in the list or not.
func Contains(v DatabaseType, a []DatabaseType) bool {
for _, i := range a {
if i == v {
return true
}
}
return false
}
// Value is a string.
type Value string
// ToInt64 turn the string to a int64.
func (v Value) ToInt64() int64 {
value, err := strconv.ParseInt(string(v), 10, 64)
if err != nil {
panic("wrong value")
}
return value
}
// String return the string value.
func (v Value) String() string {
return string(v)
}
// HTML return the template.HTML value.
func (v Value) HTML() template.HTML {
return template.HTML(v)
}
func GetValueFromDatabaseType(typ DatabaseType, value interface{}, json bool) Value {
if json {
return GetValueFromJSONOfDatabaseType(typ, value)
} else {
return GetValueFromSQLOfDatabaseType(typ, value)
}
}
// GetValueFromDatabaseType return Value of given DatabaseType and interface.
func GetValueFromSQLOfDatabaseType(typ DatabaseType, value interface{}) Value {
switch {
case Contains(typ, StringTypeList):
if v, ok := value.(string); ok {
return Value(v)
}
if v2, ok2 := value.([]byte); ok2 {
return Value(string(v2))
}
return ""
case Contains(typ, BoolTypeList):
if v, ok := value.(bool); ok {
if v {
return "true"
}
return "false"
}
if v, ok := value.(int64); ok {
if v == 0 {
return "false"
}
return "true"
}
return "false"
case Contains(typ, IntTypeList):
if v, ok := value.(int64); ok {
return Value(fmt.Sprintf("%d", v))
}
return "0"
case Contains(typ, FloatTypeList):
if v, ok := value.(float64); ok {
return Value(fmt.Sprintf("%f", v))
}
return "0"
case Contains(typ, UintTypeList):
if v, ok := value.([]uint8); ok {
return Value(string(v))
}
return "0"
}
panic("wrong type:" + string(typ))
}
// GetValueFromJSONOfDatabaseType return Value of given DatabaseType and interface from JSON string value.
func GetValueFromJSONOfDatabaseType(typ DatabaseType, value interface{}) Value {
switch {
case Contains(typ, StringTypeList):
if v, ok := value.(string); ok {
return Value(v)
}
return ""
case Contains(typ, BoolTypeList):
if v, ok := value.(bool); ok {
if v {
return "true"
}
return "false"
}
return "false"
case Contains(typ, IntTypeList):
if v, ok := value.(float64); ok {
return Value(fmt.Sprintf("%d", int64(v)))
}
return Value(fmt.Sprintf("%d", value))
case Contains(typ, FloatTypeList):
return Value(fmt.Sprintf("%f", value))
case Contains(typ, UintTypeList):
if v, ok := value.([]uint8); ok {
return Value(string(v))
}
return "0"
}
panic("wrong type:" + string(typ))
}
|