mirror of
https://github.com/silenceper/wechat.git
synced 2026-02-23 13:42:25 +08:00
Compare commits
20 Commits
feature/au
...
f45781cc69
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f45781cc69 | ||
|
|
f187fc0347 | ||
|
|
479ff1f242 | ||
|
|
3f1c5e7637 | ||
|
|
af158c680a | ||
|
|
12f76c4b67 | ||
|
|
da5067bcb2 | ||
|
|
0359086e28 | ||
|
|
aea22236be | ||
|
|
e8c430e0a3 | ||
|
|
8f10936479 | ||
|
|
9bfebc8a27 | ||
|
|
4f6cbc3d59 | ||
|
|
49c4cfaf54 | ||
|
|
ead8a6fadb | ||
|
|
ae40639b56 | ||
|
|
8bb145155e | ||
|
|
85bf989242 | ||
|
|
b4f2d1793c | ||
|
|
4a2c44c7c8 |
29
.github/workflows/release.yml
vendored
29
.github/workflows/release.yml
vendored
@@ -1,29 +0,0 @@
|
|||||||
name: goreleaser
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- '*'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
goreleaser:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
-
|
|
||||||
name: Checkout
|
|
||||||
uses: actions/checkout@v3
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
-
|
|
||||||
name: Set up Go
|
|
||||||
uses: actions/setup-go@v4
|
|
||||||
with:
|
|
||||||
go-version: 1.16
|
|
||||||
-
|
|
||||||
name: Run GoReleaser
|
|
||||||
uses: goreleaser/goreleaser-action@v4
|
|
||||||
with:
|
|
||||||
version: latest
|
|
||||||
args: release --rm-dist
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
# This is an example goreleaser.yaml file with some sane defaults.
|
|
||||||
# Make sure to check the documentation at http://goreleaser.com
|
|
||||||
before:
|
|
||||||
hooks:
|
|
||||||
# You may remove this if you don't use go modules.
|
|
||||||
- go mod download
|
|
||||||
# you may remove this if you don't need go generate
|
|
||||||
- go generate ./...
|
|
||||||
builds:
|
|
||||||
- skip: true
|
|
||||||
|
|
||||||
archives:
|
|
||||||
- replacements:
|
|
||||||
darwin: Darwin
|
|
||||||
linux: Linux
|
|
||||||
windows: Windows
|
|
||||||
386: i386
|
|
||||||
amd64: x86_64
|
|
||||||
|
|
||||||
checksum:
|
|
||||||
name_template: 'checksums.txt'
|
|
||||||
snapshot:
|
|
||||||
name_template: "{{ .Tag }}-next"
|
|
||||||
changelog:
|
|
||||||
sort: asc
|
|
||||||
filters:
|
|
||||||
exclude:
|
|
||||||
- '^docs:'
|
|
||||||
- '^test:'
|
|
||||||
@@ -66,8 +66,9 @@ func (ak *DefaultAccessToken) GetAccessToken() (accessToken string, err error) {
|
|||||||
func (ak *DefaultAccessToken) GetAccessTokenContext(ctx context.Context) (accessToken string, err error) {
|
func (ak *DefaultAccessToken) GetAccessTokenContext(ctx context.Context) (accessToken string, err error) {
|
||||||
// 先从cache中取
|
// 先从cache中取
|
||||||
accessTokenCacheKey := fmt.Sprintf("%s_access_token_%s", ak.cacheKeyPrefix, ak.appID)
|
accessTokenCacheKey := fmt.Sprintf("%s_access_token_%s", ak.cacheKeyPrefix, ak.appID)
|
||||||
if val := ak.cache.Get(accessTokenCacheKey); val != nil {
|
val := ak.cache.Get(accessTokenCacheKey)
|
||||||
return val.(string), nil
|
if accessToken = val.(string); accessToken != "" {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// 加上lock,是为了防止在并发获取token时,cache刚好失效,导致从微信服务器上获取到不同token
|
// 加上lock,是为了防止在并发获取token时,cache刚好失效,导致从微信服务器上获取到不同token
|
||||||
@@ -75,8 +76,9 @@ func (ak *DefaultAccessToken) GetAccessTokenContext(ctx context.Context) (access
|
|||||||
defer ak.accessTokenLock.Unlock()
|
defer ak.accessTokenLock.Unlock()
|
||||||
|
|
||||||
// 双检,防止重复从微信服务器获取
|
// 双检,防止重复从微信服务器获取
|
||||||
if val := ak.cache.Get(accessTokenCacheKey); val != nil {
|
val = ak.cache.Get(accessTokenCacheKey)
|
||||||
return val.(string), nil
|
if accessToken = val.(string); accessToken != "" {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// cache失效,从微信服务器获取
|
// cache失效,从微信服务器获取
|
||||||
|
|||||||
@@ -116,5 +116,14 @@ host: https://qyapi.weixin.qq.com/
|
|||||||
| ---------------- | -------- | --------------------- | ---------- | -------------------------- | -------- |
|
| ---------------- | -------- | --------------------- | ---------- | -------------------------- | -------- |
|
||||||
| 群机器人发送消息 | POST | /cgi-bin/webhook/send | YES | (r *Client) RobotBroadcast | chcthink |
|
| 群机器人发送消息 | POST | /cgi-bin/webhook/send | YES | (r *Client) RobotBroadcast | chcthink |
|
||||||
|
|
||||||
|
## 打卡
|
||||||
|
|
||||||
|
[官方文档](https://developer.work.weixin.qq.com/document/path/96497)
|
||||||
|
|
||||||
|
| 名称 | 请求方式 | URL | 是否已实现 | 使用方法 | 贡献者 |
|
||||||
|
|----------| -------- | --------------------- | ---------- | -------------------------- |---------|
|
||||||
|
| 获取打卡日报数据 | POST | /cgi-bin/checkin/getcheckin_daydata | YES | (r *Client) GetDayData | Thinker |
|
||||||
|
| 获取打卡月报数据 | POST | /cgi-bin/checkin/getcheckin_monthdata | YES | (r *Client) GetMonthData | Thinker |
|
||||||
|
|
||||||
## 应用管理
|
## 应用管理
|
||||||
TODO
|
TODO
|
||||||
|
|||||||
@@ -180,7 +180,7 @@ type MediaInfo struct {
|
|||||||
CreateTime int64 `json:"create_time"` // 上传时间,时间戳。
|
CreateTime int64 `json:"create_time"` // 上传时间,时间戳。
|
||||||
ExpireTime int64 `json:"expire_time"` // 过期时间,时间戳。
|
ExpireTime int64 `json:"expire_time"` // 过期时间,时间戳。
|
||||||
DramaID int64 `json:"drama_id"` // 所属剧目 id。
|
DramaID int64 `json:"drama_id"` // 所属剧目 id。
|
||||||
FileSize string `json:"file_size"` // 媒资文件大小,单位:字节。
|
FileSize int64 `json:"file_size"` // 媒资文件大小,单位:字节。
|
||||||
Duration int64 `json:"duration"` // 播放时长,单位:秒。
|
Duration int64 `json:"duration"` // 播放时长,单位:秒。
|
||||||
Name string `json:"name"` // 媒资文件名。
|
Name string `json:"name"` // 媒资文件名。
|
||||||
Description string `json:"description"` // 描述。
|
Description string `json:"description"` // 描述。
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// SingleFileUpload 单文件上传
|
// SingleFileUpload 单文件上传
|
||||||
func (s *MiniDrama) SingleFileUpload(ctx context.Context, in *SingleFileUploadRequest) (out *SingleFileUploadResponse, err error) {
|
func (s *MiniDrama) SingleFileUpload(ctx context.Context, in *SingleFileUploadRequest) (out SingleFileUploadResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, singleFileUpload); err != nil {
|
if address, err = s.requestAddress(ctx, singleFileUpload); err != nil {
|
||||||
return
|
return
|
||||||
@@ -76,12 +76,12 @@ func (s *MiniDrama) SingleFileUpload(ctx context.Context, in *SingleFileUploadRe
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "SingleFileUpload")
|
err = util.DecodeWithError(response, &out, "SingleFileUpload")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// PullUpload 拉取上传
|
// PullUpload 拉取上传
|
||||||
func (s *MiniDrama) PullUpload(ctx context.Context, in *PullUploadRequest) (out *PullUploadResponse, err error) {
|
func (s *MiniDrama) PullUpload(ctx context.Context, in *PullUploadRequest) (out PullUploadResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, pullUpload); err != nil {
|
if address, err = s.requestAddress(ctx, pullUpload); err != nil {
|
||||||
return
|
return
|
||||||
@@ -92,12 +92,12 @@ func (s *MiniDrama) PullUpload(ctx context.Context, in *PullUploadRequest) (out
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "PullUpload")
|
err = util.DecodeWithError(response, &out, "PullUpload")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetTask 查询任务状态
|
// GetTask 查询任务状态
|
||||||
func (s *MiniDrama) GetTask(ctx context.Context, in *GetTaskRequest) (out *GetTaskResponse, err error) {
|
func (s *MiniDrama) GetTask(ctx context.Context, in *GetTaskRequest) (out GetTaskResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, getTask); err != nil {
|
if address, err = s.requestAddress(ctx, getTask); err != nil {
|
||||||
return
|
return
|
||||||
@@ -109,12 +109,12 @@ func (s *MiniDrama) GetTask(ctx context.Context, in *GetTaskRequest) (out *GetTa
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "GetTask")
|
err = util.DecodeWithError(response, &out, "GetTask")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// ApplyUpload 申请分片上传
|
// ApplyUpload 申请分片上传
|
||||||
func (s *MiniDrama) ApplyUpload(ctx context.Context, in *ApplyUploadRequest) (out *ApplyUploadResponse, err error) {
|
func (s *MiniDrama) ApplyUpload(ctx context.Context, in *ApplyUploadRequest) (out ApplyUploadResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, applyUpload); err != nil {
|
if address, err = s.requestAddress(ctx, applyUpload); err != nil {
|
||||||
return
|
return
|
||||||
@@ -126,13 +126,13 @@ func (s *MiniDrama) ApplyUpload(ctx context.Context, in *ApplyUploadRequest) (ou
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "ApplyUpload")
|
err = util.DecodeWithError(response, &out, "ApplyUpload")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// UploadPart 上传分片
|
// UploadPart 上传分片
|
||||||
// Content-Type 需要指定为 multipart/form-data; boundary=<delimiter>,<箭头括号>表示必须替换为有效值的变量。
|
// Content-Type 需要指定为 multipart/form-data; boundary=<delimiter>,<箭头括号>表示必须替换为有效值的变量。
|
||||||
func (s *MiniDrama) UploadPart(ctx context.Context, in *UploadPartRequest) (out *UploadPartResponse, err error) {
|
func (s *MiniDrama) UploadPart(ctx context.Context, in *UploadPartRequest) (out UploadPartResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, uploadPart); err != nil {
|
if address, err = s.requestAddress(ctx, uploadPart); err != nil {
|
||||||
return
|
return
|
||||||
@@ -165,12 +165,12 @@ func (s *MiniDrama) UploadPart(ctx context.Context, in *UploadPartRequest) (out
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "UploadPart")
|
err = util.DecodeWithError(response, &out, "UploadPart")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// CommitUpload 确认上传
|
// CommitUpload 确认上传
|
||||||
func (s *MiniDrama) CommitUpload(ctx context.Context, in *CommitUploadRequest) (out *CommitUploadResponse, err error) {
|
func (s *MiniDrama) CommitUpload(ctx context.Context, in *CommitUploadRequest) (out CommitUploadResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, commitUpload); err != nil {
|
if address, err = s.requestAddress(ctx, commitUpload); err != nil {
|
||||||
return
|
return
|
||||||
@@ -182,12 +182,12 @@ func (s *MiniDrama) CommitUpload(ctx context.Context, in *CommitUploadRequest) (
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "CommitUpload")
|
err = util.DecodeWithError(response, &out, "CommitUpload")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// ListMedia 获取媒体列表
|
// ListMedia 获取媒体列表
|
||||||
func (s *MiniDrama) ListMedia(ctx context.Context, in *ListMediaRequest) (out *ListMediaResponse, err error) {
|
func (s *MiniDrama) ListMedia(ctx context.Context, in *ListMediaRequest) (out ListMediaResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, listMedia); err != nil {
|
if address, err = s.requestAddress(ctx, listMedia); err != nil {
|
||||||
return
|
return
|
||||||
@@ -199,12 +199,12 @@ func (s *MiniDrama) ListMedia(ctx context.Context, in *ListMediaRequest) (out *L
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "ListMedia")
|
err = util.DecodeWithError(response, &out, "ListMedia")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMedia 获取媒资详细信息
|
// GetMedia 获取媒资详细信息
|
||||||
func (s *MiniDrama) GetMedia(ctx context.Context, in *GetMediaRequest) (out *GetMediaResponse, err error) {
|
func (s *MiniDrama) GetMedia(ctx context.Context, in *GetMediaRequest) (out GetMediaResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, getMedia); err != nil {
|
if address, err = s.requestAddress(ctx, getMedia); err != nil {
|
||||||
return
|
return
|
||||||
@@ -216,12 +216,12 @@ func (s *MiniDrama) GetMedia(ctx context.Context, in *GetMediaRequest) (out *Get
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "GetMedia")
|
err = util.DecodeWithError(response, &out, "GetMedia")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMediaLink 获取媒资播放链接
|
// GetMediaLink 获取媒资播放链接
|
||||||
func (s *MiniDrama) GetMediaLink(ctx context.Context, in *GetMediaLinkRequest) (out *GetMediaLinkResponse, err error) {
|
func (s *MiniDrama) GetMediaLink(ctx context.Context, in *GetMediaLinkRequest) (out GetMediaLinkResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, getMediaLink); err != nil {
|
if address, err = s.requestAddress(ctx, getMediaLink); err != nil {
|
||||||
return
|
return
|
||||||
@@ -233,12 +233,12 @@ func (s *MiniDrama) GetMediaLink(ctx context.Context, in *GetMediaLinkRequest) (
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "GetMediaLink")
|
err = util.DecodeWithError(response, &out, "GetMediaLink")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// DeleteMedia 删除媒体
|
// DeleteMedia 删除媒体
|
||||||
func (s *MiniDrama) DeleteMedia(ctx context.Context, in *DeleteMediaRequest) (out *DeleteMediaResponse, err error) {
|
func (s *MiniDrama) DeleteMedia(ctx context.Context, in *DeleteMediaRequest) (out DeleteMediaResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, deleteMedia); err != nil {
|
if address, err = s.requestAddress(ctx, deleteMedia); err != nil {
|
||||||
return
|
return
|
||||||
@@ -250,12 +250,12 @@ func (s *MiniDrama) DeleteMedia(ctx context.Context, in *DeleteMediaRequest) (ou
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "DeleteMedia")
|
err = util.DecodeWithError(response, &out, "DeleteMedia")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// AuditDrama 审核剧本
|
// AuditDrama 审核剧本
|
||||||
func (s *MiniDrama) AuditDrama(ctx context.Context, in *AuditDramaRequest) (out *AuditDramaResponse, err error) {
|
func (s *MiniDrama) AuditDrama(ctx context.Context, in *AuditDramaRequest) (out AuditDramaResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, auditDrama); err != nil {
|
if address, err = s.requestAddress(ctx, auditDrama); err != nil {
|
||||||
return
|
return
|
||||||
@@ -267,12 +267,12 @@ func (s *MiniDrama) AuditDrama(ctx context.Context, in *AuditDramaRequest) (out
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "AuditDrama")
|
err = util.DecodeWithError(response, &out, "AuditDrama")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// ListDramas 获取剧目列表
|
// ListDramas 获取剧目列表
|
||||||
func (s *MiniDrama) ListDramas(ctx context.Context, in *ListDramasRequest) (out *ListDramasResponse, err error) {
|
func (s *MiniDrama) ListDramas(ctx context.Context, in *ListDramasRequest) (out ListDramasResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, listDramas); err != nil {
|
if address, err = s.requestAddress(ctx, listDramas); err != nil {
|
||||||
return
|
return
|
||||||
@@ -284,12 +284,12 @@ func (s *MiniDrama) ListDramas(ctx context.Context, in *ListDramasRequest) (out
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "ListDramas")
|
err = util.DecodeWithError(response, &out, "ListDramas")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetDrama 获取剧目信息
|
// GetDrama 获取剧目信息
|
||||||
func (s *MiniDrama) GetDrama(ctx context.Context, in *GetDramaRequest) (out *GetDramaResponse, err error) {
|
func (s *MiniDrama) GetDrama(ctx context.Context, in *GetDramaRequest) (out GetDramaResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, getDrama); err != nil {
|
if address, err = s.requestAddress(ctx, getDrama); err != nil {
|
||||||
return
|
return
|
||||||
@@ -300,12 +300,12 @@ func (s *MiniDrama) GetDrama(ctx context.Context, in *GetDramaRequest) (out *Get
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "GetDrama")
|
err = util.DecodeWithError(response, &out, "GetDrama")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetCdnUsageData 查询 CDN 用量数据
|
// GetCdnUsageData 查询 CDN 用量数据
|
||||||
func (s *MiniDrama) GetCdnUsageData(ctx context.Context, in *GetCdnUsageDataRequest) (out *GetCdnUsageDataResponse, err error) {
|
func (s *MiniDrama) GetCdnUsageData(ctx context.Context, in *GetCdnUsageDataRequest) (out GetCdnUsageDataResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, getCdnUsageData); err != nil {
|
if address, err = s.requestAddress(ctx, getCdnUsageData); err != nil {
|
||||||
return
|
return
|
||||||
@@ -316,12 +316,12 @@ func (s *MiniDrama) GetCdnUsageData(ctx context.Context, in *GetCdnUsageDataRequ
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "GetCdnUsageData")
|
err = util.DecodeWithError(response, &out, "GetCdnUsageData")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetCdnLogs 查询 CDN 日志
|
// GetCdnLogs 查询 CDN 日志
|
||||||
func (s *MiniDrama) GetCdnLogs(ctx context.Context, in *GetCdnLogsRequest) (out *GetCdnLogsResponse, err error) {
|
func (s *MiniDrama) GetCdnLogs(ctx context.Context, in *GetCdnLogsRequest) (out GetCdnLogsResponse, err error) {
|
||||||
var address string
|
var address string
|
||||||
if address, err = s.requestAddress(ctx, getCdnLogs); err != nil {
|
if address, err = s.requestAddress(ctx, getCdnLogs); err != nil {
|
||||||
return
|
return
|
||||||
@@ -332,7 +332,7 @@ func (s *MiniDrama) GetCdnLogs(ctx context.Context, in *GetCdnLogsRequest) (out
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "GetCdnLogs")
|
err = util.DecodeWithError(response, &out, "GetCdnLogs")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -37,7 +37,7 @@ func (s *VirtualPayment) SetSessionKey(sessionKey string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// QueryUserBalance 查询虚拟支付余额
|
// QueryUserBalance 查询虚拟支付余额
|
||||||
func (s *VirtualPayment) QueryUserBalance(ctx context.Context, in *QueryUserBalanceRequest) (out *QueryUserBalanceResponse, err error) {
|
func (s *VirtualPayment) QueryUserBalance(ctx context.Context, in *QueryUserBalanceRequest) (out QueryUserBalanceResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -60,12 +60,12 @@ func (s *VirtualPayment) QueryUserBalance(ctx context.Context, in *QueryUserBala
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "QueryUserBalance")
|
err = util.DecodeWithError(response, &out, "QueryUserBalance")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// CurrencyPay currency pay 扣减代币(一般用于代币支付)
|
// CurrencyPay currency pay 扣减代币(一般用于代币支付)
|
||||||
func (s *VirtualPayment) CurrencyPay(ctx context.Context, in *CurrencyPayRequest) (out *CurrencyPayResponse, err error) {
|
func (s *VirtualPayment) CurrencyPay(ctx context.Context, in *CurrencyPayRequest) (out CurrencyPayResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -88,12 +88,12 @@ func (s *VirtualPayment) CurrencyPay(ctx context.Context, in *CurrencyPayRequest
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "CurrencyPay")
|
err = util.DecodeWithError(response, &out, "CurrencyPay")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// QueryOrder 查询创建的订单(现金单,非代币单)
|
// QueryOrder 查询创建的订单(现金单,非代币单)
|
||||||
func (s *VirtualPayment) QueryOrder(ctx context.Context, in *QueryOrderRequest) (out *QueryOrderResponse, err error) {
|
func (s *VirtualPayment) QueryOrder(ctx context.Context, in *QueryOrderRequest) (out QueryOrderResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -116,12 +116,12 @@ func (s *VirtualPayment) QueryOrder(ctx context.Context, in *QueryOrderRequest)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "QueryOrder")
|
err = util.DecodeWithError(response, &out, "QueryOrder")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// CancelCurrencyPay 取消订单 代币支付退款 (currency_pay 接口的逆操作)
|
// CancelCurrencyPay 取消订单 代币支付退款 (currency_pay 接口的逆操作)
|
||||||
func (s *VirtualPayment) CancelCurrencyPay(ctx context.Context, in *CancelCurrencyPayRequest) (out *CancelCurrencyPayResponse, err error) {
|
func (s *VirtualPayment) CancelCurrencyPay(ctx context.Context, in *CancelCurrencyPayRequest) (out CancelCurrencyPayResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -144,13 +144,13 @@ func (s *VirtualPayment) CancelCurrencyPay(ctx context.Context, in *CancelCurren
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "CancelCurrencyPay")
|
err = util.DecodeWithError(response, &out, "CancelCurrencyPay")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// NotifyProvideGoods 通知发货
|
// NotifyProvideGoods 通知发货
|
||||||
// 通知已经发货完成(只能通知现金单),正常通过 xpay_goods_deliver_notify 消息推送返回成功就不需要调用这个 api 接口。这个接口用于异常情况推送不成功时手动将单改成已发货状态
|
// 通知已经发货完成(只能通知现金单),正常通过 xpay_goods_deliver_notify 消息推送返回成功就不需要调用这个 api 接口。这个接口用于异常情况推送不成功时手动将单改成已发货状态
|
||||||
func (s *VirtualPayment) NotifyProvideGoods(ctx context.Context, in *NotifyProvideGoodsRequest) (out *NotifyProvideGoodsResponse, err error) {
|
func (s *VirtualPayment) NotifyProvideGoods(ctx context.Context, in *NotifyProvideGoodsRequest) (out NotifyProvideGoodsResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -174,12 +174,12 @@ func (s *VirtualPayment) NotifyProvideGoods(ctx context.Context, in *NotifyProvi
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "NotifyProvideGoods")
|
err = util.DecodeWithError(response, &out, "NotifyProvideGoods")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// PresentCurrency 代币赠送接口,由于目前不支付按单号查赠送单的功能,所以当需要赠送的时候可以一直重试到返回 0 或者返回 268490004(重复操作)为止
|
// PresentCurrency 代币赠送接口,由于目前不支付按单号查赠送单的功能,所以当需要赠送的时候可以一直重试到返回 0 或者返回 268490004(重复操作)为止
|
||||||
func (s *VirtualPayment) PresentCurrency(ctx context.Context, in *PresentCurrencyRequest) (out *PresentCurrencyResponse, err error) {
|
func (s *VirtualPayment) PresentCurrency(ctx context.Context, in *PresentCurrencyRequest) (out PresentCurrencyResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -203,12 +203,12 @@ func (s *VirtualPayment) PresentCurrency(ctx context.Context, in *PresentCurrenc
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "PresentCurrency")
|
err = util.DecodeWithError(response, &out, "PresentCurrency")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// DownloadBill 下载订单交易账单
|
// DownloadBill 下载订单交易账单
|
||||||
func (s *VirtualPayment) DownloadBill(ctx context.Context, in *DownloadBillRequest) (out *DownloadBillResponse, err error) {
|
func (s *VirtualPayment) DownloadBill(ctx context.Context, in *DownloadBillRequest) (out DownloadBillResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -232,12 +232,12 @@ func (s *VirtualPayment) DownloadBill(ctx context.Context, in *DownloadBillReque
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "DownloadBill")
|
err = util.DecodeWithError(response, &out, "DownloadBill")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// RefundOrder 退款 对使用 jsapi 接口下的单进行退款
|
// RefundOrder 退款 对使用 jsapi 接口下的单进行退款
|
||||||
func (s *VirtualPayment) RefundOrder(ctx context.Context, in *RefundOrderRequest) (out *RefundOrderResponse, err error) {
|
func (s *VirtualPayment) RefundOrder(ctx context.Context, in *RefundOrderRequest) (out RefundOrderResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -261,12 +261,12 @@ func (s *VirtualPayment) RefundOrder(ctx context.Context, in *RefundOrderRequest
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "RefundOrder")
|
err = util.DecodeWithError(response, &out, "RefundOrder")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateWithdrawOrder 创建提现单
|
// CreateWithdrawOrder 创建提现单
|
||||||
func (s *VirtualPayment) CreateWithdrawOrder(ctx context.Context, in *CreateWithdrawOrderRequest) (out *CreateWithdrawOrderResponse, err error) {
|
func (s *VirtualPayment) CreateWithdrawOrder(ctx context.Context, in *CreateWithdrawOrderRequest) (out CreateWithdrawOrderResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -290,12 +290,12 @@ func (s *VirtualPayment) CreateWithdrawOrder(ctx context.Context, in *CreateWith
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "CreateWithdrawOrder")
|
err = util.DecodeWithError(response, &out, "CreateWithdrawOrder")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// QueryWithdrawOrder 查询提现单
|
// QueryWithdrawOrder 查询提现单
|
||||||
func (s *VirtualPayment) QueryWithdrawOrder(ctx context.Context, in *QueryWithdrawOrderRequest) (out *QueryWithdrawOrderResponse, err error) {
|
func (s *VirtualPayment) QueryWithdrawOrder(ctx context.Context, in *QueryWithdrawOrderRequest) (out QueryWithdrawOrderResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -319,12 +319,12 @@ func (s *VirtualPayment) QueryWithdrawOrder(ctx context.Context, in *QueryWithdr
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "QueryWithdrawOrder")
|
err = util.DecodeWithError(response, &out, "QueryWithdrawOrder")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// StartUploadGoods 开始上传商品
|
// StartUploadGoods 开始上传商品
|
||||||
func (s *VirtualPayment) StartUploadGoods(ctx context.Context, in *StartUploadGoodsRequest) (out *StartUploadGoodsResponse, err error) {
|
func (s *VirtualPayment) StartUploadGoods(ctx context.Context, in *StartUploadGoodsRequest) (out StartUploadGoodsResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -348,12 +348,12 @@ func (s *VirtualPayment) StartUploadGoods(ctx context.Context, in *StartUploadGo
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "StartUploadGoods")
|
err = util.DecodeWithError(response, &out, "StartUploadGoods")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// QueryUploadGoods 查询上传商品
|
// QueryUploadGoods 查询上传商品
|
||||||
func (s *VirtualPayment) QueryUploadGoods(ctx context.Context, in *QueryUploadGoodsRequest) (out *QueryUploadGoodsResponse, err error) {
|
func (s *VirtualPayment) QueryUploadGoods(ctx context.Context, in *QueryUploadGoodsRequest) (out QueryUploadGoodsResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -377,12 +377,12 @@ func (s *VirtualPayment) QueryUploadGoods(ctx context.Context, in *QueryUploadGo
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "QueryUploadGoods")
|
err = util.DecodeWithError(response, &out, "QueryUploadGoods")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// StartPublishGoods 开始发布商品
|
// StartPublishGoods 开始发布商品
|
||||||
func (s *VirtualPayment) StartPublishGoods(ctx context.Context, in *StartPublishGoodsRequest) (out *StartPublishGoodsResponse, err error) {
|
func (s *VirtualPayment) StartPublishGoods(ctx context.Context, in *StartPublishGoodsRequest) (out StartPublishGoodsResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -406,12 +406,12 @@ func (s *VirtualPayment) StartPublishGoods(ctx context.Context, in *StartPublish
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "StartPublishGoods")
|
err = util.DecodeWithError(response, &out, "StartPublishGoods")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// QueryPublishGoods 查询发布商品
|
// QueryPublishGoods 查询发布商品
|
||||||
func (s *VirtualPayment) QueryPublishGoods(ctx context.Context, in *QueryPublishGoodsRequest) (out *QueryPublishGoodsResponse, err error) {
|
func (s *VirtualPayment) QueryPublishGoods(ctx context.Context, in *QueryPublishGoodsRequest) (out QueryPublishGoodsResponse, err error) {
|
||||||
var jsonByte []byte
|
var jsonByte []byte
|
||||||
if jsonByte, err = json.Marshal(in); err != nil {
|
if jsonByte, err = json.Marshal(in); err != nil {
|
||||||
return
|
return
|
||||||
@@ -435,7 +435,7 @@ func (s *VirtualPayment) QueryPublishGoods(ctx context.Context, in *QueryPublish
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 使用通用方法返回错误
|
// 使用通用方法返回错误
|
||||||
err = util.DecodeWithError(response, out, "QueryPublishGoods")
|
err = util.DecodeWithError(response, &out, "QueryPublishGoods")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"github.com/silenceper/wechat/v2/pay/config"
|
"github.com/silenceper/wechat/v2/pay/config"
|
||||||
"github.com/silenceper/wechat/v2/pay/notify"
|
"github.com/silenceper/wechat/v2/pay/notify"
|
||||||
"github.com/silenceper/wechat/v2/pay/order"
|
"github.com/silenceper/wechat/v2/pay/order"
|
||||||
|
"github.com/silenceper/wechat/v2/pay/redpacket"
|
||||||
"github.com/silenceper/wechat/v2/pay/refund"
|
"github.com/silenceper/wechat/v2/pay/refund"
|
||||||
"github.com/silenceper/wechat/v2/pay/transfer"
|
"github.com/silenceper/wechat/v2/pay/transfer"
|
||||||
)
|
)
|
||||||
@@ -37,3 +38,8 @@ func (pay *Pay) GetRefund() *refund.Refund {
|
|||||||
func (pay *Pay) GetTransfer() *transfer.Transfer {
|
func (pay *Pay) GetTransfer() *transfer.Transfer {
|
||||||
return transfer.NewTransfer(pay.cfg)
|
return transfer.NewTransfer(pay.cfg)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetRedpacket 红包
|
||||||
|
func (pay *Pay) GetRedpacket() *redpacket.Redpacket {
|
||||||
|
return redpacket.NewRedpacket(pay.cfg)
|
||||||
|
}
|
||||||
|
|||||||
131
pay/redpacket/redpacket.go
Normal file
131
pay/redpacket/redpacket.go
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
package redpacket
|
||||||
|
|
||||||
|
import (
|
||||||
|
"encoding/xml"
|
||||||
|
"fmt"
|
||||||
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/silenceper/wechat/v2/pay/config"
|
||||||
|
"github.com/silenceper/wechat/v2/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
// redpacketGateway 发放红包接口
|
||||||
|
// https://pay.weixin.qq.com/wiki/doc/api/tools/cash_coupon.php?chapter=13_4&index=3
|
||||||
|
var redpacketGateway = "https://api.mch.weixin.qq.com/mmpaymkttransfers/sendredpack"
|
||||||
|
|
||||||
|
// Redpacket struct extends context
|
||||||
|
type Redpacket struct {
|
||||||
|
*config.Config
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewRedpacket return an instance of Redpacket package
|
||||||
|
func NewRedpacket(cfg *config.Config) *Redpacket {
|
||||||
|
return &Redpacket{cfg}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Params 调用参数
|
||||||
|
type Params struct {
|
||||||
|
MchBillno string // 商户订单号
|
||||||
|
SendName string // 商户名称
|
||||||
|
ReOpenID string
|
||||||
|
TotalAmount int
|
||||||
|
TotalNum int
|
||||||
|
Wishing string
|
||||||
|
ClientIP string
|
||||||
|
ActName string
|
||||||
|
Remark string
|
||||||
|
|
||||||
|
RootCa string // ca证书
|
||||||
|
}
|
||||||
|
|
||||||
|
// request 接口请求参数
|
||||||
|
type request struct {
|
||||||
|
NonceStr string `xml:"nonce_str"`
|
||||||
|
Sign string `xml:"sign"`
|
||||||
|
MchID string `xml:"mch_id"`
|
||||||
|
MchBillno string `xml:"mch_billno"`
|
||||||
|
Wxappid string `xml:"wxappid"`
|
||||||
|
SendName string `xml:"send_name"`
|
||||||
|
ReOpenID string `xml:"re_openid"`
|
||||||
|
TotalAmount int `xml:"total_amount"`
|
||||||
|
TotalNum int `xml:"total_num"`
|
||||||
|
Wishing string `xml:"wishing"`
|
||||||
|
ClientIP string `xml:"client_ip"`
|
||||||
|
ActName string `xml:"act_name"`
|
||||||
|
Remark string `xml:"remark"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// Response 接口返回
|
||||||
|
type Response struct {
|
||||||
|
ReturnCode string `xml:"return_code"`
|
||||||
|
ReturnMsg string `xml:"return_msg"`
|
||||||
|
ResultCode string `xml:"result_code,omitempty"`
|
||||||
|
ErrCode string `xml:"err_code,omitempty"`
|
||||||
|
ErrCodeDes string `xml:"err_code_des,omitempty"`
|
||||||
|
MchBillno string `xml:"mch_billno,omitempty"`
|
||||||
|
MchID string `xml:"mch_id,omitempty"`
|
||||||
|
Wxappid string `xml:"wxappid"`
|
||||||
|
ReOpenID string `xml:"re_openid"`
|
||||||
|
TotalAmount int `xml:"total_amount"`
|
||||||
|
SendListid string `xml:"send_listid"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SendRedpacket 发放红包
|
||||||
|
func (redpacket *Redpacket) SendRedpacket(p *Params) (rsp *Response, err error) {
|
||||||
|
nonceStr := util.RandomStr(32)
|
||||||
|
param := make(map[string]string)
|
||||||
|
|
||||||
|
param["nonce_str"] = nonceStr
|
||||||
|
param["mch_id"] = redpacket.MchID
|
||||||
|
param["wxappid"] = redpacket.AppID
|
||||||
|
param["mch_billno"] = p.MchBillno
|
||||||
|
param["send_name"] = p.SendName
|
||||||
|
param["re_openid"] = p.ReOpenID
|
||||||
|
param["total_amount"] = strconv.Itoa(p.TotalAmount)
|
||||||
|
param["total_num"] = strconv.Itoa(p.TotalNum)
|
||||||
|
param["wishing"] = p.Wishing
|
||||||
|
param["client_ip"] = p.ClientIP
|
||||||
|
param["act_name"] = p.ActName
|
||||||
|
param["remark"] = p.Remark
|
||||||
|
//param["scene_id"] = "PRODUCT_2"
|
||||||
|
|
||||||
|
sign, err := util.ParamSign(param, redpacket.Key)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
req := request{
|
||||||
|
NonceStr: nonceStr,
|
||||||
|
Sign: sign,
|
||||||
|
MchID: redpacket.MchID,
|
||||||
|
Wxappid: redpacket.AppID,
|
||||||
|
MchBillno: p.MchBillno,
|
||||||
|
SendName: p.SendName,
|
||||||
|
ReOpenID: p.ReOpenID,
|
||||||
|
TotalAmount: p.TotalAmount,
|
||||||
|
TotalNum: p.TotalNum,
|
||||||
|
Wishing: p.Wishing,
|
||||||
|
ClientIP: p.ClientIP,
|
||||||
|
ActName: p.ActName,
|
||||||
|
Remark: p.Remark,
|
||||||
|
}
|
||||||
|
|
||||||
|
rawRet, err := util.PostXMLWithTLS(redpacketGateway, req, p.RootCa, redpacket.MchID)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = xml.Unmarshal(rawRet, &rsp)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if rsp.ReturnCode == "SUCCESS" {
|
||||||
|
if rsp.ResultCode == "SUCCESS" {
|
||||||
|
err = nil
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = fmt.Errorf("send redpacket error, errcode=%s,errmsg=%s", rsp.ErrCode, rsp.ErrCodeDes)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = fmt.Errorf("[msg : xmlUnmarshalError] [rawReturn : %s] [sign : %s]", string(rawRet), sign)
|
||||||
|
return
|
||||||
|
}
|
||||||
@@ -13,6 +13,8 @@ const (
|
|||||||
departmentSimpleListURL = "https://qyapi.weixin.qq.com/cgi-bin/department/simplelist?access_token=%s&id=%d"
|
departmentSimpleListURL = "https://qyapi.weixin.qq.com/cgi-bin/department/simplelist?access_token=%s&id=%d"
|
||||||
// departmentListURL 获取部门列表
|
// departmentListURL 获取部门列表
|
||||||
departmentListURL = "https://qyapi.weixin.qq.com/cgi-bin/department/list?access_token=%s"
|
departmentListURL = "https://qyapi.weixin.qq.com/cgi-bin/department/list?access_token=%s"
|
||||||
|
// departmentGetURL 获取单个部门详情 https://qyapi.weixin.qq.com/cgi-bin/department/get?access_token=ACCESS_TOKEN&id=ID
|
||||||
|
departmentGetURL = "https://qyapi.weixin.qq.com/cgi-bin/department/get?access_token=%s&id=%d"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -56,6 +58,11 @@ type (
|
|||||||
ParentID int `json:"parentid"` // 父部门id。根部门为1
|
ParentID int `json:"parentid"` // 父部门id。根部门为1
|
||||||
Order int `json:"order"` // 在父部门中的次序值。order值大的排序靠前
|
Order int `json:"order"` // 在父部门中的次序值。order值大的排序靠前
|
||||||
}
|
}
|
||||||
|
// DepartmentGetResponse 获取单个部门详情
|
||||||
|
DepartmentGetResponse struct {
|
||||||
|
util.CommonError
|
||||||
|
Department Department `json:"department"`
|
||||||
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
// DepartmentCreate 创建部门
|
// DepartmentCreate 创建部门
|
||||||
@@ -73,10 +80,8 @@ func (r *Client) DepartmentCreate(req *DepartmentCreateRequest) (*DepartmentCrea
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &DepartmentCreateResponse{}
|
result := &DepartmentCreateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DepartmentCreate"); err != nil {
|
err = util.DecodeWithError(response, result, "DepartmentCreate")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DepartmentSimpleList 获取子部门ID列表
|
// DepartmentSimpleList 获取子部门ID列表
|
||||||
@@ -94,10 +99,8 @@ func (r *Client) DepartmentSimpleList(departmentID int) ([]*DepartmentID, error)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &DepartmentSimpleListResponse{}
|
result := &DepartmentSimpleListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DepartmentSimpleList"); err != nil {
|
err = util.DecodeWithError(response, result, "DepartmentSimpleList")
|
||||||
return nil, err
|
return result.DepartmentID, err
|
||||||
}
|
|
||||||
return result.DepartmentID, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DepartmentList 获取部门列表
|
// DepartmentList 获取部门列表
|
||||||
@@ -115,9 +118,26 @@ func (r *Client) DepartmentList() ([]*Department, error) {
|
|||||||
}
|
}
|
||||||
// 按照结构体解析返回值
|
// 按照结构体解析返回值
|
||||||
result := &DepartmentListResponse{}
|
result := &DepartmentListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DepartmentList"); err != nil {
|
err = util.DecodeWithError(response, result, "DepartmentList")
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
// 返回数据
|
// 返回数据
|
||||||
return result.Department, err
|
return result.Department, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// DepartmentGet 获取单个部门详情
|
||||||
|
// see https://developer.work.weixin.qq.com/document/path/95351
|
||||||
|
func (r *Client) DepartmentGet(departmentID int) (*Department, error) {
|
||||||
|
var (
|
||||||
|
accessToken string
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
if accessToken, err = r.GetAccessToken(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var response []byte
|
||||||
|
if response, err = util.HTTPGet(fmt.Sprintf(departmentGetURL, accessToken, departmentID)); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
result := &DepartmentGetResponse{}
|
||||||
|
err = util.DecodeWithError(response, result, "DepartmentGet")
|
||||||
|
return &result.Department, err
|
||||||
|
}
|
||||||
|
|||||||
@@ -41,10 +41,8 @@ func (r *Client) GetPermList() (*GetPermListResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetPermListResponse{}
|
result := &GetPermListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetPermList"); err != nil {
|
err = util.DecodeWithError(response, result, "GetPermList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetLinkedCorpUserRequest 获取互联企业成员详细信息请求
|
// GetLinkedCorpUserRequest 获取互联企业成员详细信息请求
|
||||||
@@ -111,10 +109,8 @@ func (r *Client) GetLinkedCorpUser(req *GetLinkedCorpUserRequest) (*GetLinkedCor
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetLinkedCorpUserResponse{}
|
result := &GetLinkedCorpUserResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetLinkedCorpUser"); err != nil {
|
err = util.DecodeWithError(response, result, "GetLinkedCorpUser")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkedCorpSimpleListRequest 获取互联企业部门成员请求
|
// LinkedCorpSimpleListRequest 获取互联企业部门成员请求
|
||||||
@@ -151,10 +147,8 @@ func (r *Client) LinkedCorpSimpleList(req *LinkedCorpSimpleListRequest) (*Linked
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &LinkedCorpSimpleListResponse{}
|
result := &LinkedCorpSimpleListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "LinkedCorpSimpleList"); err != nil {
|
err = util.DecodeWithError(response, result, "LinkedCorpSimpleList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkedCorpUserListRequest 获取互联企业部门成员详情请求
|
// LinkedCorpUserListRequest 获取互联企业部门成员详情请求
|
||||||
@@ -183,10 +177,8 @@ func (r *Client) LinkedCorpUserList(req *LinkedCorpUserListRequest) (*LinkedCorp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &LinkedCorpUserListResponse{}
|
result := &LinkedCorpUserListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "LinkedCorpUserList"); err != nil {
|
err = util.DecodeWithError(response, result, "LinkedCorpUserList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// LinkedCorpDepartmentListRequest 获取互联企业部门列表请求
|
// LinkedCorpDepartmentListRequest 获取互联企业部门列表请求
|
||||||
@@ -223,8 +215,6 @@ func (r *Client) LinkedCorpDepartmentList(req *LinkedCorpDepartmentListRequest)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &LinkedCorpDepartmentListResponse{}
|
result := &LinkedCorpDepartmentListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "LinkedCorpDepartmentList"); err != nil {
|
err = util.DecodeWithError(response, result, "LinkedCorpDepartmentList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -51,10 +51,8 @@ func (r *Client) CreateTag(req *CreateTagRequest) (*CreateTagResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &CreateTagResponse{}
|
result := &CreateTagResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "CreateTag"); err != nil {
|
err = util.DecodeWithError(response, result, "CreateTag")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -129,10 +127,8 @@ func (r *Client) GetTag(tagID int) (*GetTagResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetTagResponse{}
|
result := &GetTagResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetTag"); err != nil {
|
err = util.DecodeWithError(response, result, "GetTag")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -165,10 +161,8 @@ func (r *Client) AddTagUsers(req *AddTagUsersRequest) (*AddTagUsersResponse, err
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddTagUsersResponse{}
|
result := &AddTagUsersResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddTagUsers"); err != nil {
|
err = util.DecodeWithError(response, result, "AddTagUsers")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -201,10 +195,8 @@ func (r *Client) DelTagUsers(req *DelTagUsersRequest) (*DelTagUsersResponse, err
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &DelTagUsersResponse{}
|
result := &DelTagUsersResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DelTagUsers"); err != nil {
|
err = util.DecodeWithError(response, result, "DelTagUsers")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -235,8 +227,6 @@ func (r *Client) ListTag() (*ListTagResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ListTagResponse{}
|
result := &ListTagResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ListTag"); err != nil {
|
err = util.DecodeWithError(response, result, "ListTag")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,10 +61,7 @@ func (r *Client) UserSimpleList(departmentID int) ([]*UserList, error) {
|
|||||||
}
|
}
|
||||||
result := &UserSimpleListResponse{}
|
result := &UserSimpleListResponse{}
|
||||||
err = util.DecodeWithError(response, result, "UserSimpleList")
|
err = util.DecodeWithError(response, result, "UserSimpleList")
|
||||||
if err != nil {
|
return result.UserList, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.UserList, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -153,10 +150,8 @@ func (r *Client) UserCreate(req *UserCreateRequest) (*UserCreateResponse, error)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UserCreateResponse{}
|
result := &UserCreateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UserCreate"); err != nil {
|
err = util.DecodeWithError(response, result, "UserCreate")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// UserGetResponse 获取部门成员响应
|
// UserGetResponse 获取部门成员响应
|
||||||
@@ -221,7 +216,7 @@ type UserGetResponse struct {
|
|||||||
} `json:"external_profile"` // 成员对外属性,字段详情见对外属性;代开发自建应用需要管理员授权才返回;第三方仅通讯录应用可获取;对于非第三方创建的成员,第三方通讯录应用也不可获取;上游企业不可获取下游企业成员该字段
|
} `json:"external_profile"` // 成员对外属性,字段详情见对外属性;代开发自建应用需要管理员授权才返回;第三方仅通讯录应用可获取;对于非第三方创建的成员,第三方通讯录应用也不可获取;上游企业不可获取下游企业成员该字段
|
||||||
}
|
}
|
||||||
|
|
||||||
// UserGet 获取部门成员
|
// UserGet 读取成员
|
||||||
// @see https://developer.work.weixin.qq.com/document/path/90196
|
// @see https://developer.work.weixin.qq.com/document/path/90196
|
||||||
func (r *Client) UserGet(UserID string) (*UserGetResponse, error) {
|
func (r *Client) UserGet(UserID string) (*UserGetResponse, error) {
|
||||||
var (
|
var (
|
||||||
@@ -238,17 +233,14 @@ func (r *Client) UserGet(UserID string) (*UserGetResponse, error) {
|
|||||||
userGetURL,
|
userGetURL,
|
||||||
util.Query(map[string]interface{}{
|
util.Query(map[string]interface{}{
|
||||||
"access_token": accessToken,
|
"access_token": accessToken,
|
||||||
"department_id": UserID,
|
"userid": UserID,
|
||||||
}),
|
}),
|
||||||
}, "?")); err != nil {
|
}, "?")); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UserGetResponse{}
|
result := &UserGetResponse{}
|
||||||
err = util.DecodeWithError(response, result, "UserGet")
|
err = util.DecodeWithError(response, result, "UserGet")
|
||||||
if err != nil {
|
return result, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -279,10 +271,8 @@ func (r *Client) UserDelete(userID string) (*UserDeleteResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UserDeleteResponse{}
|
result := &UserDeleteResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UserDelete"); err != nil {
|
err = util.DecodeWithError(response, result, "UserDelete")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// UserListIDRequest 获取成员ID列表请求
|
// UserListIDRequest 获取成员ID列表请求
|
||||||
@@ -324,10 +314,8 @@ func (r *Client) UserListID(req *UserListIDRequest) (*UserListIDResponse, error)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UserListIDResponse{}
|
result := &UserListIDResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UserListID"); err != nil {
|
err = util.DecodeWithError(response, result, "UserListID")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -366,10 +354,8 @@ func (r *Client) ConvertToOpenID(userID string) (string, error) {
|
|||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
result := &convertToOpenIDResponse{}
|
result := &convertToOpenIDResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ConvertToOpenID"); err != nil {
|
err = util.DecodeWithError(response, result, "ConvertToOpenID")
|
||||||
return "", err
|
return result.OpenID, err
|
||||||
}
|
|
||||||
return result.OpenID, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -408,8 +394,6 @@ func (r *Client) ConvertToUserID(openID string) (string, error) {
|
|||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
result := &convertToUserIDResponse{}
|
result := &convertToUserIDResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ConvertToUserID"); err != nil {
|
err = util.DecodeWithError(response, result, "ConvertToUserID")
|
||||||
return "", err
|
return result.UserID, err
|
||||||
}
|
|
||||||
return result.UserID, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -82,11 +82,9 @@ func (r *Client) Send(apiName string, request interface{}) (*SendResponse, error
|
|||||||
}
|
}
|
||||||
// 按照结构体解析返回值
|
// 按照结构体解析返回值
|
||||||
result := &SendResponse{}
|
result := &SendResponse{}
|
||||||
if err = util.DecodeWithError(response, result, apiName); err != nil {
|
err = util.DecodeWithError(response, result, apiName)
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
// 返回数据
|
// 返回数据
|
||||||
return result, nil
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendText 发送文本消息
|
// SendText 发送文本消息
|
||||||
|
|||||||
17
work/checkin/client.go
Normal file
17
work/checkin/client.go
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
package checkin
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/silenceper/wechat/v2/work/context"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Client 打卡接口实例
|
||||||
|
type Client struct {
|
||||||
|
*context.Context
|
||||||
|
}
|
||||||
|
|
||||||
|
// NewClient 初始化实例
|
||||||
|
func NewClient(ctx *context.Context) *Client {
|
||||||
|
return &Client{
|
||||||
|
ctx,
|
||||||
|
}
|
||||||
|
}
|
||||||
259
work/checkin/record.go
Normal file
259
work/checkin/record.go
Normal file
@@ -0,0 +1,259 @@
|
|||||||
|
package checkin
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/silenceper/wechat/v2/util"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
// getCheckinDataURL 获取打卡记录数据
|
||||||
|
getCheckinDataURL = "https://qyapi.weixin.qq.com/cgi-bin/checkin/getcheckindata?access_token=%s"
|
||||||
|
// getDayDataURL 获取打卡日报数据
|
||||||
|
getDayDataURL = "https://qyapi.weixin.qq.com/cgi-bin/checkin/getcheckin_daydata?access_token=%s"
|
||||||
|
// getMonthDataURL 获取打卡月报数据
|
||||||
|
getMonthDataURL = "https://qyapi.weixin.qq.com/cgi-bin/checkin/getcheckin_monthdata?access_token=%s"
|
||||||
|
)
|
||||||
|
|
||||||
|
type (
|
||||||
|
// GetCheckinDataRequest 获取打卡记录数据请求
|
||||||
|
GetCheckinDataRequest struct {
|
||||||
|
OpenCheckinDataType int64 `json:"opencheckindatatype"`
|
||||||
|
StartTime int64 `json:"starttime"`
|
||||||
|
EndTime int64 `json:"endtime"`
|
||||||
|
UserIDList []string `json:"useridlist"`
|
||||||
|
}
|
||||||
|
// GetCheckinDataResponse 获取打卡记录数据响应
|
||||||
|
GetCheckinDataResponse struct {
|
||||||
|
util.CommonError
|
||||||
|
CheckinData []*GetCheckinDataItem `json:"checkindata"`
|
||||||
|
}
|
||||||
|
// GetCheckinDataItem 打卡记录数据
|
||||||
|
GetCheckinDataItem struct {
|
||||||
|
UserID string `json:"userid"`
|
||||||
|
GroupName string `json:"groupname"`
|
||||||
|
CheckinType string `json:"checkin_type"`
|
||||||
|
ExceptionType string `json:"exception_type"`
|
||||||
|
CheckinTime int64 `json:"checkin_time"`
|
||||||
|
LocationTitle string `json:"location_title"`
|
||||||
|
LocationDetail string `json:"location_detail"`
|
||||||
|
WifiName string `json:"wifiname"`
|
||||||
|
Notes string `json:"notes"`
|
||||||
|
WifiMac string `json:"wifimac"`
|
||||||
|
MediaIDs []string `json:"mediaids"`
|
||||||
|
SchCheckinTime int64 `json:"sch_checkin_time"`
|
||||||
|
GroupID int64 `json:"groupid"`
|
||||||
|
ScheduleID int64 `json:"schedule_id"`
|
||||||
|
TimelineID int64 `json:"timeline_id"`
|
||||||
|
Lat int64 `json:"lat,omitempty"`
|
||||||
|
Lng int64 `json:"lng,omitempty"`
|
||||||
|
DeviceID string `json:"deviceid,omitempty"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// GetCheckinData 获取打卡记录数据
|
||||||
|
// @see https://developer.work.weixin.qq.com/document/path/90262
|
||||||
|
func (r *Client) GetCheckinData(req *GetCheckinDataRequest) (*GetCheckinDataResponse, error) {
|
||||||
|
var (
|
||||||
|
accessToken string
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
if accessToken, err = r.GetAccessToken(); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
var response []byte
|
||||||
|
if response, err = util.PostJSON(fmt.Sprintf(getCheckinDataURL, accessToken), req); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
result := &GetCheckinDataResponse{}
|
||||||
|
err = util.DecodeWithError(response, result, "GetCheckinData")
|
||||||
|
return result, err
|
||||||
|
}
|
||||||
|
|
||||||
|
type (
|
||||||
|
// GetDayDataResponse 获取打卡日报数据
|
||||||
|
GetDayDataResponse struct {
|
||||||
|
util.CommonError
|
||||||
|
Datas []DayDataItem `json:"datas"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// DayDataItem 日报
|
||||||
|
DayDataItem struct {
|
||||||
|
BaseInfo DayBaseInfo `json:"base_info"`
|
||||||
|
SummaryInfo DaySummaryInfo `json:"summary_info"`
|
||||||
|
HolidayInfos []HolidayInfo `json:"holiday_infos"`
|
||||||
|
ExceptionInfos []ExceptionInfo `json:"exception_infos"`
|
||||||
|
OtInfo OtInfo `json:"ot_info"`
|
||||||
|
SpItems []SpItem `json:"sp_items"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// DayBaseInfo 基础信息
|
||||||
|
DayBaseInfo struct {
|
||||||
|
Date int64 `json:"date"`
|
||||||
|
RecordType int64 `json:"record_type"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
NameEx string `json:"name_ex"`
|
||||||
|
DepartsName string `json:"departs_name"`
|
||||||
|
AcctID string `json:"acctid"`
|
||||||
|
DayType int64 `json:"day_type"`
|
||||||
|
RuleInfo DayRuleInfo `json:"rule_info"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// DayCheckInTime 当日打卡时间
|
||||||
|
DayCheckInTime struct {
|
||||||
|
WorkSec int64 `json:"work_sec"`
|
||||||
|
OffWorkSec int64 `json:"off_work_sec"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// DayRuleInfo 打卡人员所属规则信息
|
||||||
|
DayRuleInfo struct {
|
||||||
|
GroupID int64 `json:"groupid"`
|
||||||
|
GroupName string `json:"groupname"`
|
||||||
|
ScheduleID int64 `json:"scheduleid"`
|
||||||
|
ScheduleName string `json:"schedulename"`
|
||||||
|
CheckInTimes []DayCheckInTime `json:"checkintime"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// DaySummaryInfo 汇总信息
|
||||||
|
DaySummaryInfo struct {
|
||||||
|
CheckinCount int64 `json:"checkin_count"`
|
||||||
|
RegularWorkSec int64 `json:"regular_work_sec"`
|
||||||
|
StandardWorkSec int64 `json:"standard_work_sec"`
|
||||||
|
EarliestTime int64 `json:"earliest_time"`
|
||||||
|
LastestTime int64 `json:"lastest_time"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// HolidayInfo 假勤相关信息
|
||||||
|
HolidayInfo struct {
|
||||||
|
SpNumber string `json:"sp_number"`
|
||||||
|
SpTitle SpTitle `json:"sp_title"`
|
||||||
|
SpDescription SpDescription `json:"sp_description"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SpTitle 假勤信息摘要-标题信息
|
||||||
|
SpTitle struct {
|
||||||
|
Data []SpData `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SpDescription 假勤信息摘要-描述信息
|
||||||
|
SpDescription struct {
|
||||||
|
Data []SpData `json:"data"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SpData 假勤信息(多种语言描述,目前只有中文一种)
|
||||||
|
SpData struct {
|
||||||
|
Lang string `json:"lang"`
|
||||||
|
Text string `json:"text"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// SpItem 假勤统计信息
|
||||||
|
SpItem struct {
|
||||||
|
Count int64 `json:"count"`
|
||||||
|
Duration int64 `json:"duration"`
|
||||||
|
TimeType int64 `json:"time_type"`
|
||||||
|
Type int64 `json:"type"`
|
||||||
|
VacationID int64 `json:"vacation_id"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// ExceptionInfo 校准状态信息
|
||||||
|
ExceptionInfo struct {
|
||||||
|
Count int64 `json:"count"`
|
||||||
|
Duration int64 `json:"duration"`
|
||||||
|
Exception int64 `json:"exception"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// OtInfo 加班信息
|
||||||
|
OtInfo struct {
|
||||||
|
OtStatus int64 `json:"ot_status"`
|
||||||
|
OtDuration int64 `json:"ot_duration"`
|
||||||
|
ExceptionDuration []uint64 `json:"exception_duration"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// GetDayData 获取打卡日报数据
|
||||||
|
// @see https://developer.work.weixin.qq.com/document/path/96498
|
||||||
|
func (r *Client) GetDayData(req *GetCheckinDataRequest) (result *GetDayDataResponse, err error) {
|
||||||
|
var (
|
||||||
|
response []byte
|
||||||
|
accessToken string
|
||||||
|
)
|
||||||
|
if accessToken, err = r.GetAccessToken(); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if response, err = util.PostJSON(fmt.Sprintf(getDayDataURL, accessToken), req); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result = new(GetDayDataResponse)
|
||||||
|
err = util.DecodeWithError(response, result, "GetDayData")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
type (
|
||||||
|
// GetMonthDataResponse 获取打卡月报数据
|
||||||
|
GetMonthDataResponse struct {
|
||||||
|
util.CommonError
|
||||||
|
Datas []MonthDataItem `json:"datas"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MonthDataItem 月报数据
|
||||||
|
MonthDataItem struct {
|
||||||
|
BaseInfo MonthBaseInfo `json:"base_info"`
|
||||||
|
SummaryInfo MonthSummaryInfo `json:"summary_info"`
|
||||||
|
ExceptionInfos []ExceptionInfo `json:"exception_infos"`
|
||||||
|
SpItems []SpItem `json:"sp_items"`
|
||||||
|
OverWorkInfo OverWorkInfo `json:"overwork_info"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MonthBaseInfo 基础信息
|
||||||
|
MonthBaseInfo struct {
|
||||||
|
RecordType int64 `json:"record_type"`
|
||||||
|
Name string `json:"name"`
|
||||||
|
NameEx string `json:"name_ex"`
|
||||||
|
DepartsName string `json:"departs_name"`
|
||||||
|
AcctID string `json:"acctid"`
|
||||||
|
RuleInfo MonthRuleInfo `json:"rule_info"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MonthRuleInfo 打卡人员所属规则信息
|
||||||
|
MonthRuleInfo struct {
|
||||||
|
GroupID int64 `json:"groupid"`
|
||||||
|
GroupName string `json:"groupname"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// MonthSummaryInfo 汇总信息
|
||||||
|
MonthSummaryInfo struct {
|
||||||
|
WorkDays int64 `json:"work_days"`
|
||||||
|
ExceptDays int64 `json:"except_days"`
|
||||||
|
RegularDays int64 `json:"regular_days"`
|
||||||
|
RegularWorkSec int64 `json:"regular_work_sec"`
|
||||||
|
StandardWorkSec int64 `json:"standard_work_sec"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// OverWorkInfo 加班情况
|
||||||
|
OverWorkInfo struct {
|
||||||
|
WorkdayOverSec int64 `json:"workday_over_sec"`
|
||||||
|
HolidayOverSec int64 `json:"holidays_over_sec"`
|
||||||
|
RestDayOverSec int64 `json:"restdays_over_sec"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
|
// GetMonthData 获取打卡月报数据
|
||||||
|
// @see https://developer.work.weixin.qq.com/document/path/96499
|
||||||
|
func (r *Client) GetMonthData(req *GetCheckinDataRequest) (result *GetMonthDataResponse, err error) {
|
||||||
|
var (
|
||||||
|
response []byte
|
||||||
|
accessToken string
|
||||||
|
)
|
||||||
|
if accessToken, err = r.GetAccessToken(); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if response, err = util.PostJSON(fmt.Sprintf(getMonthDataURL, accessToken), req); err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
result = new(GetMonthDataResponse)
|
||||||
|
err = util.DecodeWithError(response, result, "GetMonthData")
|
||||||
|
return
|
||||||
|
}
|
||||||
@@ -38,8 +38,6 @@ func (r *Client) GetCallbackMessage(encryptedMsg []byte) (msg EventCallbackMessa
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if err = xml.Unmarshal(bData, &msg); err != nil {
|
err = xml.Unmarshal(bData, &msg)
|
||||||
return
|
|
||||||
}
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -102,10 +102,8 @@ func (r *Client) AddContactWay(req *AddContactWayRequest) (*AddContactWayRespons
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddContactWayResponse{}
|
result := &AddContactWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddContactWay"); err != nil {
|
err = util.DecodeWithError(response, result, "AddContactWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -153,10 +151,8 @@ func (r *Client) GetContactWay(req *GetContactWayRequest) (*GetContactWayRespons
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetContactWayResponse{}
|
result := &GetContactWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetContactWay"); err != nil {
|
err = util.DecodeWithError(response, result, "GetContactWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -195,10 +191,8 @@ func (r *Client) UpdateContactWay(req *UpdateContactWayRequest) (*UpdateContactW
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UpdateContactWayResponse{}
|
result := &UpdateContactWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UpdateContactWay"); err != nil {
|
err = util.DecodeWithError(response, result, "UpdateContactWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -236,10 +230,8 @@ func (r *Client) ListContactWay(req *ListContactWayRequest) (*ListContactWayResp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ListContactWayResponse{}
|
result := &ListContactWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ListContactWay"); err != nil {
|
err = util.DecodeWithError(response, result, "ListContactWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -268,8 +260,6 @@ func (r *Client) DelContactWay(req *DelContactWayRequest) (*DelContactWayRespons
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &DelContactWayResponse{}
|
result := &DelContactWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DelContactWay"); err != nil {
|
err = util.DecodeWithError(response, result, "DelContactWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -54,10 +54,8 @@ func (r *Client) ListLink(req *ListLinkRequest) (*ListLinkResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ListLinkResponse{}
|
result := &ListLinkResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ListLink"); err != nil {
|
err = util.DecodeWithError(response, result, "ListLink")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -102,10 +100,8 @@ func (r *Client) GetCustomerAcquisition(req *GetCustomerAcquisitionRequest) (*Ge
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetCustomerAcquisitionResponse{}
|
result := &GetCustomerAcquisitionResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetCustomerAcquisition"); err != nil {
|
err = util.DecodeWithError(response, result, "GetCustomerAcquisition")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -137,10 +133,8 @@ func (r *Client) CreateCustomerAcquisitionLink(req *CreateCustomerAcquisitionLin
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &CreateCustomerAcquisitionLinkResponse{}
|
result := &CreateCustomerAcquisitionLinkResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "CreateCustomerAcquisitionLink"); err != nil {
|
err = util.DecodeWithError(response, result, "CreateCustomerAcquisitionLink")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -172,10 +166,8 @@ func (r *Client) UpdateCustomerAcquisitionLink(req *UpdateCustomerAcquisitionLin
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UpdateCustomerAcquisitionLinkResponse{}
|
result := &UpdateCustomerAcquisitionLinkResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UpdateCustomerAcquisitionLink"); err != nil {
|
err = util.DecodeWithError(response, result, "UpdateCustomerAcquisitionLink")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -204,10 +196,8 @@ func (r *Client) DeleteCustomerAcquisitionLink(req *DeleteCustomerAcquisitionLin
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &DeleteCustomerAcquisitionLinkResponse{}
|
result := &DeleteCustomerAcquisitionLinkResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DeleteCustomerAcquisitionLink"); err != nil {
|
err = util.DecodeWithError(response, result, "DeleteCustomerAcquisitionLink")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -247,10 +237,8 @@ func (r *Client) GetCustomerInfoWithCustomerAcquisitionLink(req *GetCustomerInfo
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetCustomerInfoWithCustomerAcquisitionLinkResponse{}
|
result := &GetCustomerInfoWithCustomerAcquisitionLinkResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetCustomerInfoWithCustomerAcquisitionLink"); err != nil {
|
err = util.DecodeWithError(response, result, "GetCustomerInfoWithCustomerAcquisitionLink")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -279,14 +267,12 @@ func (r *Client) CustomerAcquisitionQuota() (*CustomerAcquisitionQuotaResponse,
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
var response []byte
|
var response []byte
|
||||||
if response, err = util.HTTPGet((fmt.Sprintf(customerAcquisitionQuotaURL, accessToken))); err != nil {
|
if response, err = util.HTTPGet(fmt.Sprintf(customerAcquisitionQuotaURL, accessToken)); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &CustomerAcquisitionQuotaResponse{}
|
result := &CustomerAcquisitionQuotaResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "CustomerAcquisitionQuota"); err != nil {
|
err = util.DecodeWithError(response, result, "CustomerAcquisitionQuota")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -319,8 +305,6 @@ func (r *Client) CustomerAcquisitionStatistic(req *CustomerAcquisitionStatisticR
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &CustomerAcquisitionStatisticResponse{}
|
result := &CustomerAcquisitionStatisticResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "CustomerAcquisitionStatistic"); err != nil {
|
err = util.DecodeWithError(response, result, "CustomerAcquisitionStatistic")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -50,10 +50,7 @@ func (r *Client) GetExternalUserList(userID string) ([]string, error) {
|
|||||||
}
|
}
|
||||||
var result ExternalUserListResponse
|
var result ExternalUserListResponse
|
||||||
err = util.DecodeWithError(response, &result, "GetExternalUserList")
|
err = util.DecodeWithError(response, &result, "GetExternalUserList")
|
||||||
if err != nil {
|
return result.ExternalUserID, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.ExternalUserID, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ExternalUserDetailResponse 外部联系人详情响应
|
// ExternalUserDetailResponse 外部联系人详情响应
|
||||||
@@ -104,7 +101,7 @@ type Tag struct {
|
|||||||
// WechatChannel 视频号添加的场景
|
// WechatChannel 视频号添加的场景
|
||||||
type WechatChannel struct {
|
type WechatChannel struct {
|
||||||
NickName string `json:"nickname"`
|
NickName string `json:"nickname"`
|
||||||
Source string `json:"source"`
|
Source int `json:"source"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetExternalUserDetail 获取外部联系人详情
|
// GetExternalUserDetail 获取外部联系人详情
|
||||||
@@ -125,10 +122,7 @@ func (r *Client) GetExternalUserDetail(externalUserID string, nextCursor ...stri
|
|||||||
}
|
}
|
||||||
result := &ExternalUserDetailResponse{}
|
result := &ExternalUserDetailResponse{}
|
||||||
err = util.DecodeWithError(response, result, "get_external_user_detail")
|
err = util.DecodeWithError(response, result, "get_external_user_detail")
|
||||||
if err != nil {
|
return result, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// BatchGetExternalUserDetailsRequest 批量获取外部联系人详情请求
|
// BatchGetExternalUserDetailsRequest 批量获取外部联系人详情请求
|
||||||
@@ -196,10 +190,7 @@ func (r *Client) BatchGetExternalUserDetails(request BatchGetExternalUserDetails
|
|||||||
}
|
}
|
||||||
var result ExternalUserDetailListResponse
|
var result ExternalUserDetailListResponse
|
||||||
err = util.DecodeWithError(response, &result, "BatchGetExternalUserDetails")
|
err = util.DecodeWithError(response, &result, "BatchGetExternalUserDetails")
|
||||||
if err != nil {
|
return result.ExternalContactList, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.ExternalContactList, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateUserRemarkRequest 修改客户备注信息请求体
|
// UpdateUserRemarkRequest 修改客户备注信息请求体
|
||||||
@@ -265,10 +256,8 @@ func (r *Client) ListCustomerStrategy(req *ListCustomerStrategyRequest) (*ListCu
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ListCustomerStrategyResponse{}
|
result := &ListCustomerStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ListCustomerStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "ListCustomerStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetCustomerStrategyRequest 获取规则组详情请求
|
// GetCustomerStrategyRequest 获取规则组详情请求
|
||||||
@@ -332,10 +321,8 @@ func (r *Client) GetCustomerStrategy(req *GetCustomerStrategyRequest) (*GetCusto
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetCustomerStrategyResponse{}
|
result := &GetCustomerStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetCustomerStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "GetCustomerStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetRangeCustomerStrategyRequest 获取规则组管理范围请求
|
// GetRangeCustomerStrategyRequest 获取规则组管理范围请求
|
||||||
@@ -374,10 +361,8 @@ func (r *Client) GetRangeCustomerStrategy(req *GetRangeCustomerStrategyRequest)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetRangeCustomerStrategyResponse{}
|
result := &GetRangeCustomerStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetRangeCustomerStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "GetRangeCustomerStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateCustomerStrategyRequest 创建新的规则组请求
|
// CreateCustomerStrategyRequest 创建新的规则组请求
|
||||||
@@ -410,10 +395,8 @@ func (r *Client) CreateCustomerStrategy(req *CreateCustomerStrategyRequest) (*Cr
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &CreateCustomerStrategyResponse{}
|
result := &CreateCustomerStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "CreateCustomerStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "CreateCustomerStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// EditCustomerStrategyRequest 编辑规则组及其管理范围请求
|
// EditCustomerStrategyRequest 编辑规则组及其管理范围请求
|
||||||
|
|||||||
@@ -31,8 +31,5 @@ func (r *Client) GetFollowUserList() ([]string, error) {
|
|||||||
}
|
}
|
||||||
var result followerUserResponse
|
var result followerUserResponse
|
||||||
err = util.DecodeWithError(response, &result, "GetFollowUserList")
|
err = util.DecodeWithError(response, &result, "GetFollowUserList")
|
||||||
if err != nil {
|
return result.FollowUser, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.FollowUser, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,10 +44,8 @@ func (r *Client) GetGroupChatList(req *GroupChatListRequest) (*GroupChatListResp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GroupChatListResponse{}
|
result := &GroupChatListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupChatList"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupChatList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -70,6 +68,7 @@ type (
|
|||||||
GroupNickname string `json:"group_nickname"` //在群里的昵称
|
GroupNickname string `json:"group_nickname"` //在群里的昵称
|
||||||
Name string `json:"name"` //名字。仅当 need_name = 1 时返回 如果是微信用户,则返回其在微信中设置的名字 如果是企业微信联系人,则返回其设置对外展示的别名或实名
|
Name string `json:"name"` //名字。仅当 need_name = 1 时返回 如果是微信用户,则返回其在微信中设置的名字 如果是企业微信联系人,则返回其设置对外展示的别名或实名
|
||||||
UnionID string `json:"unionid,omitempty"` //外部联系人在微信开放平台的唯一身份标识(微信unionid),通过此字段企业可将外部联系人与公众号/小程序用户关联起来。仅当群成员类型是微信用户(包括企业成员未添加好友),且企业绑定了微信开发者ID有此字段(查看绑定方法)。第三方不可获取,上游企业不可获取下游企业客户的unionid字段
|
UnionID string `json:"unionid,omitempty"` //外部联系人在微信开放平台的唯一身份标识(微信unionid),通过此字段企业可将外部联系人与公众号/小程序用户关联起来。仅当群成员类型是微信用户(包括企业成员未添加好友),且企业绑定了微信开发者ID有此字段(查看绑定方法)。第三方不可获取,上游企业不可获取下游企业客户的unionid字段
|
||||||
|
State string `json:"state,omitempty"` //如果在配置入群方式时,配置了state参数,那么在获取客户群详情时,通过该方式入群的成员,会额外获取到相应的state参数
|
||||||
}
|
}
|
||||||
//GroupChatAdmin 群管理员
|
//GroupChatAdmin 群管理员
|
||||||
GroupChatAdmin struct {
|
GroupChatAdmin struct {
|
||||||
@@ -105,10 +104,8 @@ func (r *Client) GetGroupChatDetail(req *GroupChatDetailRequest) (*GroupChatDeta
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GroupChatDetailResponse{}
|
result := &GroupChatDetailResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupChatDetail"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupChatDetail")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -136,8 +133,6 @@ func (r *Client) OpengIDToChatID(req *OpengIDToChatIDRequest) (*OpengIDToChatIDR
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &OpengIDToChatIDResponse{}
|
result := &OpengIDToChatIDResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupChatDetail"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupChatDetail")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -44,10 +44,8 @@ func (r *Client) AddJoinWay(req *AddJoinWayRequest) (*AddJoinWayResponse, error)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddJoinWayResponse{}
|
result := &AddJoinWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddJoinWay"); err != nil {
|
err = util.DecodeWithError(response, result, "AddJoinWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -91,10 +89,8 @@ func (r *Client) GetJoinWay(req *JoinWayConfigRequest) (*GetJoinWayResponse, err
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetJoinWayResponse{}
|
result := &GetJoinWayResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetJoinWay"); err != nil {
|
err = util.DecodeWithError(response, result, "GetJoinWay")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateJoinWayRequest 更新群配置的请求参数
|
// UpdateJoinWayRequest 更新群配置的请求参数
|
||||||
|
|||||||
@@ -112,10 +112,8 @@ func (r *Client) AddMomentTask(req *AddMomentTaskRequest) (*AddMomentTaskRespons
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddMomentTaskResponse{}
|
result := &AddMomentTaskResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddMomentTask"); err != nil {
|
err = util.DecodeWithError(response, result, "AddMomentTask")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMomentTaskResultResponse 获取任务创建结果响应
|
// GetMomentTaskResultResponse 获取任务创建结果响应
|
||||||
@@ -161,10 +159,8 @@ func (r *Client) GetMomentTaskResult(jobID string) (*GetMomentTaskResultResponse
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentTaskResultResponse{}
|
result := &GetMomentTaskResultResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentTaskResult"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentTaskResult")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// CancelMomentTaskRequest 停止发表企业朋友圈请求
|
// CancelMomentTaskRequest 停止发表企业朋友圈请求
|
||||||
@@ -264,10 +260,8 @@ func (r *Client) GetMomentList(req *GetMomentListRequest) (*GetMomentListRespons
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentListResponse{}
|
result := &GetMomentListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentList"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMomentTaskRequest 获取客户朋友圈企业发表的列表请求
|
// GetMomentTaskRequest 获取客户朋友圈企业发表的列表请求
|
||||||
@@ -305,10 +299,8 @@ func (r *Client) GetMomentTask(req *GetMomentTaskRequest) (*GetMomentTaskRespons
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentTaskResponse{}
|
result := &GetMomentTaskResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentTask"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentTask")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMomentCustomerListRequest 获取客户朋友圈发表时选择的可见范围请求
|
// GetMomentCustomerListRequest 获取客户朋友圈发表时选择的可见范围请求
|
||||||
@@ -347,10 +339,8 @@ func (r *Client) GetMomentCustomerList(req *GetMomentCustomerListRequest) (*GetM
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentCustomerListResponse{}
|
result := &GetMomentCustomerListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentCustomerList"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentCustomerList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMomentSendResultRequest 获取客户朋友圈发表后的可见客户列表请求
|
// GetMomentSendResultRequest 获取客户朋友圈发表后的可见客户列表请求
|
||||||
@@ -388,10 +378,8 @@ func (r *Client) GetMomentSendResult(req *GetMomentSendResultRequest) (*GetMomen
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentSendResultResponse{}
|
result := &GetMomentSendResultResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentSendResult"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentSendResult")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMomentCommentsRequest 获取客户朋友圈的互动数据请求
|
// GetMomentCommentsRequest 获取客户朋友圈的互动数据请求
|
||||||
@@ -436,10 +424,8 @@ func (r *Client) GetMomentComments(req *GetMomentCommentsRequest) (*GetMomentCom
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentCommentsResponse{}
|
result := &GetMomentCommentsResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentComments"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentComments")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ListMomentStrategyRequest 获取规则组列表请求
|
// ListMomentStrategyRequest 获取规则组列表请求
|
||||||
@@ -475,10 +461,8 @@ func (r *Client) ListMomentStrategy(req *ListMomentStrategyRequest) (*ListMoment
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ListMomentStrategyResponse{}
|
result := &ListMomentStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ListMomentStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "ListMomentStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetMomentStrategyRequest 获取规则组详情请求
|
// GetMomentStrategyRequest 获取规则组详情请求
|
||||||
@@ -524,10 +508,8 @@ func (r *Client) GetMomentStrategy(req *GetMomentStrategyRequest) (*GetMomentStr
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetMomentStrategyResponse{}
|
result := &GetMomentStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetMomentStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "GetMomentStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetRangeMomentStrategyRequest 获取规则组管理范围请求
|
// GetRangeMomentStrategyRequest 获取规则组管理范围请求
|
||||||
@@ -566,10 +548,8 @@ func (r *Client) GetRangeMomentStrategy(req *GetRangeMomentStrategyRequest) (*Ge
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetRangeMomentStrategyResponse{}
|
result := &GetRangeMomentStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetRangeMomentStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "GetRangeMomentStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// CreateMomentStrategyRequest 创建新的规则组请求
|
// CreateMomentStrategyRequest 创建新的规则组请求
|
||||||
@@ -602,10 +582,8 @@ func (r *Client) CreateMomentStrategy(req *CreateMomentStrategyRequest) (*Create
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &CreateMomentStrategyResponse{}
|
result := &CreateMomentStrategyResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "CreateMomentStrategy"); err != nil {
|
err = util.DecodeWithError(response, result, "CreateMomentStrategy")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// EditMomentStrategyRequest 编辑规则组及其管理范围请求
|
// EditMomentStrategyRequest 编辑规则组及其管理范围请求
|
||||||
|
|||||||
@@ -38,8 +38,23 @@ type AddMsgTemplateRequest struct {
|
|||||||
Sender string `json:"sender,omitempty"`
|
Sender string `json:"sender,omitempty"`
|
||||||
Text MsgText `json:"text"`
|
Text MsgText `json:"text"`
|
||||||
Attachments []*Attachment `json:"attachments"`
|
Attachments []*Attachment `json:"attachments"`
|
||||||
|
AllowSelect bool `json:"allow_select,omitempty"`
|
||||||
|
ChatIDList []string `json:"chat_id_list,omitempty"`
|
||||||
|
TagFilter TagFilter `json:"tag_filter,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type (
|
||||||
|
// TagFilter 标签过滤
|
||||||
|
TagFilter struct {
|
||||||
|
GroupList []TagGroupList `json:"group_list"`
|
||||||
|
}
|
||||||
|
|
||||||
|
// TagGroupList 标签组
|
||||||
|
TagGroupList struct {
|
||||||
|
TagList []string `json:"tag_list"`
|
||||||
|
}
|
||||||
|
)
|
||||||
|
|
||||||
// MsgText 文本消息
|
// MsgText 文本消息
|
||||||
type MsgText struct {
|
type MsgText struct {
|
||||||
Content string `json:"content"`
|
Content string `json:"content"`
|
||||||
@@ -106,10 +121,8 @@ func (r *Client) AddMsgTemplate(req *AddMsgTemplateRequest) (*AddMsgTemplateResp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddMsgTemplateResponse{}
|
result := &AddMsgTemplateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddMsgTemplate"); err != nil {
|
err = util.DecodeWithError(response, result, "AddMsgTemplate")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetGroupMsgListV2Request 获取群发记录列表请求
|
// GetGroupMsgListV2Request 获取群发记录列表请求
|
||||||
@@ -155,10 +168,8 @@ func (r *Client) GetGroupMsgListV2(req *GetGroupMsgListV2Request) (*GetGroupMsgL
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetGroupMsgListV2Response{}
|
result := &GetGroupMsgListV2Response{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupMsgListV2"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupMsgListV2")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetGroupMsgTaskRequest 获取群发成员发送任务列表请求
|
// GetGroupMsgTaskRequest 获取群发成员发送任务列表请求
|
||||||
@@ -197,10 +208,8 @@ func (r *Client) GetGroupMsgTask(req *GetGroupMsgTaskRequest) (*GetGroupMsgTaskR
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetGroupMsgTaskResponse{}
|
result := &GetGroupMsgTaskResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupMsgTask"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupMsgTask")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetGroupMsgSendResultRequest 获取企业群发成员执行结果请求
|
// GetGroupMsgSendResultRequest 获取企业群发成员执行结果请求
|
||||||
@@ -242,10 +251,8 @@ func (r *Client) GetGroupMsgSendResult(req *GetGroupMsgSendResultRequest) (*GetG
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetGroupMsgSendResultResponse{}
|
result := &GetGroupMsgSendResultResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupMsgSendResult"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupMsgSendResult")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendWelcomeMsgRequest 发送新客户欢迎语请求
|
// SendWelcomeMsgRequest 发送新客户欢迎语请求
|
||||||
@@ -275,10 +282,7 @@ func (r *Client) SendWelcomeMsg(req *SendWelcomeMsgRequest) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
result := &SendWelcomeMsgResponse{}
|
result := &SendWelcomeMsgResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "SendWelcomeMsg"); err != nil {
|
return util.DecodeWithError(response, result, "SendWelcomeMsg")
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddGroupWelcomeTemplateRequest 添加入群欢迎语素材请求
|
// AddGroupWelcomeTemplateRequest 添加入群欢迎语素材请求
|
||||||
@@ -314,10 +318,8 @@ func (r *Client) AddGroupWelcomeTemplate(req *AddGroupWelcomeTemplateRequest) (*
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddGroupWelcomeTemplateResponse{}
|
result := &AddGroupWelcomeTemplateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddGroupWelcomeTemplate"); err != nil {
|
err = util.DecodeWithError(response, result, "AddGroupWelcomeTemplate")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// EditGroupWelcomeTemplateRequest 编辑入群欢迎语素材请求
|
// EditGroupWelcomeTemplateRequest 编辑入群欢迎语素材请求
|
||||||
@@ -352,10 +354,7 @@ func (r *Client) EditGroupWelcomeTemplate(req *EditGroupWelcomeTemplateRequest)
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
result := &EditGroupWelcomeTemplateResponse{}
|
result := &EditGroupWelcomeTemplateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "EditGroupWelcomeTemplate"); err != nil {
|
return util.DecodeWithError(response, result, "EditGroupWelcomeTemplate")
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetGroupWelcomeTemplateRequest 获取入群欢迎语素材请求
|
// GetGroupWelcomeTemplateRequest 获取入群欢迎语素材请求
|
||||||
@@ -389,10 +388,8 @@ func (r *Client) GetGroupWelcomeTemplate(req *GetGroupWelcomeTemplateRequest) (*
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetGroupWelcomeTemplateResponse{}
|
result := &GetGroupWelcomeTemplateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetGroupWelcomeTemplate"); err != nil {
|
err = util.DecodeWithError(response, result, "GetGroupWelcomeTemplate")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DelGroupWelcomeTemplateRequest 删除入群欢迎语素材请求
|
// DelGroupWelcomeTemplateRequest 删除入群欢迎语素材请求
|
||||||
@@ -421,10 +418,7 @@ func (r *Client) DelGroupWelcomeTemplate(req *DelGroupWelcomeTemplateRequest) er
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
result := &DelGroupWelcomeTemplateResponse{}
|
result := &DelGroupWelcomeTemplateResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "DelGroupWelcomeTemplate"); err != nil {
|
return util.DecodeWithError(response, result, "DelGroupWelcomeTemplate")
|
||||||
return err
|
|
||||||
}
|
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// RemindGroupMsgSendRequest 提醒成员群发请求
|
// RemindGroupMsgSendRequest 提醒成员群发请求
|
||||||
|
|||||||
@@ -60,10 +60,7 @@ func (r *Client) GetUserBehaviorData(req *GetUserBehaviorRequest) ([]BehaviorDat
|
|||||||
}
|
}
|
||||||
var result GetUserBehaviorResponse
|
var result GetUserBehaviorResponse
|
||||||
err = util.DecodeWithError(response, &result, "GetUserBehaviorData")
|
err = util.DecodeWithError(response, &result, "GetUserBehaviorData")
|
||||||
if err != nil {
|
return result.BehaviorData, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.BehaviorData, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -126,10 +123,7 @@ func (r *Client) GetGroupChatStat(req *GetGroupChatStatRequest) (*GetGroupChatSt
|
|||||||
}
|
}
|
||||||
result := &GetGroupChatStatResponse{}
|
result := &GetGroupChatStatResponse{}
|
||||||
err = util.DecodeWithError(response, result, "GetGroupChatStat")
|
err = util.DecodeWithError(response, result, "GetGroupChatStat")
|
||||||
if err != nil {
|
return result, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -169,8 +163,5 @@ func (r *Client) GetGroupChatStatByDay(req *GetGroupChatStatByDayRequest) ([]Get
|
|||||||
}
|
}
|
||||||
var result GetGroupChatStatByDayResponse
|
var result GetGroupChatStatByDayResponse
|
||||||
err = util.DecodeWithError(response, &result, "GetGroupChatStatByDay")
|
err = util.DecodeWithError(response, &result, "GetGroupChatStatByDay")
|
||||||
if err != nil {
|
return result.Items, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.Items, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -77,10 +77,7 @@ func (r *Client) GetCropTagList(req GetCropTagRequest) ([]TagGroup, error) {
|
|||||||
}
|
}
|
||||||
var result GetCropTagListResponse
|
var result GetCropTagListResponse
|
||||||
err = util.DecodeWithError(response, &result, "GetCropTagList")
|
err = util.DecodeWithError(response, &result, "GetCropTagList")
|
||||||
if err != nil {
|
return result.TagGroup, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return result.TagGroup, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddCropTagRequest 添加企业标签请求
|
// AddCropTagRequest 添加企业标签请求
|
||||||
@@ -123,10 +120,7 @@ func (r *Client) AddCropTag(req AddCropTagRequest) (*TagGroup, error) {
|
|||||||
}
|
}
|
||||||
var result AddCropTagResponse
|
var result AddCropTagResponse
|
||||||
err = util.DecodeWithError(response, &result, "AddCropTag")
|
err = util.DecodeWithError(response, &result, "AddCropTag")
|
||||||
if err != nil {
|
return &result.TagGroup, err
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
return &result.TagGroup, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// EditCropTagRequest 编辑客户企业标签请求
|
// EditCropTagRequest 编辑客户企业标签请求
|
||||||
@@ -256,10 +250,8 @@ func (r *Client) GetStrategyTagList(req *GetStrategyTagListRequest) (*GetStrateg
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetStrategyTagListResponse{}
|
result := &GetStrategyTagListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetStrategyTagList"); err != nil {
|
err = util.DecodeWithError(response, result, "GetStrategyTagList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddStrategyTagRequest 为指定规则组创建企业客户标签请求
|
// AddStrategyTagRequest 为指定规则组创建企业客户标签请求
|
||||||
@@ -315,10 +307,8 @@ func (r *Client) AddStrategyTag(req *AddStrategyTagRequest) (*AddStrategyTagResp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &AddStrategyTagResponse{}
|
result := &AddStrategyTagResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "AddStrategyTag"); err != nil {
|
err = util.DecodeWithError(response, result, "AddStrategyTag")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// EditStrategyTagRequest 编辑指定规则组下的企业客户标签请求
|
// EditStrategyTagRequest 编辑指定规则组下的企业客户标签请求
|
||||||
|
|||||||
@@ -58,10 +58,8 @@ func (r *Client) TransferCustomer(req *TransferCustomerRequest) (*TransferCustom
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &TransferCustomerResponse{}
|
result := &TransferCustomerResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "TransferCustomer"); err != nil {
|
err = util.DecodeWithError(response, result, "TransferCustomer")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TransferResultRequest 查询客户接替状态请求
|
// TransferResultRequest 查询客户接替状态请求
|
||||||
@@ -100,10 +98,8 @@ func (r *Client) TransferResult(req *TransferResultRequest) (*TransferResultResp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &TransferResultResponse{}
|
result := &TransferResultResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "TransferResult"); err != nil {
|
err = util.DecodeWithError(response, result, "TransferResult")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GroupChatOnJobTransferRequest 分配在职成员的客户群请求
|
// GroupChatOnJobTransferRequest 分配在职成员的客户群请求
|
||||||
@@ -140,10 +136,8 @@ func (r *Client) GroupChatOnJobTransfer(req *GroupChatOnJobTransferRequest) (*Gr
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GroupChatOnJobTransferResponse{}
|
result := &GroupChatOnJobTransferResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GroupChatOnJobTransfer"); err != nil {
|
err = util.DecodeWithError(response, result, "GroupChatOnJobTransfer")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetUnassignedListRequest 获取待分配的离职成员列表请求
|
// GetUnassignedListRequest 获取待分配的离职成员列表请求
|
||||||
@@ -182,10 +176,8 @@ func (r *Client) GetUnassignedList(req *GetUnassignedListRequest) (*GetUnassigne
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetUnassignedListResponse{}
|
result := &GetUnassignedListResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetUnassignedList"); err != nil {
|
err = util.DecodeWithError(response, result, "GetUnassignedList")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResignedTransferCustomerRequest 分配离职成员的客户请求
|
// ResignedTransferCustomerRequest 分配离职成员的客户请求
|
||||||
@@ -216,10 +208,8 @@ func (r *Client) ResignedTransferCustomer(req *ResignedTransferCustomerRequest)
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ResignedTransferCustomerResponse{}
|
result := &ResignedTransferCustomerResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ResignedTransferCustomer"); err != nil {
|
err = util.DecodeWithError(response, result, "ResignedTransferCustomer")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// ResignedTransferResultRequest 查询离职客户接替状态请求
|
// ResignedTransferResultRequest 查询离职客户接替状态请求
|
||||||
@@ -251,10 +241,8 @@ func (r *Client) ResignedTransferResult(req *ResignedTransferResultRequest) (*Re
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &ResignedTransferResultResponse{}
|
result := &ResignedTransferResultResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "ResignedTransferResult"); err != nil {
|
err = util.DecodeWithError(response, result, "ResignedTransferResult")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GroupChatTransferRequest 分配离职成员的客户群请求
|
// GroupChatTransferRequest 分配离职成员的客户群请求
|
||||||
@@ -284,8 +272,6 @@ func (r *Client) GroupChatTransfer(req *GroupChatTransferRequest) (*GroupChatTra
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GroupChatTransferResponse{}
|
result := &GroupChatTransferResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GroupChatTransfer"); err != nil {
|
err = util.DecodeWithError(response, result, "GroupChatTransfer")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -86,10 +86,8 @@ func (r *Client) GetInvoiceInfo(req *GetInvoiceInfoRequest) (*GetInvoiceInfoResp
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetInvoiceInfoResponse{}
|
result := &GetInvoiceInfoResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetInvoiceInfo"); err != nil {
|
err = util.DecodeWithError(response, result, "GetInvoiceInfo")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateInvoiceStatusRequest 更新发票状态请求
|
// UpdateInvoiceStatusRequest 更新发票状态请求
|
||||||
@@ -184,8 +182,6 @@ func (r *Client) GetInvoiceInfoBatch(req *GetInvoiceInfoBatchRequest) (*GetInvoi
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetInvoiceInfoBatchResponse{}
|
result := &GetInvoiceInfoBatchResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetInvoiceInfoBatch"); err != nil {
|
err = util.DecodeWithError(response, result, "GetInvoiceInfoBatch")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -92,8 +92,6 @@ func (r *Client) GetCallbackMessage(encryptedMsg []byte) (msg CallbackMessage, e
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return msg, NewSDKErr(40016)
|
return msg, NewSDKErr(40016)
|
||||||
}
|
}
|
||||||
if err = xml.Unmarshal(bData, &msg); err != nil {
|
err = xml.Unmarshal(bData, &msg)
|
||||||
return msg, err
|
|
||||||
}
|
|
||||||
return msg, err
|
return msg, err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -59,10 +59,8 @@ func (r *Client) GetCorpStatistic(req *GetCorpStatisticRequest) (*GetCorpStatist
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetCorpStatisticResponse{}
|
result := &GetCorpStatisticResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetCorpStatistic"); err != nil {
|
err = util.DecodeWithError(response, result, "GetCorpStatistic")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetServicerStatisticRequest 获取「客户数据统计」接待人员明细数据请求
|
// GetServicerStatisticRequest 获取「客户数据统计」接待人员明细数据请求
|
||||||
@@ -120,8 +118,6 @@ func (r *Client) GetServicerStatistic(req *GetServicerStatisticRequest) (*GetSer
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetServicerStatisticResponse{}
|
result := &GetServicerStatisticResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetServicerStatistic"); err != nil {
|
err = util.DecodeWithError(response, result, "GetServicerStatistic")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ const (
|
|||||||
uploadImgURL = "https://qyapi.weixin.qq.com/cgi-bin/media/uploadimg?access_token=%s"
|
uploadImgURL = "https://qyapi.weixin.qq.com/cgi-bin/media/uploadimg?access_token=%s"
|
||||||
// uploadTempFile 上传临时素材
|
// uploadTempFile 上传临时素材
|
||||||
uploadTempFile = "https://qyapi.weixin.qq.com/cgi-bin/media/upload?access_token=%s&type=%s"
|
uploadTempFile = "https://qyapi.weixin.qq.com/cgi-bin/media/upload?access_token=%s&type=%s"
|
||||||
|
// uploadAttachment 上传附件资源
|
||||||
|
uploadAttachment = "https://qyapi.weixin.qq.com/cgi-bin/media/upload_attachment?access_token=%s&media_type=%s&attachment_type=%d"
|
||||||
)
|
)
|
||||||
|
|
||||||
// UploadImgResponse 上传图片响应
|
// UploadImgResponse 上传图片响应
|
||||||
@@ -27,6 +29,14 @@ type UploadTempFileResponse struct {
|
|||||||
Type string `json:"type"`
|
Type string `json:"type"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UploadAttachmentResponse 上传资源附件响应
|
||||||
|
type UploadAttachmentResponse struct {
|
||||||
|
util.CommonError
|
||||||
|
MediaID string `json:"media_id"`
|
||||||
|
CreateAt int64 `json:"created_at"`
|
||||||
|
Type string `json:"type"`
|
||||||
|
}
|
||||||
|
|
||||||
// UploadImg 上传图片
|
// UploadImg 上传图片
|
||||||
// @see https://developer.work.weixin.qq.com/document/path/90256
|
// @see https://developer.work.weixin.qq.com/document/path/90256
|
||||||
func (r *Client) UploadImg(filename string) (*UploadImgResponse, error) {
|
func (r *Client) UploadImg(filename string) (*UploadImgResponse, error) {
|
||||||
@@ -42,10 +52,8 @@ func (r *Client) UploadImg(filename string) (*UploadImgResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UploadImgResponse{}
|
result := &UploadImgResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UploadImg"); err != nil {
|
err = util.DecodeWithError(response, result, "UploadImg")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// UploadTempFile 上传临时素材
|
// UploadTempFile 上传临时素材
|
||||||
@@ -64,8 +72,27 @@ func (r *Client) UploadTempFile(filename string, mediaType string) (*UploadTempF
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &UploadTempFileResponse{}
|
result := &UploadTempFileResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "UploadTempFile"); err != nil {
|
err = util.DecodeWithError(response, result, "UploadTempFile")
|
||||||
|
return result, err
|
||||||
|
}
|
||||||
|
|
||||||
|
// UploadAttachment 上传附件资源
|
||||||
|
// @see https://developer.work.weixin.qq.com/document/path/95098
|
||||||
|
// @mediaType 媒体文件类型,分别有图片(image)、视频(video)、普通文件(file)
|
||||||
|
// @attachment_type 附件类型,不同的附件类型用于不同的场景。1:朋友圈;2:商品图册
|
||||||
|
func (r *Client) UploadAttachment(filename string, mediaType string, attachmentType int) (*UploadAttachmentResponse, error) {
|
||||||
|
var (
|
||||||
|
accessToken string
|
||||||
|
err error
|
||||||
|
)
|
||||||
|
if accessToken, err = r.GetAccessToken(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
return result, nil
|
var response []byte
|
||||||
|
if response, err = util.PostFile("media", filename, fmt.Sprintf(uploadAttachment, accessToken, mediaType, attachmentType)); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
result := &UploadAttachmentResponse{}
|
||||||
|
err = util.DecodeWithError(response, result, "UploadAttachment")
|
||||||
|
return result, err
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -99,11 +99,9 @@ func (r *Client) Send(apiName string, request interface{}) (*SendResponse, error
|
|||||||
}
|
}
|
||||||
// 按照结构体解析返回值
|
// 按照结构体解析返回值
|
||||||
result := &SendResponse{}
|
result := &SendResponse{}
|
||||||
if err = util.DecodeWithError(response, result, apiName); err != nil {
|
err = util.DecodeWithError(response, result, apiName)
|
||||||
return nil, err
|
|
||||||
}
|
|
||||||
// 返回数据
|
// 返回数据
|
||||||
return result, nil
|
return result, err
|
||||||
}
|
}
|
||||||
|
|
||||||
// SendText 发送文本消息
|
// SendText 发送文本消息
|
||||||
|
|||||||
@@ -149,10 +149,7 @@ func (s *Client) GetRawChatData(seq uint64, limit uint64, proxy string, passwd s
|
|||||||
|
|
||||||
var data ChatDataResponse
|
var data ChatDataResponse
|
||||||
err := json.Unmarshal(buf, &data)
|
err := json.Unmarshal(buf, &data)
|
||||||
if err != nil {
|
return data, err
|
||||||
return ChatDataResponse{}, err
|
|
||||||
}
|
|
||||||
return data, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// DecryptData 解析密文.企业微信自有解密内容
|
// DecryptData 解析密文.企业微信自有解密内容
|
||||||
|
|||||||
@@ -123,10 +123,8 @@ func (ctr *Oauth) GetUserInfo(code string) (*GetUserInfoResponse, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetUserInfoResponse{}
|
result := &GetUserInfoResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetUserInfo"); err != nil {
|
err = util.DecodeWithError(response, result, "GetUserInfo")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// GetUserDetailRequest 获取访问用户敏感信息请求
|
// GetUserDetailRequest 获取访问用户敏感信息请求
|
||||||
@@ -162,8 +160,6 @@ func (ctr *Oauth) GetUserDetail(req *GetUserDetailRequest) (*GetUserDetailRespon
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
result := &GetUserDetailResponse{}
|
result := &GetUserDetailResponse{}
|
||||||
if err = util.DecodeWithError(response, result, "GetUserDetail"); err != nil {
|
err = util.DecodeWithError(response, result, "GetUserDetail")
|
||||||
return nil, err
|
return result, err
|
||||||
}
|
|
||||||
return result, nil
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ import (
|
|||||||
"github.com/silenceper/wechat/v2/credential"
|
"github.com/silenceper/wechat/v2/credential"
|
||||||
"github.com/silenceper/wechat/v2/work/addresslist"
|
"github.com/silenceper/wechat/v2/work/addresslist"
|
||||||
"github.com/silenceper/wechat/v2/work/appchat"
|
"github.com/silenceper/wechat/v2/work/appchat"
|
||||||
|
"github.com/silenceper/wechat/v2/work/checkin"
|
||||||
"github.com/silenceper/wechat/v2/work/config"
|
"github.com/silenceper/wechat/v2/work/config"
|
||||||
"github.com/silenceper/wechat/v2/work/context"
|
"github.com/silenceper/wechat/v2/work/context"
|
||||||
"github.com/silenceper/wechat/v2/work/externalcontact"
|
"github.com/silenceper/wechat/v2/work/externalcontact"
|
||||||
@@ -85,3 +86,8 @@ func (wk *Work) GetAppChat() *appchat.Client {
|
|||||||
func (wk *Work) GetInvoice() *invoice.Client {
|
func (wk *Work) GetInvoice() *invoice.Client {
|
||||||
return invoice.NewClient(wk.ctx)
|
return invoice.NewClient(wk.ctx)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// GetCheckin 获取打卡接口实例
|
||||||
|
func (wk *Work) GetCheckin() *checkin.Client {
|
||||||
|
return checkin.NewClient(wk.ctx)
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user