blob: d3826ab0464ed56fe6c80c740ef259f2f8dc91d0 [file] [log] [blame]
package asn
/*
* 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 (
"errors"
"net/http"
"strconv"
"time"
"github.com/apache/trafficcontrol/lib/go-tc"
"github.com/apache/trafficcontrol/lib/go-tc/tovalidate"
"github.com/apache/trafficcontrol/lib/go-util"
"github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/api"
"github.com/apache/trafficcontrol/traffic_ops/traffic_ops_golang/dbhelpers"
validation "github.com/go-ozzo/ozzo-validation"
)
// ASNsPrivLevel ...
const ASNsPrivLevel = 10
//we need a type alias to define functions on
type TOASNV11 struct {
api.APIInfoImpl `json:"-"`
tc.ASNNullable
}
func (v *TOASNV11) GetLastUpdated() (*time.Time, bool, error) {
return api.GetLastUpdated(v.APIInfo().Tx, *v.ID, "asn")
}
func (v *TOASNV11) SetLastUpdated(t tc.TimeNoMod) { v.LastUpdated = &t }
func (v *TOASNV11) InsertQuery() string { return insertQuery() }
func (v *TOASNV11) NewReadObj() interface{} { return &tc.ASNNullable{} }
func (v *TOASNV11) SelectQuery() string { return selectQuery() }
func (v *TOASNV11) ParamColumns() map[string]dbhelpers.WhereColumnInfo {
return map[string]dbhelpers.WhereColumnInfo{
"asn": dbhelpers.WhereColumnInfo{"a.asn", api.IsInt},
"cachegroup": dbhelpers.WhereColumnInfo{"c.id", api.IsInt},
"id": dbhelpers.WhereColumnInfo{"a.id", api.IsInt},
"cachegroupName": dbhelpers.WhereColumnInfo{"c.name", nil},
}
}
func (v *TOASNV11) UpdateQuery() string { return updateQuery() }
func (v *TOASNV11) DeleteQuery() string { return deleteQuery() }
func (asn TOASNV11) GetKeyFieldsInfo() []api.KeyFieldInfo {
return []api.KeyFieldInfo{{"id", api.GetIntKey}}
}
// func (asn TOASNV12) GetKeyFieldsInfo() []api.KeyFieldInfo { return TOASNV11(asn).GetKeyFieldsInfo() }
// Implementation of the Identifier, Validator interface functions
func (asn TOASNV11) GetKeys() (map[string]interface{}, bool) {
if asn.ID == nil {
return map[string]interface{}{"id": 0}, false
}
return map[string]interface{}{"id": *asn.ID}, true
}
func (asn *TOASNV11) SetKeys(keys map[string]interface{}) {
i, _ := keys["id"].(int) //this utilizes the non panicking type assertion, if the thrown away ok variable is false i will be the zero of the type, 0 here.
asn.ID = &i
}
func (asn TOASNV11) GetAuditName() string {
if asn.ASN != nil {
return strconv.Itoa(*asn.ASN)
}
if asn.ID != nil {
return strconv.Itoa(*asn.ID)
}
return "unknown"
}
func (asn TOASNV11) GetType() string {
return "asn"
}
func (asn TOASNV11) Validate() error {
errs := validation.Errors{
"asn": validation.Validate(asn.ASN, validation.NotNil, validation.Min(0)),
"cachegroupId": validation.Validate(asn.CachegroupID, validation.NotNil, validation.Min(0)),
}
return util.JoinErrs(tovalidate.ToErrors(errs))
}
func (as *TOASNV11) Create() (error, error, int) {
err := as.ASNExists(true)
if err != nil {
return err, nil, http.StatusBadRequest
}
return api.GenericCreate(as)
}
func (as *TOASNV11) Read(h http.Header, useIMS bool) ([]interface{}, error, error, int, *time.Time) {
api.DefaultSort(as.APIInfo(), "asn")
return api.GenericRead(h, as, useIMS)
}
func (v *TOASNV11) SelectMaxLastUpdatedQuery(where, orderBy, pagination, tableName string) string {
return `SELECT max(t) from (
SELECT max(a.last_updated) as t from asn a
JOIN
cachegroup c ON a.cachegroup = c.id ` + where + orderBy + pagination +
` UNION ALL
select max(last_updated) as t from last_deleted l where l.table_name='asn') as res`
}
func (as *TOASNV11) Update(h http.Header) (error, error, int) {
err := as.ASNExists(false)
if err != nil {
return err, nil, http.StatusBadRequest
}
return api.GenericUpdate(h, as)
}
func (as *TOASNV11) Delete() (error, error, int) { return api.GenericDelete(as) }
func (asn TOASNV11) ASNExists(create bool) error {
if asn.APIInfo() == nil || asn.APIInfo().Tx == nil {
return errors.New("couldn't perform check to see if asn number exists already")
}
if asn.ASN == nil || asn.CachegroupID == nil {
return errors.New("no asn or cachegroup ID specified")
}
query := `SELECT id from asn where asn=$1`
rows, err := asn.APIInfo().Tx.Query(query, *asn.ASN)
if err != nil {
return errors.New("selecting asns: " + err.Error())
}
defer rows.Close()
if rows.Next() {
if create {
return errors.New("an asn with the specified number already exists")
}
var v int
id := *asn.ID
err = rows.Scan(&v)
if err != nil {
return errors.New("couldn't check if this number exists")
}
if v != id {
return errors.New("another asn exists for this number")
}
}
return nil
}
// V11ReadAll implements the asns 1.1 route, which is different from the 1.1 route for a single ASN and from 1.2+ routes, in that it wraps the content in an additional "asns" object.
func V11ReadAll(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()
asn := &TOASNV11{}
asn.SetInfo(inf)
asns, userErr, sysErr, errCode, _ := api.GenericRead(r.Header, asn, false)
if userErr != nil || sysErr != nil {
api.HandleErr(w, r, inf.Tx.Tx, errCode, userErr, sysErr)
return
}
api.WriteResp(w, r, tc.ASNsV11{asns})
}
func selectQuery() string {
return `
SELECT
a.id,
a.asn,
a.last_updated,
a.cachegroup AS cachegroup_id,
c.name AS cachegroup
FROM
asn a
JOIN
cachegroup c ON a.cachegroup = c.id
`
}
func insertQuery() string {
return `
INSERT INTO
asn (asn, cachegroup)
VALUES
(:asn, :cachegroup_id)
RETURNING id, last_updated
`
}
func updateQuery() string {
return `
UPDATE
asn
SET
asn = :asn,
cachegroup = :cachegroup_id
WHERE
id = :id
RETURNING
last_updated
`
}
func deleteQuery() string {
return `DELETE FROM asn WHERE id=:id`
}