github-code-scanning[bot] commented on code in PR #7575:
URL: https://github.com/apache/trafficcontrol/pull/7575#discussion_r1235590748


##########
traffic_ops/traffic_ops_golang/types/types.go:
##########
@@ -211,3 +215,323 @@
 WHERE id=:id`
        return query
 }
+
+// GetV5 [Version :V5] - GetV5 will retrieve a list of types
+func GetV5(w http.ResponseWriter, r *http.Request) {
+       inf, userErr, sysErr, errCode := api.NewInfo(r, nil, nil)
+       if userErr != nil || sysErr != nil {
+               api.HandleErr(w, r, inf.Tx.Tx, errCode, userErr, sysErr)
+               return
+       }
+       defer inf.Close()
+
+       code := http.StatusOK
+       useIMS := false
+       config, e := api.GetConfig(r.Context())
+       if e == nil && config != nil {
+               useIMS = config.UseIMS
+       } else {
+               log.Warnf("Couldn't get config %v", e)
+       }
+
+       var maxTime time.Time
+       var usrErr error
+       var syErr error
+
+       var typeList []tc.TypeV5
+
+       tx := inf.Tx
+
+       typeList, maxTime, code, usrErr, syErr = func(tx *sqlx.Tx, params 
map[string]string, useIMS bool, header http.Header) ([]tc.TypeV5, time.Time, 
int, error, error) {
+               var runSecond bool
+               var maxTime time.Time
+               typeList := []tc.TypeV5{}
+
+               selectQuery := `SELECT id, name, description, use_in_table, 
last_updated FROM type as typ`
+
+               // Query Parameters to Database Query column mappings
+               queryParamsToQueryCols := map[string]dbhelpers.WhereColumnInfo{
+                       "name":       {Column: "typ.name"},
+                       "id":         {Column: "typ.id", Checker: api.IsInt},
+                       "useInTable": {Column: "typ.use_in_table"},
+               }
+               if _, ok := params["orderby"]; !ok {
+                       params["orderby"] = "name"
+               }
+               where, orderBy, pagination, queryValues, errs := 
dbhelpers.BuildWhereAndOrderByAndPagination(params, queryParamsToQueryCols)
+               if len(errs) > 0 {
+                       return nil, time.Time{}, http.StatusBadRequest, 
util.JoinErrs(errs), nil
+               }
+
+               if useIMS {
+                       runSecond, maxTime = TryIfModifiedSinceQuery(header, 
tx, where, queryValues)
+                       if !runSecond {
+                               log.Debugln("IMS HIT")
+                               return typeList, maxTime, 
http.StatusNotModified, nil, nil
+                       }
+                       log.Debugln("IMS MISS")
+               } else {
+                       log.Debugln("Non IMS request")
+               }
+
+               query := selectQuery + where + orderBy + pagination
+               rows, err := tx.NamedQuery(query, queryValues)

Review Comment:
   ## Database query built from user-controlled sources
   
   This query depends on a [user-provided value](1).
   
   [Show more 
details](https://github.com/apache/trafficcontrol/security/code-scanning/282)



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to