forked from keybase/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
favorite_add.go
64 lines (54 loc) · 1.45 KB
/
favorite_add.go
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
// Copyright 2015 Keybase, Inc. All rights reserved. Use of
// this source code is governed by the included BSD license.
package engine
import (
"fmt"
"github.com/keybase/client/go/libkb"
keybase1 "github.com/keybase/client/go/protocol"
)
// FavoriteAdd is an engine.
type FavoriteAdd struct {
arg *keybase1.FavoriteAddArg
libkb.Contextified
}
// NewFavoriteAdd creates a FavoriteAdd engine.
func NewFavoriteAdd(arg *keybase1.FavoriteAddArg, g *libkb.GlobalContext) *FavoriteAdd {
return &FavoriteAdd{
arg: arg,
Contextified: libkb.NewContextified(g),
}
}
// Name is the unique engine name.
func (e *FavoriteAdd) Name() string {
return "FavoriteAdd"
}
// GetPrereqs returns the engine prereqs.
func (e *FavoriteAdd) Prereqs() Prereqs {
return Prereqs{
Device: true,
}
}
// RequiredUIs returns the required UIs.
func (e *FavoriteAdd) RequiredUIs() []libkb.UIKind {
return []libkb.UIKind{}
}
// SubConsumers returns the other UI consumers for this engine.
func (e *FavoriteAdd) SubConsumers() []libkb.UIConsumer {
return nil
}
// Run starts the engine.
func (e *FavoriteAdd) Run(ctx *Context) error {
if e.arg == nil {
return fmt.Errorf("FavoriteAdd arg is nil")
}
_, err := e.G().API.Post(libkb.APIArg{
Endpoint: "kbfs/favorite/add",
NeedSession: true,
Args: libkb.HTTPArgs{
"tlf_name": libkb.S{Val: e.arg.Folder.Name},
"private": libkb.B{Val: e.arg.Folder.Private},
"status": libkb.S{Val: "favorite"},
},
})
return err
}