blob: 88138de95cde61f15cb452688bdec5eabec8bf0c [file] [log] [blame]
package physlocation
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import (
"database/sql"
"errors"
"net/http"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/api"
)
func GetTrimmed(w http.ResponseWriter, r *http.Request) {
alt := "GET /phys_locations"
inf, userErr, sysErr, errCode := api.NewInfo(r, nil, nil)
if userErr != nil || sysErr != nil {
api.HandleDeprecatedErr(w, r, inf.Tx.Tx, errCode, userErr, sysErr, &alt)
return
}
defer inf.Close()
trimmed, err := getTrimmed(inf.Tx.Tx)
if err != nil {
api.HandleDeprecatedErr(w, r, inf.Tx.Tx, errCode, userErr, sysErr, &alt)
return
}
alerts := api.CreateDeprecationAlerts(&alt)
api.WriteAlertsObj(w, r, http.StatusOK, alerts, trimmed)
}
func getTrimmed(tx *sql.Tx) ([]tc.PhysLocationTrimmed, error) {
rows, err := tx.Query(`SELECT name FROM phys_location`)
if err != nil {
return nil, errors.New("querying trimmed physical locations: " + err.Error())
}
defer rows.Close()
ps := []tc.PhysLocationTrimmed{}
for rows.Next() {
name := ""
if err = rows.Scan(&name); err != nil {
return nil, errors.New("scanning trimmed physical locations: " + err.Error())
}
ps = append(ps, tc.PhysLocationTrimmed{Name: name})
}
return ps, nil
}