2018-12-02 19:30:42 +01:00
|
|
|
// Copyright (c) 2018 Vikunja and contributors.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
2018-12-02 19:30:42 +01:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
2018-11-26 21:17:33 +01:00
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-12-02 19:30:42 +01:00
|
|
|
// GNU Lesser General Public License for more details.
|
2018-11-26 21:17:33 +01:00
|
|
|
//
|
2018-12-02 19:30:42 +01:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-11-26 21:17:33 +01:00
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
package handler
|
2018-07-11 01:45:11 +02:00
|
|
|
|
|
|
|
import (
|
2020-01-26 20:40:23 +01:00
|
|
|
"fmt"
|
2019-05-07 21:42:24 +02:00
|
|
|
"github.com/labstack/echo/v4"
|
2018-07-11 01:45:11 +02:00
|
|
|
"net/http"
|
|
|
|
)
|
|
|
|
|
2018-12-01 00:26:56 +01:00
|
|
|
type message struct {
|
|
|
|
Message string `json:"message"`
|
|
|
|
}
|
|
|
|
|
2018-07-11 01:45:11 +02:00
|
|
|
// DeleteWeb is the web handler to delete something
|
|
|
|
func (c *WebHandler) DeleteWeb(ctx echo.Context) error {
|
2018-10-11 17:53:59 +02:00
|
|
|
|
|
|
|
// Get our model
|
|
|
|
currentStruct := c.EmptyStruct()
|
|
|
|
|
2018-07-18 08:15:38 +02:00
|
|
|
// Bind params to struct
|
2019-06-28 09:13:17 +02:00
|
|
|
if err := ctx.Bind(currentStruct); err != nil {
|
2020-01-26 20:40:23 +01:00
|
|
|
config.LoggingProvider.Debugf("Invalid model error. Internal error was: %s", err.Error())
|
|
|
|
if he, is := err.(*echo.HTTPError); is {
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid model provided. Error was: %s", he.Message))
|
|
|
|
}
|
|
|
|
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("Invalid model provided."))
|
2018-07-11 01:45:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if the user has the right to delete
|
2019-03-24 10:13:40 +01:00
|
|
|
currentAuth, err := config.AuthProvider.AuthObject(ctx)
|
2018-07-11 01:45:11 +02:00
|
|
|
if err != nil {
|
|
|
|
return echo.NewHTTPError(http.StatusInternalServerError)
|
|
|
|
}
|
2019-03-24 13:35:50 +01:00
|
|
|
canDelete, err := currentStruct.CanDelete(currentAuth)
|
|
|
|
if err != nil {
|
|
|
|
return HandleHTTPError(err, ctx)
|
|
|
|
}
|
2019-03-29 18:29:44 +01:00
|
|
|
if !canDelete {
|
|
|
|
config.LoggingProvider.Noticef("Tried to delete while not having the rights for it (User: %v)", currentAuth)
|
2018-07-12 21:20:24 +02:00
|
|
|
return echo.NewHTTPError(http.StatusForbidden)
|
|
|
|
}
|
2018-07-11 01:45:11 +02:00
|
|
|
|
2018-10-11 17:53:59 +02:00
|
|
|
err = currentStruct.Delete()
|
2018-07-11 01:45:11 +02:00
|
|
|
if err != nil {
|
2018-12-01 00:26:56 +01:00
|
|
|
return HandleHTTPError(err, ctx)
|
2018-07-11 01:45:11 +02:00
|
|
|
}
|
|
|
|
|
2020-02-08 22:45:38 +01:00
|
|
|
err = ctx.JSON(http.StatusOK, message{"Successfully deleted."})
|
|
|
|
if err != nil {
|
|
|
|
return HandleHTTPError(err, ctx)
|
|
|
|
}
|
|
|
|
return err
|
2018-07-11 02:13:53 +02:00
|
|
|
}
|