This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
e621-sdk-go/e621/request.go
Lennard Brinkhaus 31bd0cf639 api-call-system-#10 (#13)
Co-authored-by: Fenpaws <soxx@fenpa.ws>
Reviewed-on: anthrove/e621-to-graph#13
Reviewed-by: SoXX <fenpaws@noreply.localhost>
Co-authored-by: Lennard Brinkhaus <lennard.brinkhaus@noreply.localhost>
Co-committed-by: Lennard Brinkhaus <lennard.brinkhaus@noreply.localhost>
2023-07-17 08:10:13 +00:00

40 lines
806 B
Go

package e621
import (
"e621_to_neo4j/utils"
"fmt"
log "github.com/sirupsen/logrus"
"net/http"
)
func ExecuteGetAPIRequest(schedulerTask utils.SchedulerTask) {
var err error
log.Debug("executing scheduler task")
url := fmt.Sprintf("%s/%s", baseURL, schedulerTask.UriPath())
req, err := http.NewRequest("GET", url, nil)
if err != nil {
schedulerTask.SendError(err)
return
}
req.Header.Set("User-Agent", "FavGetter (by Selloo)")
req.Header.Add("Accept", "application/json")
req.SetBasicAuth(schedulerTask.BasicAuth())
client := http.Client{}
resp, err := client.Do(req)
if err != nil {
schedulerTask.SendStatusCode(resp.StatusCode)
return
}
if resp.StatusCode != http.StatusOK {
schedulerTask.SendStatusCode(resp.StatusCode)
return
}
schedulerTask.SendResponse(resp)
}