File: add.go

package info (click to toggle)
golang-github-theupdateframework-go-tuf 2.0.2%2B0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,908 kB
  • sloc: python: 164; makefile: 89; sh: 37
file content (39 lines) | stat: -rw-r--r-- 929 bytes parent folder | download | duplicates (2)
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
package main

import (
	"encoding/json"

	"github.com/flynn/go-docopt"
	"github.com/theupdateframework/go-tuf"
)

func init() {
	register("add", cmdAdd, `
usage: tuf add [--expires=<days>] [--custom=<data>] [<path>...]

Add target file(s).

Alternatively, passphrases can be set via environment variables in the
form of TUF_{{ROLE}}_PASSPHRASE

Options:
  --expires=<days>   Set the targets metadata file to expire <days> days from now.
  --custom=<data>    Set custom JSON data for the target(s).
`)
}

func cmdAdd(args *docopt.Args, repo *tuf.Repo) error {
	var custom json.RawMessage
	if c := args.String["--custom"]; c != "" {
		custom = json.RawMessage(c)
	}
	paths := args.All["<path>"].([]string)
	if arg := args.String["--expires"]; arg != "" {
		expires, err := parseExpires(arg)
		if err != nil {
			return err
		}
		return repo.AddTargetsWithExpires(paths, custom, expires)
	}
	return repo.AddTargets(paths, custom)
}