autogits/bots-common/request_repo.go

73 lines
1.5 KiB
Go
Raw Normal View History

2024-07-07 21:08:41 +02:00
package common
import (
"encoding/json"
"fmt"
"io"
"strings"
)
type Repository struct {
Id uint
Name string
Full_Name string
Fork bool
Parent *Repository
2024-07-09 23:22:42 +02:00
Owner *Organization
2024-07-07 21:08:41 +02:00
Clone_Url string
Ssh_Url string
Default_Branch string
Object_Format_Name string
}
type Organization struct {
Id uint
Username string
}
type User struct {
Id uint
Username string
}
2024-08-28 00:45:47 +02:00
type RepositoryWebhookEvent struct {
2024-07-07 21:08:41 +02:00
Action string
2024-08-24 21:39:50 +02:00
Sender *User
Organization *Organization
Repository *Repository
2024-07-07 21:08:41 +02:00
PrjGit string
}
2024-08-28 00:45:47 +02:00
func (r *RepositoryWebhookEvent) GetAction() string {
return r.Action
}
2024-07-07 21:08:41 +02:00
// TODO: sanity check values!!!!
2024-08-28 17:20:09 +02:00
func (h *RequestHandler) parseRepositoryRequest(dataReader io.Reader) (data *RepositoryWebhookEvent, err error) {
data = new(RepositoryWebhookEvent)
if err = json.NewDecoder(dataReader).Decode(&data); err != nil {
return nil, err
2024-07-07 21:08:41 +02:00
}
repoIdx := strings.LastIndex(data.Repository.Ssh_Url, "/")
if repoIdx == -1 || data.Repository.Ssh_Url[repoIdx+1:] != data.Repository.Name+".git" {
2024-08-28 17:53:15 +02:00
return nil, fmt.Errorf("Unexpected URL for SSH repository: %s", data.Repository.Name)
2024-07-07 21:08:41 +02:00
}
data.PrjGit = data.Repository.Ssh_Url[:repoIdx+1] + DefaultGitPrj + ".git"
2024-08-24 13:32:39 +02:00
h.StdLogger.Printf("Request '%s' for repo: %s\n", data.Action, data.Repository.Full_Name)
2024-07-07 21:08:41 +02:00
if len(data.Action) < 1 {
2024-08-28 17:20:09 +02:00
return nil, fmt.Errorf("Request has no data.... skipping")
2024-07-07 21:08:41 +02:00
}
2024-08-30 14:31:10 +02:00
h.Request = &Request {
Data: data,
Type: RequestType_Repository,
}
2024-08-28 17:20:09 +02:00
return data, nil
2024-07-07 21:08:41 +02:00
}