aboutsummaryrefslogtreecommitdiffstats
path: root/client/go/internal/admin/deploy/activate.go
blob: 1f475ff046168f96990c7d6acd21a6879c996cc4 (plain) (blame)
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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
// vespa-deploy command
// Author: arnej

package deploy

import (
	"fmt"
	"strconv"
)

// main entry point for vespa-deploy activate

func RunActivate(opts *Options, args []string) error {
	var sessId string
	if len(args) == 0 {
		sessId = getSessionIdFromFile(opts.Tenant)
	} else {
		sessId = args[0]
	}
	src := makeConfigsourceUrl(opts)
	url := src + pathPrefix(opts) + "/" + sessId + "/active"
	url = addUrlPropertyFromFlag(url, opts.Verbose, "verbose")
	url = addUrlPropertyFromOption(url, strconv.Itoa(opts.Timeout), "timeout")
	fmt.Printf("Activating session %s using %s\n", sessId, urlWithoutQuery(url))
	output, err := curlPutNothing(url)
	if err != nil {
		return err
	}
	var result ActivateResult
	code, err := decodeResponse(output, &result)
	if err != nil {
		return err
	}
	if code == 200 {
		fmt.Println(result.Message)
		fmt.Println("Checksum:  ", result.Application.Checksum)
		fmt.Println("Timestamp: ", result.Deploy.Timestamp)
		fmt.Println("Generation:", result.Application.Generation)
	} else {
		err = fmt.Errorf("Request failed. HTTP status code: %d\n%s", code, result.Message)
	}
	return err
}