From e904a0672267d8f1b25fe92d0b08282f8b5b8d18 Mon Sep 17 00:00:00 2001 From: heyujie <516346543@qq.com> Date: 星期五, 26 十一月 2021 14:01:30 +0800 Subject: [PATCH] 增加接口 GetUserProfile --- userApi.go | 23 +++++++++++++++++++---- 1 files changed, 19 insertions(+), 4 deletions(-) diff --git a/userApi.go b/userApi.go index f97f2a5..2372adf 100644 --- a/userApi.go +++ b/userApi.go @@ -27,7 +27,7 @@ } func (api UserApi) FindAllUser(curUserId string) (bool,interface{}) { - url := DATA_URL_PREFIX + "/user/findAllUser" + url := "/data/api-u/users/findAllUser" netNode := getNetNode(url2Topic(Topic_System_Service, url)) client := NewClient(WithNodes(netNode)) query := map[string]string { @@ -46,7 +46,7 @@ } func (api UserApi) FindById(userId string) (bool,interface{}) { - url := DATA_URL_PREFIX + "/user/findById" + url := "/data/api-u/users/findById" netNode := getNetNode(url2Topic(Topic_System_Service, url)) client := NewClient(WithNodes(netNode)) paramBody := map[string]interface{}{ @@ -63,8 +63,23 @@ return res.Success,res.Data } +func (api UserApi) GetUserProfile(userId string) (bool,interface{}) { + url := "/data/api-u/users/profile" + netNode := getNetNode(url2Topic(Topic_System_Service, url)) + client := NewClient(WithNodes(netNode)) + respBody, err := client.DoGetRequest(url,nil, nil) + if err != nil { + return false,nil + } + var res Result + if err = json.Unmarshal(respBody, &res); err != nil { + return false,nil + } + return res.Success,res.Data +} + func (api UserApi) SaveAuth(paramBody map[string]interface{}) (bool,interface{}) { - url := DATA_URL_PREFIX + "/user/saveAuth" + url := "/data/api-u/users/saveAuth" netNode := getNetNode(url2Topic(Topic_System_Service, url)) client := NewClient(WithNodes(netNode)) respBody, err := client.DoPostRequest(url, CONTENT_TYPE_JSON, paramBody,nil, nil) @@ -79,7 +94,7 @@ } func (api UserApi) UpdatePwd(userId string, oldPwd string, newPwd string) (bool,interface{}) { - url := DATA_URL_PREFIX + "/user/updatePwd" + url := "/data/api-u/users/updatePwd" netNode := getNetNode(url2Topic(Topic_System_Service, url)) client := NewClient(WithNodes(netNode)) paramBody := map[string]interface{}{ -- Gitblit v1.8.0