141 lines
2.8 KiB
Go
Raw Normal View History

2024-04-10 00:07:53 +07:00
package handler
import (
"bytes"
"encoding/json"
"io"
"net/http"
"os"
2024-04-11 00:27:57 +07:00
"github.com/rs/zerolog/log"
2024-04-10 00:07:53 +07:00
)
func Check_API_Key(Basepath string, accessKey string) bool {
URL := Basepath + "/api/user/me"
headers := map[string]string{
"X-Api-Key": accessKey,
}
GETStruct := URLRequest{
URL: URL,
Header: headers,
Method: "GET",
}
resp, err := HTTPNoData(GETStruct)
if err != nil {
2024-04-11 00:27:57 +07:00
// Boolean is returned. So, no error was allowed to be returned
log.Error().Msg(err.Error())
return false
}
defer resp.Body.Close()
return resp.StatusCode == http.StatusOK
}
2024-04-11 18:38:54 +07:00
func UploadPost(BasePath string, headers map[string]string, PostData UploadPostMeta) ([]byte, error) {
2024-04-10 00:07:53 +07:00
URL := BasePath + "/api/upload"
// Convert PostData to JSON
PostDataJson, err := json.Marshal(PostData)
if err != nil {
return nil, err
}
POSTStruct := URLRequest{
URL: URL,
ContentType: PostData.ContentType,
Method: "POST",
Header: headers,
}
2024-04-10 00:07:53 +07:00
resp, err := HTTPBytes(POSTStruct, bytes.NewBuffer(PostDataJson))
2024-04-10 00:07:53 +07:00
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
BodyRead, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return BodyRead, nil
} else {
return nil, err
2024-04-10 00:07:53 +07:00
}
}
// PUT to Network Storage(S3)
// URL argument is given from UploadPost Response!
func NetworkStoragePut(URL string, ContentType string, filepath string) ([]byte, error) {
// Open the file
file, err := os.Open(filepath)
if err != nil {
return nil, err
}
defer file.Close()
// Set ContentLenght
filestat, _ := file.Stat()
2024-04-10 00:07:53 +07:00
var filesize *int = new(int)
*filesize = int(filestat.Size())
2024-04-10 00:07:53 +07:00
headers := map[string]string{
"Content-Type": ContentType,
}
2024-04-10 00:07:53 +07:00
PUTStruct := URLRequest{
URL: URL,
ContentType: ContentType,
Method: "PUT",
Header: headers,
ContentLength: filesize,
}
2024-04-10 00:07:53 +07:00
// Send the request
resp, err := HTTPOSFile(PUTStruct, file)
2024-04-10 00:07:53 +07:00
if err != nil {
return nil, err
}
defer resp.Body.Close()
if resp.StatusCode == http.StatusOK {
BodyRead, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return BodyRead, nil
} else {
return nil, err
2024-04-10 00:07:53 +07:00
}
}
2024-04-11 18:38:54 +07:00
func UploadProcessPost(BasePath string, headers map[string]string, PostData UploadProcessMeta) ([]byte, error) {
2024-04-10 00:07:53 +07:00
URL := BasePath + "/api/upload/process"
// Convert PostData to JSON
PostDataJson, err := json.Marshal(PostData)
if err != nil {
return nil, err
}
POSTStruct := URLRequest{
2024-04-10 23:30:23 +07:00
URL: URL,
Method: "POST",
Header: headers,
}
2024-04-10 00:07:53 +07:00
resp, err := HTTPBytes(POSTStruct, bytes.NewBuffer(PostDataJson))
2024-04-10 00:07:53 +07:00
if err != nil {
return nil, err
}
if resp.StatusCode == http.StatusOK {
BodyRead, err := io.ReadAll(resp.Body)
if err != nil {
return nil, err
}
return BodyRead, nil
} else {
return nil, err
2024-04-10 00:07:53 +07:00
}
}