123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- // Copyright (C) 2019-2022 Nicola Murino
- //
- // This program is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Affero General Public License as published
- // by the Free Software Foundation, version 3.
- //
- // 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
- // GNU Affero General Public License for more details.
- //
- // You should have received a copy of the GNU Affero General Public License
- // along with this program. If not, see <https://www.gnu.org/licenses/>.
- package httpd
- import (
- "fmt"
- "net/http"
- "strconv"
- "github.com/sftpgo/sdk/plugin/eventsearcher"
- "github.com/drakkan/sftpgo/v2/internal/dataprovider"
- "github.com/drakkan/sftpgo/v2/internal/plugin"
- "github.com/drakkan/sftpgo/v2/internal/util"
- )
- func getCommonSearchParamsFromRequest(r *http.Request) (eventsearcher.CommonSearchParams, error) {
- c := eventsearcher.CommonSearchParams{}
- c.Limit = 100
- if _, ok := r.URL.Query()["limit"]; ok {
- limit, err := strconv.Atoi(r.URL.Query().Get("limit"))
- if err != nil {
- return c, util.NewValidationError(fmt.Sprintf("invalid limit: %v", err))
- }
- if limit < 1 || limit > 1000 {
- return c, util.NewValidationError(fmt.Sprintf("limit is out of the 1-1000 range: %v", limit))
- }
- c.Limit = limit
- }
- if _, ok := r.URL.Query()["order"]; ok {
- order := r.URL.Query().Get("order")
- if order != dataprovider.OrderASC && order != dataprovider.OrderDESC {
- return c, util.NewValidationError(fmt.Sprintf("invalid order %#v", order))
- }
- if order == dataprovider.OrderASC {
- c.Order = 1
- }
- }
- if _, ok := r.URL.Query()["start_timestamp"]; ok {
- ts, err := strconv.ParseInt(r.URL.Query().Get("start_timestamp"), 10, 64)
- if err != nil {
- return c, util.NewValidationError(fmt.Sprintf("invalid start_timestamp: %v", err))
- }
- c.StartTimestamp = ts
- }
- if _, ok := r.URL.Query()["end_timestamp"]; ok {
- ts, err := strconv.ParseInt(r.URL.Query().Get("end_timestamp"), 10, 64)
- if err != nil {
- return c, util.NewValidationError(fmt.Sprintf("invalid end_timestamp: %v", err))
- }
- c.EndTimestamp = ts
- }
- c.Actions = getCommaSeparatedQueryParam(r, "actions")
- c.Username = r.URL.Query().Get("username")
- c.IP = r.URL.Query().Get("ip")
- c.InstanceIDs = getCommaSeparatedQueryParam(r, "instance_ids")
- c.ExcludeIDs = getCommaSeparatedQueryParam(r, "exclude_ids")
- return c, nil
- }
- func getFsSearchParamsFromRequest(r *http.Request) (eventsearcher.FsEventSearch, error) {
- var err error
- s := eventsearcher.FsEventSearch{}
- s.CommonSearchParams, err = getCommonSearchParamsFromRequest(r)
- if err != nil {
- return s, err
- }
- s.FsProvider = -1
- if _, ok := r.URL.Query()["fs_provider"]; ok {
- provider := r.URL.Query().Get("fs_provider")
- val, err := strconv.Atoi(provider)
- if err != nil {
- return s, util.NewValidationError(fmt.Sprintf("invalid fs_provider: %v", provider))
- }
- s.FsProvider = val
- }
- s.IP = r.URL.Query().Get("ip")
- s.SSHCmd = r.URL.Query().Get("ssh_cmd")
- s.Bucket = r.URL.Query().Get("bucket")
- s.Endpoint = r.URL.Query().Get("endpoint")
- s.Protocols = getCommaSeparatedQueryParam(r, "protocols")
- statuses := getCommaSeparatedQueryParam(r, "statuses")
- for _, status := range statuses {
- val, err := strconv.Atoi(status)
- if err != nil {
- return s, util.NewValidationError(fmt.Sprintf("invalid status: %v", status))
- }
- s.Statuses = append(s.Statuses, int32(val))
- }
- return s, nil
- }
- func getProviderSearchParamsFromRequest(r *http.Request) (eventsearcher.ProviderEventSearch, error) {
- var err error
- s := eventsearcher.ProviderEventSearch{}
- s.CommonSearchParams, err = getCommonSearchParamsFromRequest(r)
- if err != nil {
- return s, err
- }
- s.ObjectName = r.URL.Query().Get("object_name")
- s.ObjectTypes = getCommaSeparatedQueryParam(r, "object_types")
- return s, nil
- }
- func searchFsEvents(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- filters, err := getFsSearchParamsFromRequest(r)
- if err != nil {
- sendAPIResponse(w, r, err, "", getRespStatus(err))
- return
- }
- data, _, _, err := plugin.Handler.SearchFsEvents(&filters)
- if err != nil {
- sendAPIResponse(w, r, err, "", getRespStatus(err))
- return
- }
- w.Header().Set("Content-Type", "application/json; charset=utf-8")
- w.Write(data) //nolint:errcheck
- }
- func searchProviderEvents(w http.ResponseWriter, r *http.Request) {
- r.Body = http.MaxBytesReader(w, r.Body, maxRequestSize)
- filters, err := getProviderSearchParamsFromRequest(r)
- if err != nil {
- sendAPIResponse(w, r, err, "", getRespStatus(err))
- return
- }
- data, _, _, err := plugin.Handler.SearchProviderEvents(&filters)
- if err != nil {
- sendAPIResponse(w, r, err, "", getRespStatus(err))
- return
- }
- w.Header().Set("Content-Type", "application/json; charset=utf-8")
- w.Write(data) //nolint:errcheck
- }
|