package boil import ( "bytes" "fmt" "reflect" "sort" "strings" "unicode" ) // WherePrimaryKeyIn generates a "in" string for where queries // For example: (col1, col2) IN (($1, $2), ($3, $4)) func WherePrimaryKeyIn(numRows int, keyNames ...string) string { in := &bytes.Buffer{} if len(keyNames) == 0 { return "" } in.WriteByte('(') for i := 0; i < len(keyNames); i++ { in.WriteString(`"` + keyNames[i] + `"`) if i < len(keyNames)-1 { in.WriteByte(',') } } in.WriteString(") IN (") c := 1 for i := 0; i < numRows; i++ { for y := 0; y < len(keyNames); y++ { if len(keyNames) > 1 && y == 0 { in.WriteByte('(') } in.WriteString(fmt.Sprintf("$%d", c)) c++ if len(keyNames) > 1 && y == len(keyNames)-1 { in.WriteByte(')') } if i != numRows-1 || y != len(keyNames)-1 { in.WriteByte(',') } } } in.WriteByte(')') return in.String() } // SelectNames returns the column names for a select statement // Eg: col1, col2, col3 func SelectNames(results interface{}) string { var names []string structValue := reflect.ValueOf(results) if structValue.Kind() == reflect.Ptr { structValue = structValue.Elem() } structType := structValue.Type() for i := 0; i < structValue.NumField(); i++ { field := structType.Field(i) var name string if db := field.Tag.Get("db"); len(db) != 0 { name = db } else { name = goVarToSQLName(field.Name) } names = append(names, name) } return strings.Join(names, ", ") } // WhereClause returns the where clause for an sql statement // eg: col1=$1 AND col2=$2 AND col3=$3 func WhereClause(columns map[string]interface{}) string { names := make([]string, 0, len(columns)) for c := range columns { names = append(names, c) } sort.Strings(names) for i, c := range names { names[i] = fmt.Sprintf("%s=$%d", c, i+1) } return strings.Join(names, " AND ") } // Update returns the column list for an update statement SET clause // eg: col1=$1,col2=$2,col3=$3 func Update(columns map[string]interface{}) string { names := make([]string, 0, len(columns)) for c := range columns { names = append(names, c) } sort.Strings(names) for i, c := range names { names[i] = fmt.Sprintf("%s=$%d", c, i+1) } return strings.Join(names, ",") } // WhereParams returns a list of sql parameter values for the query func WhereParams(columns map[string]interface{}) []interface{} { names := make([]string, 0, len(columns)) results := make([]interface{}, 0, len(columns)) for c := range columns { names = append(names, c) } sort.Strings(names) for _, c := range names { results = append(results, columns[c]) } return results } // SetParamNames takes a slice of columns and returns a comma seperated // list of parameter names for a template statement SET clause. // eg: col1=$1,col2=$2,col3=$3 func SetParamNames(columns []string) string { names := make([]string, 0, len(columns)) counter := 0 for _, c := range columns { counter++ names = append(names, fmt.Sprintf("%s=$%d", c, counter)) } return strings.Join(names, ",") } // WherePrimaryKey returns the where clause using start as the $ flag index // For example, if start was 2 output would be: "colthing=$2 AND colstuff=$3" func WherePrimaryKey(start int, pkeys ...string) string { var output string for i, c := range pkeys { output = fmt.Sprintf("%s%s=$%d", output, c, start) start++ if i < len(pkeys)-1 { output = fmt.Sprintf("%s AND ", output) } } return output } // goVarToSQLName converts a go variable name to a column name // example: HelloFriendID to hello_friend_id func goVarToSQLName(name string) string { str := &bytes.Buffer{} isUpper, upperStreak := false, false for i := 0; i < len(name); i++ { c := rune(name[i]) if unicode.IsDigit(c) || unicode.IsLower(c) { isUpper = false upperStreak = false str.WriteRune(c) continue } if isUpper { upperStreak = true } else if i != 0 { str.WriteByte('_') } isUpper = true if j := i + 1; j < len(name) && upperStreak && unicode.IsLower(rune(name[j])) { str.WriteByte('_') } str.WriteRune(unicode.ToLower(c)) } return str.String() }