-
-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathapi_auth_app_ticket.go
51 lines (47 loc) · 1.72 KB
/
api_auth_app_ticket.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* Copyright 2022 chyroc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package lark
import (
"context"
"time"
)
// WithTenant ...
func (r *Lark) WithTenant(tenantKey string) *Lark {
return r.clone(tenantKey)
}
// GetAppTicket ...
func (r *AuthService) GetAppTicket(ctx context.Context) (string, error) {
s, _, err := r.cli.store.Get(ctx, genISVAppTicketKey(r.cli.appID))
if err != nil && err != ErrStoreNotFound {
r.cli.Log(ctx, LogLevelError, "[lark] Auth#GetAppTicket get_ticket_cache failed, app_id=%s, err=%s", r.cli.appID, err)
}
if err == ErrStoreNotFound && r.cli.getAppTicketFunc != nil {
ticket, err := r.cli.getAppTicketFunc(ctx, r.cli, r.cli.appID)
if err != nil {
r.cli.Log(ctx, LogLevelError, "[lark] Auth#GetAppTicket get_ticket failed, app_id=%s, err=%s", r.cli.appID, err)
return "", err
}
if err = r.SetAppTicket(ctx, ticket); err != nil {
r.cli.Log(ctx, LogLevelError, "[lark] Auth#GetAppTicket set_ticket_cache failed, app_id=%s, err=%s", r.cli.appID, err)
}
return ticket, nil
}
return s, err
}
// SetAppTicket ...
func (r *AuthService) SetAppTicket(ctx context.Context, appTicket string) error {
return r.cli.store.Set(ctx, genISVAppTicketKey(r.cli.appID), appTicket, time.Hour*2)
}