代码拉取完成,页面将自动刷新
/*
* MIT License
*
* Copyright (c) 2022 Lark Technologies Pte. Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice, shall be included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package larkevent
import (
"context"
"crypto/aes"
"crypto/cipher"
"crypto/sha256"
"encoding/base64"
"fmt"
"strings"
"gitee.com/zhuhukun/oapi-sdk-go/v3/core"
)
type EventHandler interface {
Event() interface{} // 用于返回事件消息结构体(即承载回调消息内容的结构体)
Handle(context.Context, interface{}) error // 用于处理事件
}
type CallbackHandler interface {
Event() interface{}
Handle(context.Context, interface{}) (interface{}, error) //处理回调
}
type EventHandlerModel interface {
RawReq(req *EventReq)
}
type IReqHandler interface {
Handle(ctx context.Context, req *EventReq) *EventResp
Logger() larkcore.Logger
}
type DecryptErr struct {
Message string
}
func newDecryptErr(message string) *DecryptErr {
return &DecryptErr{Message: message}
}
func (e DecryptErr) Error() string {
return e.Message
}
// eventDecrypt returns decrypt bytes
func EventDecrypt(encrypt string, secret string) ([]byte, error) {
buf, err := base64.StdEncoding.DecodeString(encrypt)
if err != nil {
return nil, newDecryptErr(fmt.Sprintf("base64 decode error: %v", err))
}
if len(buf) < aes.BlockSize {
return nil, newDecryptErr("cipher too short")
}
key := sha256.Sum256([]byte(secret))
block, err := aes.NewCipher(key[:sha256.Size])
if err != nil {
return nil, newDecryptErr(fmt.Sprintf("AES new cipher error %v", err))
}
iv := buf[:aes.BlockSize]
buf = buf[aes.BlockSize:]
// CBC mode always works in whole blocks.
if len(buf)%aes.BlockSize != 0 {
return nil, newDecryptErr("ciphertext is not a multiple of the block size")
}
mode := cipher.NewCBCDecrypter(block, iv)
mode.CryptBlocks(buf, buf)
n := strings.Index(string(buf), "{")
if n == -1 {
n = 0
}
m := strings.LastIndex(string(buf), "}")
if m == -1 {
m = len(buf) - 1
}
return buf[n : m+1], nil
}
func Signature(timestamp string, nonce string, eventEncryptKey string, body string) string {
var b strings.Builder
b.WriteString(timestamp)
b.WriteString(nonce)
b.WriteString(eventEncryptKey)
b.WriteString(body)
bs := []byte(b.String())
h := sha256.New()
_, _ = h.Write(bs)
bs = h.Sum(nil)
return fmt.Sprintf("%x", bs)
}
type OptionFunc func(config *larkcore.Config)
func WithLogger(logger larkcore.Logger) OptionFunc {
return func(config *larkcore.Config) {
config.Logger = logger
}
}
func WithLogLevel(logLevel larkcore.LogLevel) OptionFunc {
return func(config *larkcore.Config) {
config.LogLevel = logLevel
}
}
func WithSkipSignVerify(skipSignVerify bool) OptionFunc {
return func(config *larkcore.Config) {
config.SkipSignVerify = skipSignVerify
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。