/
githubmirror
/
client
Обзор
Документация
Войти
/
githubmirror
/
client
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
go/engine/profile_edit.go
60 строк
1 KB
Joshua Blum
Refactor trace to take a pointer to an error instead of a closure (#23779)
15 апр 2020, 21:08
Не верифицирован
15 апр 2020, 21:08
08da174
Код
Авторство
О чём код?
// Copyright 2015 Keybase, Inc. All rights reserved. Use of // this source code is governed by the included BSD license. package engine import ( "github.com/keybase/client/go/libkb" keybase1 "github.com/keybase/client/go/protocol/keybase1" ) type ProfileEdit struct { libkb.Contextified arg keybase1.ProfileEditArg } func NewProfileEdit(g *libkb.GlobalContext, arg keybase1.ProfileEditArg) *ProfileEdit { return &ProfileEdit{ Contextified: libkb.NewContextified(g), arg: arg, } } func (e *ProfileEdit) Run(m libkb.MetaContext) (err error) { defer m.Trace("ProfileEdit#Run", &err)() _, err = m.G().API.Post(m, libkb.APIArg{ Endpoint: "profile-edit", SessionType: libkb.APISessionTypeREQUIRED, Args: libkb.HTTPArgs{ "bio": libkb.S{Val: e.arg.Bio}, "full_name": libkb.S{Val: e.arg.FullName}, "location": libkb.S{Val: e.arg.Location}, }, }) if err != nil { return err } u := m.G().ActiveDevice.UID() m.Debug("Clearing Card cache for %s", u) _ = e.G().CardCache().Delete(u) _ = e.G().UIDMapper.ClearUIDFullName(m.Ctx(), m.G(), u) return nil } // Name is the unique engine name. func (e *ProfileEdit) Name() string { return "ProfileEdit" } // GetPrereqs returns the engine prereqs (none). func (e *ProfileEdit) Prereqs() Prereqs { return Prereqs{} } func (e *ProfileEdit) RequiredUIs() []libkb.UIKind { return nil } func (e *ProfileEdit) SubConsumers() []libkb.UIConsumer { return nil }