summaryrefslogtreecommitdiff
path: root/go/cmd/gitaly-upload-archive/main.go
blob: c988baaf1c293e1172a11fd5aa658be850494078 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package main

import (
	"encoding/json"
	"fmt"
	"os"

	"gitlab.com/gitlab-org/gitlab-shell/go/internal/handler"
	"gitlab.com/gitlab-org/gitlab-shell/go/internal/logger"

	pb "gitlab.com/gitlab-org/gitaly-proto/go"
)

func init() {
	logger.ProgName = "gitaly-upload-archive"
}

type uploadArchiveHandler func(gitalyAddress string, request *pb.SSHUploadArchiveRequest) (int32, error)

func main() {
	if err := handler.Prepare(); err != nil {
		logger.Fatal("preparation failed", err)
	}

	code, err := uploadArchive(handler.UploadArchive, os.Args)

	if err != nil {
		logger.Fatal("upload-archive failed", err)
	}

	os.Exit(int(code))
}

func uploadArchive(handler uploadArchiveHandler, args []string) (int32, error) {
	if n := len(args); n != 3 {
		return 0, fmt.Errorf("wrong number of arguments: expected 2 arguments, got %v", args)
	}

	var request pb.SSHUploadArchiveRequest
	if err := json.Unmarshal([]byte(args[2]), &request); err != nil {
		return 0, fmt.Errorf("unmarshaling request json failed: %v", err)
	}

	return handler(args[1], &request)
}