134 lines
3.2 KiB
Go
134 lines
3.2 KiB
Go
// Statup
|
|
// Copyright (C) 2018. Hunter Long and the project contributors
|
|
// Written by Hunter Long <info@socialeck.com> and the project contributors
|
|
//
|
|
// https://github.com/hunterlong/statup
|
|
//
|
|
// The licenses for most software and other practical works are designed
|
|
// to take away your freedom to share and change the works. By contrast,
|
|
// the GNU General Public License is intended to guarantee your freedom to
|
|
// share and change all versions of a program--to make sure it remains free
|
|
// software for all its users.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package handlers
|
|
|
|
import (
|
|
"github.com/gorilla/mux"
|
|
"github.com/pkg/errors"
|
|
"github.com/statping/statping/types/groups"
|
|
"github.com/statping/statping/utils"
|
|
"net/http"
|
|
)
|
|
|
|
func selectGroup(r *http.Request) (*groups.Group, error) {
|
|
vars := mux.Vars(r)
|
|
id := utils.ToInt(vars["id"])
|
|
g, err := groups.Find(id)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return g, nil
|
|
}
|
|
|
|
// apiAllGroupHandler will show all the groups
|
|
func apiAllGroupHandler(r *http.Request) interface{} {
|
|
auth, admin := IsUser(r), IsAdmin(r)
|
|
return groups.SelectGroups(admin, auth)
|
|
}
|
|
|
|
// apiGroupHandler will show a single group
|
|
func apiGroupHandler(w http.ResponseWriter, r *http.Request) {
|
|
group, err := selectGroup(r)
|
|
if err != nil {
|
|
sendErrorJson(errors.Wrap(err, "group not found"), w, r, http.StatusNotFound)
|
|
return
|
|
}
|
|
returnJson(group, w, r)
|
|
}
|
|
|
|
// apiGroupUpdateHandler will update a group
|
|
func apiGroupUpdateHandler(w http.ResponseWriter, r *http.Request) {
|
|
group, err := selectGroup(r)
|
|
if err != nil {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
sendErrorJson(errors.Wrap(err, "group not found"), w, r)
|
|
return
|
|
}
|
|
|
|
if err := DecodeJSON(r, &group); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
|
|
if err := group.Update(); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
|
|
sendJsonAction(group, "update", w, r)
|
|
}
|
|
|
|
// apiCreateGroupHandler accepts a POST method to create new groups
|
|
func apiCreateGroupHandler(w http.ResponseWriter, r *http.Request) {
|
|
var group *groups.Group
|
|
if err := DecodeJSON(r, &group); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
|
|
if err := group.Create(); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
|
|
sendJsonAction(group, "create", w, r)
|
|
}
|
|
|
|
// apiGroupDeleteHandler accepts a DELETE method to delete groups
|
|
func apiGroupDeleteHandler(w http.ResponseWriter, r *http.Request) {
|
|
group, err := selectGroup(r)
|
|
if err != nil {
|
|
sendErrorJson(errors.Wrap(err, "group not found"), w, r)
|
|
return
|
|
}
|
|
|
|
if err := group.Delete(); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
|
|
sendJsonAction(group, "delete", w, r)
|
|
}
|
|
|
|
type groupOrder struct {
|
|
Id int64 `json:"group"`
|
|
Order int `json:"order"`
|
|
}
|
|
|
|
func apiGroupReorderHandler(w http.ResponseWriter, r *http.Request) {
|
|
r.ParseForm()
|
|
var newOrder []*groupOrder
|
|
|
|
if err := DecodeJSON(r, &newOrder); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
|
|
for _, g := range newOrder {
|
|
group, err := groups.Find(g.Id)
|
|
if err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
group.Order = g.Order
|
|
if err := group.Update(); err != nil {
|
|
sendErrorJson(err, w, r)
|
|
return
|
|
}
|
|
}
|
|
returnJson(newOrder, w, r)
|
|
}
|