Merge branch 'feat-channel'
This commit is contained in:
+2
-5
@@ -20,11 +20,8 @@ type barkMessageResponse struct {
|
|||||||
Message string `json:"message"`
|
Message string `json:"message"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendBarkMessage(message *model.Message, user *model.User) error {
|
func SendBarkMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
if user.BarkServer == "" || user.BarkSecret == "" {
|
url := fmt.Sprintf("%s/%s", channel_.URL, channel_.Secret)
|
||||||
return errors.New("未配置 Bark 消息推送方式")
|
|
||||||
}
|
|
||||||
url := fmt.Sprintf("%s/%s", user.BarkServer, user.BarkSecret)
|
|
||||||
req := barkMessageRequest{
|
req := barkMessageRequest{
|
||||||
Title: message.Title,
|
Title: message.Title,
|
||||||
Body: message.Content,
|
Body: message.Content,
|
||||||
|
|||||||
+14
-14
@@ -2,6 +2,7 @@ package channel
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
|
"fmt"
|
||||||
"github.com/gorilla/websocket"
|
"github.com/gorilla/websocket"
|
||||||
"message-pusher/common"
|
"message-pusher/common"
|
||||||
"message-pusher/model"
|
"message-pusher/model"
|
||||||
@@ -17,7 +18,7 @@ const (
|
|||||||
)
|
)
|
||||||
|
|
||||||
type webSocketClient struct {
|
type webSocketClient struct {
|
||||||
userId int
|
key string
|
||||||
conn *websocket.Conn
|
conn *websocket.Conn
|
||||||
message chan *model.Message
|
message chan *model.Message
|
||||||
pong chan bool
|
pong chan bool
|
||||||
@@ -55,10 +56,10 @@ func (c *webSocketClient) handleDataWriting() {
|
|||||||
defer func() {
|
defer func() {
|
||||||
pingTicker.Stop()
|
pingTicker.Stop()
|
||||||
clientConnMapMutex.Lock()
|
clientConnMapMutex.Lock()
|
||||||
client, ok := clientMap[c.userId]
|
client, ok := clientMap[c.key]
|
||||||
// otherwise we may delete the new added client!
|
// otherwise we may delete the new added client!
|
||||||
if ok && client.timestamp == c.timestamp {
|
if ok && client.timestamp == c.timestamp {
|
||||||
delete(clientMap, c.userId)
|
delete(clientMap, c.key)
|
||||||
}
|
}
|
||||||
clientConnMapMutex.Unlock()
|
clientConnMapMutex.Unlock()
|
||||||
err := c.conn.Close()
|
err := c.conn.Close()
|
||||||
@@ -108,18 +109,19 @@ func (c *webSocketClient) close() {
|
|||||||
// the defer function in handleDataWriting will do the cleanup
|
// the defer function in handleDataWriting will do the cleanup
|
||||||
}
|
}
|
||||||
|
|
||||||
var clientMap map[int]*webSocketClient
|
var clientMap map[string]*webSocketClient
|
||||||
var clientConnMapMutex sync.Mutex
|
var clientConnMapMutex sync.Mutex
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
clientConnMapMutex.Lock()
|
clientConnMapMutex.Lock()
|
||||||
clientMap = make(map[int]*webSocketClient)
|
clientMap = make(map[string]*webSocketClient)
|
||||||
clientConnMapMutex.Unlock()
|
clientConnMapMutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
func RegisterClient(userId int, conn *websocket.Conn) {
|
func RegisterClient(channelName string, userId int, conn *websocket.Conn) {
|
||||||
|
key := fmt.Sprintf("%s:%d", channelName, userId)
|
||||||
clientConnMapMutex.Lock()
|
clientConnMapMutex.Lock()
|
||||||
oldClient, existed := clientMap[userId]
|
oldClient, existed := clientMap[key]
|
||||||
clientConnMapMutex.Unlock()
|
clientConnMapMutex.Unlock()
|
||||||
if existed {
|
if existed {
|
||||||
byeMessage := &model.Message{
|
byeMessage := &model.Message{
|
||||||
@@ -134,7 +136,7 @@ func RegisterClient(userId int, conn *websocket.Conn) {
|
|||||||
Description: "客户端连接成功!",
|
Description: "客户端连接成功!",
|
||||||
}
|
}
|
||||||
newClient := &webSocketClient{
|
newClient := &webSocketClient{
|
||||||
userId: userId,
|
key: key,
|
||||||
conn: conn,
|
conn: conn,
|
||||||
message: make(chan *model.Message),
|
message: make(chan *model.Message),
|
||||||
pong: make(chan bool),
|
pong: make(chan bool),
|
||||||
@@ -145,16 +147,14 @@ func RegisterClient(userId int, conn *websocket.Conn) {
|
|||||||
go newClient.handleDataReading()
|
go newClient.handleDataReading()
|
||||||
defer newClient.sendMessage(helloMessage)
|
defer newClient.sendMessage(helloMessage)
|
||||||
clientConnMapMutex.Lock()
|
clientConnMapMutex.Lock()
|
||||||
clientMap[userId] = newClient
|
clientMap[key] = newClient
|
||||||
clientConnMapMutex.Unlock()
|
clientConnMapMutex.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendClientMessage(message *model.Message, user *model.User) error {
|
func SendClientMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
if user.ClientSecret == "" {
|
key := fmt.Sprintf("%s:%d", channel_.Name, user.Id)
|
||||||
return errors.New("未配置 WebSocket 客户端消息推送方式")
|
|
||||||
}
|
|
||||||
clientConnMapMutex.Lock()
|
clientConnMapMutex.Lock()
|
||||||
client, existed := clientMap[user.Id]
|
client, existed := clientMap[key]
|
||||||
clientConnMapMutex.Unlock()
|
clientConnMapMutex.Unlock()
|
||||||
if !existed {
|
if !existed {
|
||||||
return errors.New("客户端未连接")
|
return errors.New("客户端未连接")
|
||||||
|
|||||||
+2
-5
@@ -26,11 +26,8 @@ type corpMessageResponse struct {
|
|||||||
Message string `json:"errmsg"`
|
Message string `json:"errmsg"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendCorpMessage(message *model.Message, user *model.User) error {
|
func SendCorpMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
// https://developer.work.weixin.qq.com/document/path/91770
|
// https://developer.work.weixin.qq.com/document/path/91770
|
||||||
if user.CorpWebhookURL == "" {
|
|
||||||
return errors.New("未配置企业微信群机器人消息推送方式")
|
|
||||||
}
|
|
||||||
messageRequest := corpMessageRequest{
|
messageRequest := corpMessageRequest{
|
||||||
MessageType: "text",
|
MessageType: "text",
|
||||||
}
|
}
|
||||||
@@ -48,7 +45,7 @@ func SendCorpMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
resp, err := http.Post(fmt.Sprintf("%s", user.CorpWebhookURL), "application/json",
|
resp, err := http.Post(fmt.Sprintf("%s", channel_.URL), "application/json",
|
||||||
bytes.NewBuffer(jsonData))
|
bytes.NewBuffer(jsonData))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
+3
-6
@@ -35,11 +35,8 @@ type dingMessageResponse struct {
|
|||||||
Message string `json:"errmsg"`
|
Message string `json:"errmsg"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendDingMessage(message *model.Message, user *model.User) error {
|
func SendDingMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
// https://open.dingtalk.com/document/robots/custom-robot-access#title-72m-8ag-pqw
|
// https://open.dingtalk.com/document/robots/custom-robot-access#title-72m-8ag-pqw
|
||||||
if user.DingWebhookURL == "" {
|
|
||||||
return errors.New("未配置钉钉群机器人消息推送方式")
|
|
||||||
}
|
|
||||||
messageRequest := dingMessageRequest{
|
messageRequest := dingMessageRequest{
|
||||||
MessageType: "text",
|
MessageType: "text",
|
||||||
}
|
}
|
||||||
@@ -60,7 +57,7 @@ func SendDingMessage(message *model.Message, user *model.User) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
timestamp := time.Now().UnixMilli()
|
timestamp := time.Now().UnixMilli()
|
||||||
sign, err := dingSign(user.DingWebhookSecret, timestamp)
|
sign, err := dingSign(channel_.Secret, timestamp)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -68,7 +65,7 @@ func SendDingMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
resp, err := http.Post(fmt.Sprintf("%s×tamp=%d&sign=%s", user.DingWebhookURL, timestamp, sign), "application/json",
|
resp, err := http.Post(fmt.Sprintf("%s×tamp=%d&sign=%s", channel_.URL, timestamp, sign), "application/json",
|
||||||
bytes.NewBuffer(jsonData))
|
bytes.NewBuffer(jsonData))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
+2
-5
@@ -18,10 +18,7 @@ type discordMessageResponse struct {
|
|||||||
Message string `json:"message"`
|
Message string `json:"message"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendDiscordMessage(message *model.Message, user *model.User) error {
|
func SendDiscordMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
if user.DiscordWebhookURL == "" {
|
|
||||||
return errors.New("未配置 Discord 群机器人消息推送方式")
|
|
||||||
}
|
|
||||||
if message.Content == "" {
|
if message.Content == "" {
|
||||||
message.Content = message.Description
|
message.Content = message.Description
|
||||||
}
|
}
|
||||||
@@ -42,7 +39,7 @@ func SendDiscordMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
resp, err := http.Post(user.DiscordWebhookURL, "application/json", bytes.NewBuffer(jsonData))
|
resp, err := http.Post(channel_.URL, "application/json", bytes.NewBuffer(jsonData))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
+1
-1
@@ -6,7 +6,7 @@ import (
|
|||||||
"message-pusher/model"
|
"message-pusher/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
func SendEmailMessage(message *model.Message, user *model.User) error {
|
func SendEmailMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
if message.To != "" {
|
if message.To != "" {
|
||||||
if user.SendEmailToOthers != common.SendEmailToOthersAllowed && user.Role < common.RoleAdminUser {
|
if user.SendEmailToOthers != common.SendEmailToOthersAllowed && user.Role < common.RoleAdminUser {
|
||||||
return errors.New("没有权限发送邮件给其他人,请联系管理员为你添加该权限")
|
return errors.New("没有权限发送邮件给其他人,请联系管理员为你添加该权限")
|
||||||
|
|||||||
+3
-6
@@ -46,11 +46,8 @@ type larkMessageResponse struct {
|
|||||||
Message string `json:"msg"`
|
Message string `json:"msg"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendLarkMessage(message *model.Message, user *model.User) error {
|
func SendLarkMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
// https://open.feishu.cn/document/ukTMukTMukTM/ucTM5YjL3ETO24yNxkjN#e1cdee9f
|
// https://open.feishu.cn/document/ukTMukTMukTM/ucTM5YjL3ETO24yNxkjN#e1cdee9f
|
||||||
if user.LarkWebhookURL == "" {
|
|
||||||
return errors.New("未配置飞书群机器人消息推送方式")
|
|
||||||
}
|
|
||||||
messageRequest := larkMessageRequest{
|
messageRequest := larkMessageRequest{
|
||||||
MessageType: "text",
|
MessageType: "text",
|
||||||
}
|
}
|
||||||
@@ -83,7 +80,7 @@ func SendLarkMessage(message *model.Message, user *model.User) error {
|
|||||||
|
|
||||||
now := time.Now()
|
now := time.Now()
|
||||||
timestamp := now.Unix()
|
timestamp := now.Unix()
|
||||||
sign, err := larkSign(user.LarkWebhookSecret, timestamp)
|
sign, err := larkSign(channel_.Secret, timestamp)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
@@ -93,7 +90,7 @@ func SendLarkMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
resp, err := http.Post(user.LarkWebhookURL, "application/json",
|
resp, err := http.Post(channel_.URL, "application/json",
|
||||||
bytes.NewBuffer(jsonData))
|
bytes.NewBuffer(jsonData))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
+24
-38
@@ -5,45 +5,31 @@ import (
|
|||||||
"message-pusher/model"
|
"message-pusher/model"
|
||||||
)
|
)
|
||||||
|
|
||||||
const (
|
func SendMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
TypeEmail = "email"
|
switch channel_.Type {
|
||||||
TypeWeChatTestAccount = "test"
|
case model.TypeEmail:
|
||||||
TypeWeChatCorpAccount = "corp_app"
|
return SendEmailMessage(message, user, channel_)
|
||||||
TypeCorp = "corp"
|
case model.TypeWeChatTestAccount:
|
||||||
TypeLark = "lark"
|
return SendWeChatTestMessage(message, user, channel_)
|
||||||
TypeDing = "ding"
|
case model.TypeWeChatCorpAccount:
|
||||||
TypeTelegram = "telegram"
|
return SendWeChatCorpMessage(message, user, channel_)
|
||||||
TypeDiscord = "discord"
|
case model.TypeCorp:
|
||||||
TypeBark = "bark"
|
return SendCorpMessage(message, user, channel_)
|
||||||
TypeClient = "client"
|
case model.TypeLark:
|
||||||
TypeNone = "none"
|
return SendLarkMessage(message, user, channel_)
|
||||||
)
|
case model.TypeDing:
|
||||||
|
return SendDingMessage(message, user, channel_)
|
||||||
func SendMessage(message *model.Message, user *model.User) error {
|
case model.TypeBark:
|
||||||
switch message.Channel {
|
return SendBarkMessage(message, user, channel_)
|
||||||
case TypeEmail:
|
case model.TypeClient:
|
||||||
return SendEmailMessage(message, user)
|
return SendClientMessage(message, user, channel_)
|
||||||
case TypeWeChatTestAccount:
|
case model.TypeTelegram:
|
||||||
return SendWeChatTestMessage(message, user)
|
return SendTelegramMessage(message, user, channel_)
|
||||||
case TypeWeChatCorpAccount:
|
case model.TypeDiscord:
|
||||||
return SendWeChatCorpMessage(message, user)
|
return SendDiscordMessage(message, user, channel_)
|
||||||
case TypeCorp:
|
case model.TypeNone:
|
||||||
return SendCorpMessage(message, user)
|
|
||||||
case TypeLark:
|
|
||||||
return SendLarkMessage(message, user)
|
|
||||||
case TypeDing:
|
|
||||||
return SendDingMessage(message, user)
|
|
||||||
case TypeBark:
|
|
||||||
return SendBarkMessage(message, user)
|
|
||||||
case TypeClient:
|
|
||||||
return SendClientMessage(message, user)
|
|
||||||
case TypeTelegram:
|
|
||||||
return SendTelegramMessage(message, user)
|
|
||||||
case TypeDiscord:
|
|
||||||
return SendDiscordMessage(message, user)
|
|
||||||
case TypeNone:
|
|
||||||
return nil
|
return nil
|
||||||
default:
|
default:
|
||||||
return errors.New("不支持的消息通道:" + message.Channel)
|
return errors.New("不支持的消息通道:" + channel_.Type)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-6
@@ -20,16 +20,16 @@ type telegramMessageResponse struct {
|
|||||||
Description string `json:"description"`
|
Description string `json:"description"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendTelegramMessage(message *model.Message, user *model.User) error {
|
func SendTelegramMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
// https://core.telegram.org/bots/api#sendmessage
|
// https://core.telegram.org/bots/api#sendmessage
|
||||||
if user.TelegramBotToken == "" || user.TelegramChatId == "" {
|
|
||||||
return errors.New("未配置 Telegram 机器人消息推送方式")
|
|
||||||
}
|
|
||||||
messageRequest := telegramMessageRequest{
|
messageRequest := telegramMessageRequest{
|
||||||
ChatId: user.TelegramChatId,
|
ChatId: channel_.AccountId,
|
||||||
Text: message.Content,
|
Text: message.Content,
|
||||||
ParseMode: "markdown",
|
ParseMode: "markdown",
|
||||||
}
|
}
|
||||||
|
if message.To != "" {
|
||||||
|
messageRequest.ChatId = message.To
|
||||||
|
}
|
||||||
if messageRequest.Text == "" {
|
if messageRequest.Text == "" {
|
||||||
messageRequest.Text = message.Description
|
messageRequest.Text = message.Description
|
||||||
}
|
}
|
||||||
@@ -37,7 +37,7 @@ func SendTelegramMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
resp, err := http.Post(fmt.Sprintf("https://api.telegram.org/bot%s/sendMessage", user.TelegramBotToken), "application/json",
|
resp, err := http.Post(fmt.Sprintf("https://api.telegram.org/bot%s/sendMessage", channel_.Secret), "application/json",
|
||||||
bytes.NewBuffer(jsonData))
|
bytes.NewBuffer(jsonData))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
|||||||
+144
-101
@@ -12,6 +12,7 @@ type TokenStoreItem interface {
|
|||||||
Token() string
|
Token() string
|
||||||
Refresh()
|
Refresh()
|
||||||
IsFilled() bool
|
IsFilled() bool
|
||||||
|
IsShared() bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type tokenStore struct {
|
type tokenStore struct {
|
||||||
@@ -22,34 +23,51 @@ type tokenStore struct {
|
|||||||
|
|
||||||
var s tokenStore
|
var s tokenStore
|
||||||
|
|
||||||
|
func channel2item(channel_ *model.Channel) TokenStoreItem {
|
||||||
|
if channel_.Type == model.TypeWeChatTestAccount {
|
||||||
|
item := &WeChatTestAccountTokenStoreItem{
|
||||||
|
AppID: channel_.AppId,
|
||||||
|
AppSecret: channel_.Secret,
|
||||||
|
}
|
||||||
|
return item
|
||||||
|
} else if channel_.Type == model.TypeWeChatCorpAccount {
|
||||||
|
corpId, agentId, err := parseWechatCorpAccountAppId(channel_.AppId)
|
||||||
|
if err != nil {
|
||||||
|
common.SysError(err.Error())
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
item := &WeChatCorpAccountTokenStoreItem{
|
||||||
|
CorpId: corpId,
|
||||||
|
AgentSecret: channel_.Secret,
|
||||||
|
AgentId: agentId,
|
||||||
|
}
|
||||||
|
return item
|
||||||
|
}
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func channels2items(channels []*model.Channel) []TokenStoreItem {
|
||||||
|
var items []TokenStoreItem
|
||||||
|
for _, channel_ := range channels {
|
||||||
|
item := channel2item(channel_)
|
||||||
|
if item != nil {
|
||||||
|
items = append(items, item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return items
|
||||||
|
}
|
||||||
|
|
||||||
func TokenStoreInit() {
|
func TokenStoreInit() {
|
||||||
s.Map = make(map[string]*TokenStoreItem)
|
s.Map = make(map[string]*TokenStoreItem)
|
||||||
// https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Get_access_token.html
|
// https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Get_access_token.html
|
||||||
// https://developer.work.weixin.qq.com/document/path/91039
|
// https://developer.work.weixin.qq.com/document/path/91039
|
||||||
s.ExpirationSeconds = 2 * 55 * 60 // 2 hours - 5 minutes
|
s.ExpirationSeconds = 2 * 55 * 60 // 2 hours - 5 minutes
|
||||||
go func() {
|
go func() {
|
||||||
users, err := model.GetAllUsersWithSecrets()
|
channels, err := model.GetTokenStoreChannels()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
common.FatalLog(err.Error())
|
common.FatalLog(err.Error())
|
||||||
}
|
}
|
||||||
var items []TokenStoreItem
|
items := channels2items(channels)
|
||||||
for _, user := range users {
|
|
||||||
if user.WeChatTestAccountId != "" {
|
|
||||||
item := &WeChatTestAccountTokenStoreItem{
|
|
||||||
AppID: user.WeChatTestAccountId,
|
|
||||||
AppSecret: user.WeChatTestAccountSecret,
|
|
||||||
}
|
|
||||||
items = append(items, item)
|
|
||||||
}
|
|
||||||
if user.WeChatCorpAccountId != "" {
|
|
||||||
item := &WeChatCorpAccountTokenStoreItem{
|
|
||||||
CorpId: user.WeChatCorpAccountId,
|
|
||||||
AgentSecret: user.WeChatCorpAccountAgentSecret,
|
|
||||||
AgentId: user.WeChatCorpAccountAgentId,
|
|
||||||
}
|
|
||||||
items = append(items, item)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
s.Mutex.RLock()
|
s.Mutex.RLock()
|
||||||
for i := range items {
|
for i := range items {
|
||||||
// s.Map[item.Key()] = &item // This is wrong, you are getting the address of a local variable!
|
// s.Map[item.Key()] = &item // This is wrong, you are getting the address of a local variable!
|
||||||
@@ -99,78 +117,14 @@ func TokenStoreRemoveItem(item TokenStoreItem) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TokenStoreAddUser(user *model.User) {
|
func TokenStoreAddUser(user *model.User) {
|
||||||
testItem := WeChatTestAccountTokenStoreItem{
|
channels, err := model.GetTokenStoreChannelsByUserId(user.Id)
|
||||||
AppID: user.WeChatTestAccountId,
|
if err != nil {
|
||||||
AppSecret: user.WeChatTestAccountSecret,
|
common.SysError(err.Error())
|
||||||
|
return
|
||||||
}
|
}
|
||||||
TokenStoreAddItem(&testItem)
|
items := channels2items(channels)
|
||||||
corpItem := WeChatCorpAccountTokenStoreItem{
|
for i := range items {
|
||||||
CorpId: user.WeChatCorpAccountId,
|
TokenStoreAddItem(items[i])
|
||||||
AgentSecret: user.WeChatCorpAccountAgentSecret,
|
|
||||||
AgentId: user.WeChatCorpAccountAgentId,
|
|
||||||
}
|
|
||||||
TokenStoreAddItem(&corpItem)
|
|
||||||
}
|
|
||||||
|
|
||||||
func TokenStoreUpdateUser(cleanUser *model.User, originUser *model.User) {
|
|
||||||
// WeChat Test Account
|
|
||||||
// The fields of cleanUser may be incomplete!
|
|
||||||
if cleanUser.WeChatTestAccountId == originUser.WeChatTestAccountId {
|
|
||||||
cleanUser.WeChatTestAccountId = ""
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatTestAccountSecret == originUser.WeChatTestAccountSecret {
|
|
||||||
cleanUser.WeChatTestAccountSecret = ""
|
|
||||||
}
|
|
||||||
// This means the user updated those fields.
|
|
||||||
if cleanUser.WeChatTestAccountId != "" || cleanUser.WeChatTestAccountSecret != "" {
|
|
||||||
oldWeChatTestAccountTokenStoreItem := WeChatTestAccountTokenStoreItem{
|
|
||||||
AppID: originUser.WeChatTestAccountId,
|
|
||||||
AppSecret: originUser.WeChatTestAccountSecret,
|
|
||||||
}
|
|
||||||
// Yeah, it's a deep copy.
|
|
||||||
newWeChatTestAccountTokenStoreItem := oldWeChatTestAccountTokenStoreItem
|
|
||||||
if cleanUser.WeChatTestAccountId != "" {
|
|
||||||
newWeChatTestAccountTokenStoreItem.AppID = cleanUser.WeChatTestAccountId
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatTestAccountSecret != "" {
|
|
||||||
newWeChatTestAccountTokenStoreItem.AppSecret = cleanUser.WeChatTestAccountSecret
|
|
||||||
}
|
|
||||||
if !oldWeChatTestAccountTokenStoreItem.IsShared() {
|
|
||||||
TokenStoreRemoveItem(&oldWeChatTestAccountTokenStoreItem)
|
|
||||||
}
|
|
||||||
TokenStoreAddItem(&newWeChatTestAccountTokenStoreItem)
|
|
||||||
}
|
|
||||||
|
|
||||||
// WeChat Corp Account
|
|
||||||
if cleanUser.WeChatCorpAccountId == originUser.WeChatCorpAccountId {
|
|
||||||
cleanUser.WeChatCorpAccountId = ""
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatCorpAccountAgentId == originUser.WeChatCorpAccountAgentId {
|
|
||||||
cleanUser.WeChatCorpAccountAgentId = ""
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatCorpAccountAgentSecret == originUser.WeChatCorpAccountAgentSecret {
|
|
||||||
cleanUser.WeChatCorpAccountAgentSecret = ""
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatCorpAccountId != "" || cleanUser.WeChatCorpAccountAgentId != "" || cleanUser.WeChatCorpAccountAgentSecret != "" {
|
|
||||||
oldWeChatCorpAccountTokenStoreItem := WeChatCorpAccountTokenStoreItem{
|
|
||||||
CorpId: originUser.WeChatCorpAccountId,
|
|
||||||
AgentSecret: originUser.WeChatCorpAccountAgentSecret,
|
|
||||||
AgentId: originUser.WeChatCorpAccountAgentId,
|
|
||||||
}
|
|
||||||
newWeChatCorpAccountTokenStoreItem := oldWeChatCorpAccountTokenStoreItem
|
|
||||||
if cleanUser.WeChatCorpAccountId != "" {
|
|
||||||
newWeChatCorpAccountTokenStoreItem.CorpId = cleanUser.WeChatCorpAccountId
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatCorpAccountAgentSecret != "" {
|
|
||||||
newWeChatCorpAccountTokenStoreItem.AgentSecret = cleanUser.WeChatCorpAccountAgentSecret
|
|
||||||
}
|
|
||||||
if cleanUser.WeChatCorpAccountAgentId != "" {
|
|
||||||
newWeChatCorpAccountTokenStoreItem.AgentId = cleanUser.WeChatCorpAccountAgentId
|
|
||||||
}
|
|
||||||
if !oldWeChatCorpAccountTokenStoreItem.IsShared() {
|
|
||||||
TokenStoreRemoveItem(&oldWeChatCorpAccountTokenStoreItem)
|
|
||||||
}
|
|
||||||
TokenStoreAddItem(&newWeChatCorpAccountTokenStoreItem)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -178,20 +132,109 @@ func TokenStoreUpdateUser(cleanUser *model.User, originUser *model.User) {
|
|||||||
// user must be filled.
|
// user must be filled.
|
||||||
// It's okay to delete a user that don't have an item here.
|
// It's okay to delete a user that don't have an item here.
|
||||||
func TokenStoreRemoveUser(user *model.User) {
|
func TokenStoreRemoveUser(user *model.User) {
|
||||||
testAccountTokenStoreItem := WeChatTestAccountTokenStoreItem{
|
channels, err := model.GetTokenStoreChannelsByUserId(user.Id)
|
||||||
AppID: user.WeChatTestAccountId,
|
if err != nil {
|
||||||
AppSecret: user.WeChatTestAccountSecret,
|
common.SysError(err.Error())
|
||||||
|
return
|
||||||
}
|
}
|
||||||
if !testAccountTokenStoreItem.IsShared() {
|
items := channels2items(channels)
|
||||||
TokenStoreRemoveItem(&testAccountTokenStoreItem)
|
for i := range items {
|
||||||
|
if items[i].IsShared() {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
TokenStoreRemoveItem(items[i])
|
||||||
}
|
}
|
||||||
corpAccountTokenStoreItem := WeChatCorpAccountTokenStoreItem{
|
}
|
||||||
CorpId: user.WeChatCorpAccountId,
|
|
||||||
AgentSecret: user.WeChatCorpAccountAgentSecret,
|
func TokenStoreAddChannel(channel *model.Channel) {
|
||||||
AgentId: user.WeChatCorpAccountAgentId,
|
if channel.Type != model.TypeWeChatTestAccount && channel.Type != model.TypeWeChatCorpAccount {
|
||||||
|
return
|
||||||
}
|
}
|
||||||
if !corpAccountTokenStoreItem.IsShared() {
|
item := channel2item(channel)
|
||||||
TokenStoreRemoveItem(&corpAccountTokenStoreItem)
|
if item != nil {
|
||||||
|
TokenStoreAddItem(item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TokenStoreRemoveChannel(channel *model.Channel) {
|
||||||
|
if channel.Type != model.TypeWeChatTestAccount && channel.Type != model.TypeWeChatCorpAccount {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
item := channel2item(channel)
|
||||||
|
if item != nil {
|
||||||
|
TokenStoreRemoveItem(item)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func TokenStoreUpdateChannel(newChannel *model.Channel, oldChannel *model.Channel) {
|
||||||
|
if oldChannel.Type != model.TypeWeChatTestAccount && oldChannel.Type != model.TypeWeChatCorpAccount {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if oldChannel.Type == model.TypeWeChatTestAccount {
|
||||||
|
// Only keep changed parts
|
||||||
|
if newChannel.AppId == oldChannel.AppId {
|
||||||
|
newChannel.AppId = ""
|
||||||
|
}
|
||||||
|
if newChannel.Secret == oldChannel.Secret {
|
||||||
|
newChannel.Secret = ""
|
||||||
|
}
|
||||||
|
oldItem := WeChatTestAccountTokenStoreItem{
|
||||||
|
AppID: oldChannel.AppId,
|
||||||
|
AppSecret: oldChannel.Secret,
|
||||||
|
}
|
||||||
|
// Yeah, it's a deep copy.
|
||||||
|
newItem := oldItem
|
||||||
|
// This means the user updated those fields.
|
||||||
|
if newChannel.AppId != "" {
|
||||||
|
newItem.AppID = newChannel.AppId
|
||||||
|
}
|
||||||
|
if newChannel.Secret != "" {
|
||||||
|
newItem.AppSecret = newChannel.Secret
|
||||||
|
}
|
||||||
|
if !oldItem.IsShared() {
|
||||||
|
TokenStoreRemoveItem(&oldItem)
|
||||||
|
}
|
||||||
|
TokenStoreAddItem(&newItem)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if oldChannel.Type == model.TypeWeChatCorpAccount {
|
||||||
|
// Only keep changed parts
|
||||||
|
if newChannel.AppId == oldChannel.AppId {
|
||||||
|
newChannel.AppId = ""
|
||||||
|
}
|
||||||
|
if newChannel.Secret == oldChannel.Secret {
|
||||||
|
newChannel.Secret = ""
|
||||||
|
}
|
||||||
|
corpId, agentId, err := parseWechatCorpAccountAppId(oldChannel.AppId)
|
||||||
|
if err != nil {
|
||||||
|
common.SysError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
oldItem := WeChatCorpAccountTokenStoreItem{
|
||||||
|
CorpId: corpId,
|
||||||
|
AgentSecret: oldChannel.Secret,
|
||||||
|
AgentId: agentId,
|
||||||
|
}
|
||||||
|
// Yeah, it's a deep copy.
|
||||||
|
newItem := oldItem
|
||||||
|
// This means the user updated those fields.
|
||||||
|
if newChannel.AppId != "" {
|
||||||
|
corpId, agentId, err := parseWechatCorpAccountAppId(oldChannel.AppId)
|
||||||
|
if err != nil {
|
||||||
|
common.SysError(err.Error())
|
||||||
|
return
|
||||||
|
}
|
||||||
|
newItem.CorpId = corpId
|
||||||
|
newItem.AgentId = agentId
|
||||||
|
}
|
||||||
|
if newChannel.Secret != "" {
|
||||||
|
newItem.AgentSecret = newChannel.Secret
|
||||||
|
}
|
||||||
|
if !oldItem.IsShared() {
|
||||||
|
TokenStoreRemoveItem(&oldItem)
|
||||||
|
}
|
||||||
|
TokenStoreAddItem(&newItem)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
"message-pusher/common"
|
"message-pusher/common"
|
||||||
"message-pusher/model"
|
"message-pusher/model"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -30,8 +31,9 @@ func (i *WeChatCorpAccountTokenStoreItem) Key() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (i *WeChatCorpAccountTokenStoreItem) IsShared() bool {
|
func (i *WeChatCorpAccountTokenStoreItem) IsShared() bool {
|
||||||
return model.DB.Where("wechat_corp_account_id = ? and wechat_corp_account_agent_secret = ? and wechat_corp_account_agent_id = ?",
|
appId := fmt.Sprintf("%s|%s", i.CorpId, i.AgentId)
|
||||||
i.CorpId, i.AgentSecret, i.AgentId).Find(&model.User{}).RowsAffected != 1
|
return model.DB.Where("type = ? and app_id = ? and secret = ?",
|
||||||
|
model.TypeWeChatCorpAccount, appId, i.AgentSecret).Find(&model.Channel{}).RowsAffected != 1
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *WeChatCorpAccountTokenStoreItem) IsFilled() bool {
|
func (i *WeChatCorpAccountTokenStoreItem) IsFilled() bool {
|
||||||
@@ -95,14 +97,26 @@ type wechatCorpMessageResponse struct {
|
|||||||
ErrorMessage string `json:"errmsg"`
|
ErrorMessage string `json:"errmsg"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendWeChatCorpMessage(message *model.Message, user *model.User) error {
|
func parseWechatCorpAccountAppId(appId string) (string, string, error) {
|
||||||
if user.WeChatCorpAccountId == "" {
|
parts := strings.Split(appId, "|")
|
||||||
return errors.New("未配置微信企业号消息推送方式")
|
if len(parts) != 2 {
|
||||||
|
return "", "", errors.New("无效的微信企业号配置")
|
||||||
}
|
}
|
||||||
|
return parts[0], parts[1], nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func SendWeChatCorpMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
// https://developer.work.weixin.qq.com/document/path/90236
|
// https://developer.work.weixin.qq.com/document/path/90236
|
||||||
|
corpId, agentId, err := parseWechatCorpAccountAppId(channel_.AppId)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
userId := channel_.AccountId
|
||||||
|
clientType := channel_.Other
|
||||||
|
agentSecret := channel_.Secret
|
||||||
messageRequest := wechatCorpMessageRequest{
|
messageRequest := wechatCorpMessageRequest{
|
||||||
ToUser: user.WeChatCorpAccountUserId,
|
ToUser: userId,
|
||||||
AgentId: user.WeChatCorpAccountAgentId,
|
AgentId: agentId,
|
||||||
}
|
}
|
||||||
if message.To != "" {
|
if message.To != "" {
|
||||||
messageRequest.ToUser = message.To
|
messageRequest.ToUser = message.To
|
||||||
@@ -118,7 +132,7 @@ func SendWeChatCorpMessage(message *model.Message, user *model.User) error {
|
|||||||
messageRequest.TextCard.URL = common.ServerAddress
|
messageRequest.TextCard.URL = common.ServerAddress
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
if user.WeChatCorpAccountClientType == "plugin" {
|
if clientType == "plugin" {
|
||||||
messageRequest.MessageType = "textcard"
|
messageRequest.MessageType = "textcard"
|
||||||
messageRequest.TextCard.Title = message.Title
|
messageRequest.TextCard.Title = message.Title
|
||||||
messageRequest.TextCard.Description = message.Description
|
messageRequest.TextCard.Description = message.Description
|
||||||
@@ -132,7 +146,7 @@ func SendWeChatCorpMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
key := fmt.Sprintf("%s%s%s", user.WeChatCorpAccountId, user.WeChatCorpAccountAgentId, user.WeChatCorpAccountAgentSecret)
|
key := fmt.Sprintf("%s%s%s", corpId, agentId, agentSecret)
|
||||||
accessToken := TokenStoreGetToken(key)
|
accessToken := TokenStoreGetToken(key)
|
||||||
resp, err := http.Post(fmt.Sprintf("https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s", accessToken), "application/json",
|
resp, err := http.Post(fmt.Sprintf("https://qyapi.weixin.qq.com/cgi-bin/message/send?access_token=%s", accessToken), "application/json",
|
||||||
bytes.NewBuffer(jsonData))
|
bytes.NewBuffer(jsonData))
|
||||||
|
|||||||
@@ -29,8 +29,8 @@ func (i *WeChatTestAccountTokenStoreItem) Key() string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (i *WeChatTestAccountTokenStoreItem) IsShared() bool {
|
func (i *WeChatTestAccountTokenStoreItem) IsShared() bool {
|
||||||
return model.DB.Where("wechat_test_account_id = ? and wechat_test_account_secret = ?",
|
return model.DB.Where("type = ? and app_id = ? and secret = ?",
|
||||||
i.AppID, i.AppSecret).Find(&model.User{}).RowsAffected != 1
|
model.TypeWeChatTestAccount, i.AppID, i.AppSecret).Find(&model.Channel{}).RowsAffected != 1
|
||||||
}
|
}
|
||||||
|
|
||||||
func (i *WeChatTestAccountTokenStoreItem) IsFilled() bool {
|
func (i *WeChatTestAccountTokenStoreItem) IsFilled() bool {
|
||||||
@@ -88,13 +88,10 @@ type wechatTestMessageResponse struct {
|
|||||||
ErrorMessage string `json:"errmsg"`
|
ErrorMessage string `json:"errmsg"`
|
||||||
}
|
}
|
||||||
|
|
||||||
func SendWeChatTestMessage(message *model.Message, user *model.User) error {
|
func SendWeChatTestMessage(message *model.Message, user *model.User, channel_ *model.Channel) error {
|
||||||
if user.WeChatTestAccountId == "" {
|
|
||||||
return errors.New("未配置微信测试号消息推送方式")
|
|
||||||
}
|
|
||||||
values := wechatTestMessageRequest{
|
values := wechatTestMessageRequest{
|
||||||
ToUser: user.WeChatTestAccountOpenId,
|
ToUser: channel_.AccountId,
|
||||||
TemplateId: user.WeChatTestAccountTemplateId,
|
TemplateId: channel_.Other,
|
||||||
URL: "",
|
URL: "",
|
||||||
}
|
}
|
||||||
values.Data.Text.Value = message.Description
|
values.Data.Text.Value = message.Description
|
||||||
@@ -103,7 +100,7 @@ func SendWeChatTestMessage(message *model.Message, user *model.User) error {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
key := fmt.Sprintf("%s%s", user.WeChatTestAccountId, user.WeChatTestAccountSecret)
|
key := fmt.Sprintf("%s%s", channel_.AppId, channel_.Secret)
|
||||||
accessToken := TokenStoreGetToken(key)
|
accessToken := TokenStoreGetToken(key)
|
||||||
resp, err := http.Post(fmt.Sprintf("https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=%s", accessToken), "application/json",
|
resp, err := http.Post(fmt.Sprintf("https://api.weixin.qq.com/cgi-bin/message/template/send?access_token=%s", accessToken), "application/json",
|
||||||
bytes.NewBuffer(jsonData))
|
bytes.NewBuffer(jsonData))
|
||||||
|
|||||||
@@ -106,3 +106,9 @@ const (
|
|||||||
MessageSendStatusSent = 2
|
MessageSendStatusSent = 2
|
||||||
MessageSendStatusFailed = 3
|
MessageSendStatusFailed = 3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
ChannelStatusUnknown = 0
|
||||||
|
ChannelStatusEnabled = 1
|
||||||
|
ChannelStatusDisabled = 2
|
||||||
|
)
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import (
|
|||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
func OpenBrowser(url string) {
|
func OpenBrowser(url string) {
|
||||||
@@ -151,3 +152,7 @@ func Markdown2HTML(markdown string) (HTML string, err error) {
|
|||||||
HTML = buf.String()
|
HTML = buf.String()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func GetTimestamp() int64 {
|
||||||
|
return time.Now().Unix()
|
||||||
|
}
|
||||||
|
|||||||
@@ -0,0 +1,193 @@
|
|||||||
|
package controller
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/gin-gonic/gin"
|
||||||
|
"message-pusher/channel"
|
||||||
|
"message-pusher/common"
|
||||||
|
"message-pusher/model"
|
||||||
|
"net/http"
|
||||||
|
"strconv"
|
||||||
|
)
|
||||||
|
|
||||||
|
func GetAllChannels(c *gin.Context) {
|
||||||
|
userId := c.GetInt("id")
|
||||||
|
p, _ := strconv.Atoi(c.Query("p"))
|
||||||
|
if p < 0 {
|
||||||
|
p = 0
|
||||||
|
}
|
||||||
|
channels, err := model.GetChannelsByUserId(userId, p*common.ItemsPerPage, common.ItemsPerPage)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": true,
|
||||||
|
"message": "",
|
||||||
|
"data": channels,
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func SearchChannels(c *gin.Context) {
|
||||||
|
userId := c.GetInt("id")
|
||||||
|
keyword := c.Query("keyword")
|
||||||
|
channels, err := model.SearchChannels(userId, keyword)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": true,
|
||||||
|
"message": "",
|
||||||
|
"data": channels,
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetChannel(c *gin.Context) {
|
||||||
|
id, err := strconv.Atoi(c.Param("id"))
|
||||||
|
userId := c.GetInt("id")
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
channel_, err := model.GetChannelById(id, userId)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": true,
|
||||||
|
"message": "",
|
||||||
|
"data": channel_,
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func AddChannel(c *gin.Context) {
|
||||||
|
channel_ := model.Channel{}
|
||||||
|
err := c.ShouldBindJSON(&channel_)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if len(channel_.Name) == 0 || len(channel_.Name) > 20 {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": "通道名称长度必须在1-20之间",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
cleanChannel := model.Channel{
|
||||||
|
Type: channel_.Type,
|
||||||
|
UserId: c.GetInt("id"),
|
||||||
|
Name: channel_.Name,
|
||||||
|
Description: channel_.Description,
|
||||||
|
Status: common.ChannelStatusEnabled,
|
||||||
|
Secret: channel_.Secret,
|
||||||
|
AppId: channel_.AppId,
|
||||||
|
AccountId: channel_.AccountId,
|
||||||
|
URL: channel_.URL,
|
||||||
|
Other: channel_.Other,
|
||||||
|
CreatedTime: common.GetTimestamp(),
|
||||||
|
}
|
||||||
|
err = cleanChannel.Insert()
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
channel.TokenStoreAddChannel(&cleanChannel)
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": true,
|
||||||
|
"message": "",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func DeleteChannel(c *gin.Context) {
|
||||||
|
id, _ := strconv.Atoi(c.Param("id"))
|
||||||
|
userId := c.GetInt("id")
|
||||||
|
channel_, err := model.DeleteChannelById(id, userId)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
channel.TokenStoreRemoveChannel(channel_)
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": true,
|
||||||
|
"message": "",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
func UpdateChannel(c *gin.Context) {
|
||||||
|
userId := c.GetInt("id")
|
||||||
|
statusOnly := c.Query("status_only")
|
||||||
|
channel_ := model.Channel{}
|
||||||
|
err := c.ShouldBindJSON(&channel_)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
oldChannel, err := model.GetChannelById(channel_.Id, userId)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
cleanChannel := oldChannel
|
||||||
|
if statusOnly != "" {
|
||||||
|
cleanChannel.Status = channel_.Status
|
||||||
|
} else {
|
||||||
|
// If you add more fields, please also update channel_.Update()
|
||||||
|
cleanChannel.Type = channel_.Type
|
||||||
|
cleanChannel.Name = channel_.Name
|
||||||
|
cleanChannel.Description = channel_.Description
|
||||||
|
cleanChannel.Secret = channel_.Secret
|
||||||
|
cleanChannel.AppId = channel_.AppId
|
||||||
|
cleanChannel.AccountId = channel_.AccountId
|
||||||
|
cleanChannel.URL = channel_.URL
|
||||||
|
cleanChannel.Other = channel_.Other
|
||||||
|
}
|
||||||
|
err = cleanChannel.Update()
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": err.Error(),
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
channel.TokenStoreUpdateChannel(cleanChannel, oldChannel)
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": true,
|
||||||
|
"message": "",
|
||||||
|
"data": cleanChannel,
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
+26
-10
@@ -2,6 +2,7 @@ package controller
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
"message-pusher/channel"
|
"message-pusher/channel"
|
||||||
@@ -65,21 +66,21 @@ func pushMessageHelper(c *gin.Context, message *model.Message) {
|
|||||||
user := model.User{Username: c.Param("username")}
|
user := model.User{Username: c.Param("username")}
|
||||||
err := user.FillUserByUsername()
|
err := user.FillUserByUsername()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.JSON(http.StatusForbidden, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
"message": err.Error(),
|
"message": err.Error(),
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if user.Status == common.UserStatusNonExisted {
|
if user.Status == common.UserStatusNonExisted {
|
||||||
c.JSON(http.StatusForbidden, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
"message": "用户不存在",
|
"message": "用户不存在",
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if user.Status == common.UserStatusDisabled {
|
if user.Status == common.UserStatusDisabled {
|
||||||
c.JSON(http.StatusForbidden, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
"message": "用户已被封禁",
|
"message": "用户已被封禁",
|
||||||
})
|
})
|
||||||
@@ -89,7 +90,7 @@ func pushMessageHelper(c *gin.Context, message *model.Message) {
|
|||||||
if message.Token == "" {
|
if message.Token == "" {
|
||||||
message.Token = c.Request.Header.Get("Authorization")
|
message.Token = c.Request.Header.Get("Authorization")
|
||||||
if message.Token == "" {
|
if message.Token == "" {
|
||||||
c.JSON(http.StatusForbidden, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
"message": "token 为空",
|
"message": "token 为空",
|
||||||
})
|
})
|
||||||
@@ -97,7 +98,7 @@ func pushMessageHelper(c *gin.Context, message *model.Message) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if user.Token != message.Token {
|
if user.Token != message.Token {
|
||||||
c.JSON(http.StatusForbidden, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
"message": "无效的 token",
|
"message": "无效的 token",
|
||||||
})
|
})
|
||||||
@@ -110,10 +111,18 @@ func pushMessageHelper(c *gin.Context, message *model.Message) {
|
|||||||
if message.Channel == "" {
|
if message.Channel == "" {
|
||||||
message.Channel = user.Channel
|
message.Channel = user.Channel
|
||||||
if message.Channel == "" {
|
if message.Channel == "" {
|
||||||
message.Channel = channel.TypeEmail
|
message.Channel = model.TypeEmail
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
err = saveAndSendMessage(&user, message)
|
channel_, err := model.GetChannelByName(message.Channel, user.Id)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": "无效的渠道的名称",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
err = saveAndSendMessage(&user, message, channel_)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.JSON(http.StatusOK, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
@@ -127,7 +136,10 @@ func pushMessageHelper(c *gin.Context, message *model.Message) {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func saveAndSendMessage(user *model.User, message *model.Message) error {
|
func saveAndSendMessage(user *model.User, message *model.Message, channel_ *model.Channel) error {
|
||||||
|
if channel_.Status != common.ChannelStatusEnabled {
|
||||||
|
return errors.New("该渠道已被禁用")
|
||||||
|
}
|
||||||
message.Link = common.GetUUID()
|
message.Link = common.GetUUID()
|
||||||
if message.URL == "" {
|
if message.URL == "" {
|
||||||
message.URL = fmt.Sprintf("%s/message/%s", common.ServerAddress, message.Link)
|
message.URL = fmt.Sprintf("%s/message/%s", common.ServerAddress, message.Link)
|
||||||
@@ -152,7 +164,7 @@ func saveAndSendMessage(user *model.User, message *model.Message) error {
|
|||||||
} else {
|
} else {
|
||||||
message.Link = "unsaved" // This is for user to identify whether the message is saved
|
message.Link = "unsaved" // This is for user to identify whether the message is saved
|
||||||
}
|
}
|
||||||
err := channel.SendMessage(message, user)
|
err := channel.SendMessage(message, user, channel_)
|
||||||
common.MessageCount += 1 // We don't need to use atomic here because it's not a critical value
|
common.MessageCount += 1 // We don't need to use atomic here because it's not a critical value
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
@@ -284,7 +296,11 @@ func ResendMessage(c *gin.Context) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
err = saveAndSendMessage(user, message)
|
channel_, err := model.GetChannelByName(message.Channel, user.Id)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
err = saveAndSendMessage(user, message, channel_)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|||||||
+6
-36
@@ -389,45 +389,15 @@ func UpdateSelf(c *gin.Context) {
|
|||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
originUser, err := model.GetUserById(c.GetInt("id"), true)
|
|
||||||
if err != nil {
|
|
||||||
c.JSON(http.StatusOK, gin.H{
|
|
||||||
"success": false,
|
|
||||||
"message": err.Error(),
|
|
||||||
})
|
|
||||||
return
|
|
||||||
}
|
|
||||||
// White list mode. For safe :)
|
// White list mode. For safe :)
|
||||||
cleanUser := model.User{
|
cleanUser := model.User{
|
||||||
Id: c.GetInt("id"),
|
Id: c.GetInt("id"),
|
||||||
Username: user.Username,
|
Username: user.Username,
|
||||||
Password: user.Password,
|
Password: user.Password,
|
||||||
DisplayName: user.DisplayName,
|
DisplayName: user.DisplayName,
|
||||||
Token: user.Token,
|
Token: user.Token,
|
||||||
Channel: user.Channel,
|
Channel: user.Channel,
|
||||||
WeChatTestAccountId: user.WeChatTestAccountId,
|
|
||||||
WeChatTestAccountSecret: user.WeChatTestAccountSecret,
|
|
||||||
WeChatTestAccountTemplateId: user.WeChatTestAccountTemplateId,
|
|
||||||
WeChatTestAccountOpenId: user.WeChatTestAccountOpenId,
|
|
||||||
WeChatTestAccountVerificationToken: user.WeChatTestAccountVerificationToken,
|
|
||||||
WeChatCorpAccountId: user.WeChatCorpAccountId,
|
|
||||||
WeChatCorpAccountAgentSecret: user.WeChatCorpAccountAgentSecret,
|
|
||||||
WeChatCorpAccountAgentId: user.WeChatCorpAccountAgentId,
|
|
||||||
WeChatCorpAccountUserId: user.WeChatCorpAccountUserId,
|
|
||||||
WeChatCorpAccountClientType: user.WeChatCorpAccountClientType,
|
|
||||||
CorpWebhookURL: user.CorpWebhookURL,
|
|
||||||
LarkWebhookURL: user.LarkWebhookURL,
|
|
||||||
LarkWebhookSecret: user.LarkWebhookSecret,
|
|
||||||
DingWebhookURL: user.DingWebhookURL,
|
|
||||||
DingWebhookSecret: user.DingWebhookSecret,
|
|
||||||
BarkServer: user.BarkServer,
|
|
||||||
BarkSecret: user.BarkSecret,
|
|
||||||
ClientSecret: user.ClientSecret,
|
|
||||||
TelegramBotToken: user.TelegramBotToken,
|
|
||||||
TelegramChatId: user.TelegramChatId,
|
|
||||||
DiscordWebhookURL: user.DiscordWebhookURL,
|
|
||||||
}
|
}
|
||||||
channel.TokenStoreUpdateUser(&cleanUser, originUser)
|
|
||||||
|
|
||||||
if user.Password == "$I_LOVE_U" {
|
if user.Password == "$I_LOVE_U" {
|
||||||
user.Password = "" // rollback to what it should be
|
user.Password = "" // rollback to what it should be
|
||||||
|
|||||||
+22
-3
@@ -27,10 +27,29 @@ func RegisterClient(c *gin.Context) {
|
|||||||
}
|
}
|
||||||
user := model.User{Username: c.Param("username")}
|
user := model.User{Username: c.Param("username")}
|
||||||
err := user.FillUserByUsername()
|
err := user.FillUserByUsername()
|
||||||
if secret != user.ClientSecret {
|
if err != nil {
|
||||||
c.JSON(http.StatusOK, gin.H{
|
c.JSON(http.StatusOK, gin.H{
|
||||||
"success": false,
|
"success": false,
|
||||||
"message": "用户名与密钥不匹配",
|
"message": "无效的用户名",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
channelName := c.Query("channel")
|
||||||
|
if channelName == "" {
|
||||||
|
channelName = "client"
|
||||||
|
}
|
||||||
|
channel_, err := model.GetChannelByName(channelName, user.Id)
|
||||||
|
if err != nil {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": "无效的通道名称",
|
||||||
|
})
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if secret != channel_.Secret {
|
||||||
|
c.JSON(http.StatusOK, gin.H{
|
||||||
|
"success": false,
|
||||||
|
"message": "通道名称与密钥不匹配",
|
||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -42,6 +61,6 @@ func RegisterClient(c *gin.Context) {
|
|||||||
})
|
})
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
channel.RegisterClient(user.Id, conn)
|
channel.RegisterClient(channelName, user.Id, conn)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,108 @@
|
|||||||
|
package model
|
||||||
|
|
||||||
|
import (
|
||||||
|
"errors"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
TypeEmail = "email"
|
||||||
|
TypeWeChatTestAccount = "test"
|
||||||
|
TypeWeChatCorpAccount = "corp_app"
|
||||||
|
TypeCorp = "corp"
|
||||||
|
TypeLark = "lark"
|
||||||
|
TypeDing = "ding"
|
||||||
|
TypeTelegram = "telegram"
|
||||||
|
TypeDiscord = "discord"
|
||||||
|
TypeBark = "bark"
|
||||||
|
TypeClient = "client"
|
||||||
|
TypeNone = "none"
|
||||||
|
)
|
||||||
|
|
||||||
|
type Channel struct {
|
||||||
|
Id int `json:"id"`
|
||||||
|
Type string `json:"type" gorm:"type:varchar(32)"`
|
||||||
|
UserId int `json:"user_id" gorm:"uniqueIndex:name_user_id"`
|
||||||
|
Name string `json:"name" gorm:"type:varchar(32);uniqueIndex:name_user_id"`
|
||||||
|
Description string `json:"description"`
|
||||||
|
Status int `json:"status" gorm:"default:1"` // enabled, disabled
|
||||||
|
Secret string `json:"secret"`
|
||||||
|
AppId string `json:"app_id"`
|
||||||
|
AccountId string `json:"account_id"`
|
||||||
|
URL string `json:"url" gorm:"column:url"`
|
||||||
|
Other string `json:"other"`
|
||||||
|
CreatedTime int64 `json:"created_time" gorm:"bigint"`
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetChannelById(id int, userId int) (*Channel, error) {
|
||||||
|
if id == 0 || userId == 0 {
|
||||||
|
return nil, errors.New("id 或 userId 为空!")
|
||||||
|
}
|
||||||
|
c := Channel{Id: id, UserId: userId}
|
||||||
|
err := DB.Where(c).First(&c).Error
|
||||||
|
return &c, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetChannelByName(name string, userId int) (*Channel, error) {
|
||||||
|
if name == "" || userId == 0 {
|
||||||
|
return nil, errors.New("name 或 userId 为空!")
|
||||||
|
}
|
||||||
|
c := Channel{Name: name, UserId: userId}
|
||||||
|
err := DB.Where(c).First(&c).Error
|
||||||
|
return &c, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetTokenStoreChannels() (channels []*Channel, err error) {
|
||||||
|
err = DB.Where("type = ? or type = ?", TypeWeChatCorpAccount, TypeWeChatTestAccount).Find(&channels).Error
|
||||||
|
return channels, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetTokenStoreChannelsByUserId(userId int) (channels []*Channel, err error) {
|
||||||
|
err = DB.Where("user_id = ?", userId).Where("type = ? or type = ?", TypeWeChatCorpAccount, TypeWeChatTestAccount).Find(&channels).Error
|
||||||
|
return channels, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func GetChannelsByUserId(userId int, startIdx int, num int) (channels []*Channel, err error) {
|
||||||
|
err = DB.Omit("secret").Where("user_id = ?", userId).Order("id desc").Limit(num).Offset(startIdx).Find(&channels).Error
|
||||||
|
return channels, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func SearchChannels(userId int, keyword string) (channels []*Channel, err error) {
|
||||||
|
err = DB.Omit("secret").Where("user_id = ?", userId).Where("id = ? or name LIKE ?", keyword, keyword+"%").Find(&channels).Error
|
||||||
|
return channels, err
|
||||||
|
}
|
||||||
|
|
||||||
|
func DeleteChannelById(id int, userId int) (c *Channel, err error) {
|
||||||
|
// Why we need userId here? In case user want to delete other's c.
|
||||||
|
if id == 0 || userId == 0 {
|
||||||
|
return nil, errors.New("id 或 userId 为空!")
|
||||||
|
}
|
||||||
|
c = &Channel{Id: id, UserId: userId}
|
||||||
|
err = DB.Where(c).First(&c).Error
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return c, c.Delete()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (channel *Channel) Insert() error {
|
||||||
|
var err error
|
||||||
|
err = DB.Create(channel).Error
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (channel *Channel) UpdateStatus(status int) error {
|
||||||
|
err := DB.Model(channel).Update("status", status).Error
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update Make sure your token's fields is completed, because this will update non-zero values
|
||||||
|
func (channel *Channel) Update() error {
|
||||||
|
var err error
|
||||||
|
err = DB.Model(channel).Select("type", "name", "description", "secret", "app_id", "account_id", "url", "other", "status").Updates(channel).Error
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
|
||||||
|
func (channel *Channel) Delete() error {
|
||||||
|
err := DB.Delete(channel).Error
|
||||||
|
return err
|
||||||
|
}
|
||||||
@@ -64,6 +64,10 @@ func InitDB() (err error) {
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
err = db.AutoMigrate(&Channel{})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
err = createRootAccountIfNeed()
|
err = createRootAccountIfNeed()
|
||||||
return err
|
return err
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
+15
-44
@@ -9,41 +9,20 @@ import (
|
|||||||
// User if you add sensitive fields, don't forget to clean them in setupLogin function.
|
// User if you add sensitive fields, don't forget to clean them in setupLogin function.
|
||||||
// Otherwise, the sensitive information will be saved on local storage in plain text!
|
// Otherwise, the sensitive information will be saved on local storage in plain text!
|
||||||
type User struct {
|
type User struct {
|
||||||
Id int `json:"id"`
|
Id int `json:"id"`
|
||||||
Username string `json:"username" gorm:"unique;index" validate:"max=12"`
|
Username string `json:"username" gorm:"unique;index" validate:"max=12"`
|
||||||
Password string `json:"password" gorm:"not null;" validate:"min=8,max=20"`
|
Password string `json:"password" gorm:"not null;" validate:"min=8,max=20"`
|
||||||
DisplayName string `json:"display_name" gorm:"index" validate:"max=20"`
|
DisplayName string `json:"display_name" gorm:"index" validate:"max=20"`
|
||||||
Role int `json:"role" gorm:"type:int;default:1"` // admin, common
|
Role int `json:"role" gorm:"type:int;default:1"` // admin, common
|
||||||
Status int `json:"status" gorm:"type:int;default:1"` // enabled, disabled
|
Status int `json:"status" gorm:"type:int;default:1"` // enabled, disabled
|
||||||
Token string `json:"token"`
|
Token string `json:"token"`
|
||||||
Email string `json:"email" gorm:"index" validate:"max=50"`
|
Email string `json:"email" gorm:"index" validate:"max=50"`
|
||||||
GitHubId string `json:"github_id" gorm:"column:github_id;index"`
|
GitHubId string `json:"github_id" gorm:"column:github_id;index"`
|
||||||
WeChatId string `json:"wechat_id" gorm:"column:wechat_id;index"`
|
WeChatId string `json:"wechat_id" gorm:"column:wechat_id;index"`
|
||||||
VerificationCode string `json:"verification_code" gorm:"-:all"` // this field is only for Email verification, don't save it to database!
|
VerificationCode string `json:"verification_code" gorm:"-:all"` // this field is only for Email verification, don't save it to database!
|
||||||
Channel string `json:"channel"`
|
Channel string `json:"channel"`
|
||||||
WeChatTestAccountId string `json:"wechat_test_account_id" gorm:"column:wechat_test_account_id"`
|
SendEmailToOthers int `json:"send_email_to_others" gorm:"type:int;default:0"`
|
||||||
WeChatTestAccountSecret string `json:"wechat_test_account_secret" gorm:"column:wechat_test_account_secret"`
|
SaveMessageToDatabase int `json:"save_message_to_database" gorm:"type:int;default:0"`
|
||||||
WeChatTestAccountTemplateId string `json:"wechat_test_account_template_id" gorm:"column:wechat_test_account_template_id"`
|
|
||||||
WeChatTestAccountOpenId string `json:"wechat_test_account_open_id" gorm:"column:wechat_test_account_open_id"`
|
|
||||||
WeChatTestAccountVerificationToken string `json:"wechat_test_account_verification_token" gorm:"column:wechat_test_account_verification_token"`
|
|
||||||
WeChatCorpAccountId string `json:"wechat_corp_account_id" gorm:"column:wechat_corp_account_id"`
|
|
||||||
WeChatCorpAccountAgentSecret string `json:"wechat_corp_account_agent_secret" gorm:"column:wechat_corp_account_agent_secret"`
|
|
||||||
WeChatCorpAccountAgentId string `json:"wechat_corp_account_agent_id" gorm:"column:wechat_corp_account_agent_id"`
|
|
||||||
WeChatCorpAccountUserId string `json:"wechat_corp_account_user_id" gorm:"column:wechat_corp_account_user_id"`
|
|
||||||
WeChatCorpAccountClientType string `json:"wechat_corp_account_client_type" gorm:"column:wechat_corp_account_client_type;default=plugin"`
|
|
||||||
CorpWebhookURL string `json:"corp_webhook_url" gorm:"corp_webhook_url"`
|
|
||||||
LarkWebhookURL string `json:"lark_webhook_url"`
|
|
||||||
LarkWebhookSecret string `json:"lark_webhook_secret"`
|
|
||||||
DingWebhookURL string `json:"ding_webhook_url"`
|
|
||||||
DingWebhookSecret string `json:"ding_webhook_secret"`
|
|
||||||
BarkServer string `json:"bark_server"`
|
|
||||||
BarkSecret string `json:"bark_secret"`
|
|
||||||
ClientSecret string `json:"client_secret"`
|
|
||||||
TelegramBotToken string `json:"telegram_bot_token"`
|
|
||||||
TelegramChatId string `json:"telegram_chat_id"`
|
|
||||||
DiscordWebhookURL string `json:"discord_webhook_url"`
|
|
||||||
SendEmailToOthers int `json:"send_email_to_others" gorm:"type:int;default:0"`
|
|
||||||
SaveMessageToDatabase int `json:"save_message_to_database" gorm:"type:int;default:0"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetMaxUserId() int {
|
func GetMaxUserId() int {
|
||||||
@@ -57,11 +36,6 @@ func GetAllUsers(startIdx int, num int) (users []*User, err error) {
|
|||||||
return users, err
|
return users, err
|
||||||
}
|
}
|
||||||
|
|
||||||
func GetAllUsersWithSecrets() (users []*User, err error) {
|
|
||||||
err = DB.Where("status = ?", common.UserStatusEnabled).Where("wechat_test_account_id != '' or wechat_corp_account_id != ''").Find(&users).Error
|
|
||||||
return users, err
|
|
||||||
}
|
|
||||||
|
|
||||||
func SearchUsers(keyword string) (users []*User, err error) {
|
func SearchUsers(keyword string) (users []*User, err error) {
|
||||||
err = DB.Select([]string{"id", "username", "display_name", "role", "status", "email"}).Where("id = ? or username LIKE ? or email LIKE ? or display_name LIKE ?", keyword, keyword+"%", keyword+"%", keyword+"%").Find(&users).Error
|
err = DB.Select([]string{"id", "username", "display_name", "role", "status", "email"}).Where("id = ? or username LIKE ? or email LIKE ? or display_name LIKE ?", keyword, keyword+"%", keyword+"%", keyword+"%").Find(&users).Error
|
||||||
return users, err
|
return users, err
|
||||||
@@ -77,10 +51,7 @@ func GetUserById(id int, selectAll bool) (*User, error) {
|
|||||||
err = DB.First(&user, "id = ?", id).Error
|
err = DB.First(&user, "id = ?", id).Error
|
||||||
} else {
|
} else {
|
||||||
err = DB.Select([]string{"id", "username", "display_name", "role", "status", "email", "wechat_id", "github_id",
|
err = DB.Select([]string{"id", "username", "display_name", "role", "status", "email", "wechat_id", "github_id",
|
||||||
"channel", "token",
|
"channel", "token", "save_message_to_database",
|
||||||
"wechat_test_account_id", "wechat_test_account_template_id", "wechat_test_account_open_id",
|
|
||||||
"wechat_corp_account_id", "wechat_corp_account_agent_id", "wechat_corp_account_user_id", "wechat_corp_account_client_type",
|
|
||||||
"bark_server", "telegram_chat_id", "save_message_to_database",
|
|
||||||
}).First(&user, "id = ?", id).Error
|
}).First(&user, "id = ?", id).Error
|
||||||
}
|
}
|
||||||
return &user, err
|
return &user, err
|
||||||
|
|||||||
@@ -64,6 +64,16 @@ func SetApiRouter(router *gin.Engine) {
|
|||||||
messageRoute.DELETE("/", middleware.RootAuth(), controller.DeleteAllMessages)
|
messageRoute.DELETE("/", middleware.RootAuth(), controller.DeleteAllMessages)
|
||||||
messageRoute.DELETE("/:id", middleware.UserAuth(), controller.DeleteMessage)
|
messageRoute.DELETE("/:id", middleware.UserAuth(), controller.DeleteMessage)
|
||||||
}
|
}
|
||||||
|
channelRoute := apiRouter.Group("/channel")
|
||||||
|
channelRoute.Use(middleware.UserAuth())
|
||||||
|
{
|
||||||
|
channelRoute.GET("/", controller.GetAllChannels)
|
||||||
|
channelRoute.GET("/search", controller.SearchChannels)
|
||||||
|
channelRoute.GET("/:id", controller.GetChannel)
|
||||||
|
channelRoute.POST("/", controller.AddChannel)
|
||||||
|
channelRoute.PUT("/", controller.UpdateChannel)
|
||||||
|
channelRoute.DELETE("/:id", controller.DeleteChannel)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
pushRouter := router.Group("/push")
|
pushRouter := router.Group("/push")
|
||||||
pushRouter.Use(middleware.GlobalAPIRateLimit())
|
pushRouter.Use(middleware.GlobalAPIRateLimit())
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ import PasswordResetConfirm from './components/PasswordResetConfirm';
|
|||||||
import { UserContext } from './context/User';
|
import { UserContext } from './context/User';
|
||||||
import { StatusContext } from './context/Status';
|
import { StatusContext } from './context/Status';
|
||||||
import Message from './pages/Message';
|
import Message from './pages/Message';
|
||||||
|
import Channel from './pages/Channel';
|
||||||
|
import EditChannel from './pages/Channel/EditChannel';
|
||||||
|
|
||||||
const Home = lazy(() => import('./pages/Home'));
|
const Home = lazy(() => import('./pages/Home'));
|
||||||
const About = lazy(() => import('./pages/About'));
|
const About = lazy(() => import('./pages/About'));
|
||||||
@@ -107,6 +109,30 @@ function App() {
|
|||||||
</Suspense>
|
</Suspense>
|
||||||
}
|
}
|
||||||
/>
|
/>
|
||||||
|
<Route
|
||||||
|
path='/channel'
|
||||||
|
element={
|
||||||
|
<PrivateRoute>
|
||||||
|
<Channel />
|
||||||
|
</PrivateRoute>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Route
|
||||||
|
path='/channel/edit/:id'
|
||||||
|
element={
|
||||||
|
<Suspense fallback={<Loading></Loading>}>
|
||||||
|
<EditChannel />
|
||||||
|
</Suspense>
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
<Route
|
||||||
|
path='/channel/add'
|
||||||
|
element={
|
||||||
|
<Suspense fallback={<Loading></Loading>}>
|
||||||
|
<EditChannel />
|
||||||
|
</Suspense>
|
||||||
|
}
|
||||||
|
/>
|
||||||
<Route
|
<Route
|
||||||
path='/message'
|
path='/message'
|
||||||
element={
|
element={
|
||||||
|
|||||||
@@ -0,0 +1,333 @@
|
|||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import { Button, Form, Label, Pagination, Table } from 'semantic-ui-react';
|
||||||
|
import { Link } from 'react-router-dom';
|
||||||
|
import { API, showError, showSuccess } from '../helpers';
|
||||||
|
|
||||||
|
import { ITEMS_PER_PAGE } from '../constants';
|
||||||
|
import { renderChannel, renderTimestamp } from '../helpers/render';
|
||||||
|
|
||||||
|
const ChannelsTable = () => {
|
||||||
|
const [channels, setChannels] = useState([]);
|
||||||
|
const [loading, setLoading] = useState(true);
|
||||||
|
const [activePage, setActivePage] = useState(1);
|
||||||
|
const [searchKeyword, setSearchKeyword] = useState('');
|
||||||
|
const [searching, setSearching] = useState(false);
|
||||||
|
const [user, setUser] = useState({ username: '', token: '' });
|
||||||
|
|
||||||
|
const loadChannels = async (startIdx) => {
|
||||||
|
const res = await API.get(`/api/channel/?p=${startIdx}`);
|
||||||
|
const { success, message, data } = res.data;
|
||||||
|
if (success) {
|
||||||
|
if (startIdx === 0) {
|
||||||
|
setChannels(data);
|
||||||
|
} else {
|
||||||
|
let newChannels = channels;
|
||||||
|
newChannels.push(...data);
|
||||||
|
setChannels(newChannels);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
setLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const onPaginationChange = (e, { activePage }) => {
|
||||||
|
(async () => {
|
||||||
|
if (activePage === Math.ceil(channels.length / ITEMS_PER_PAGE) + 1) {
|
||||||
|
// In this case we have to load more data and then append them.
|
||||||
|
await loadChannels(activePage - 1);
|
||||||
|
}
|
||||||
|
setActivePage(activePage);
|
||||||
|
})();
|
||||||
|
};
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
loadChannels(0)
|
||||||
|
.then()
|
||||||
|
.catch((reason) => {
|
||||||
|
showError(reason);
|
||||||
|
});
|
||||||
|
loadUser()
|
||||||
|
.then()
|
||||||
|
.catch((reason) => {
|
||||||
|
showError(reason);
|
||||||
|
});
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const manageChannel = async (id, action, idx) => {
|
||||||
|
let data = { id };
|
||||||
|
let res;
|
||||||
|
switch (action) {
|
||||||
|
case 'delete':
|
||||||
|
res = await API.delete(`/api/channel/${id}/`);
|
||||||
|
break;
|
||||||
|
case 'enable':
|
||||||
|
data.status = 1;
|
||||||
|
res = await API.put('/api/channel/?status_only=true', data);
|
||||||
|
break;
|
||||||
|
case 'disable':
|
||||||
|
data.status = 2;
|
||||||
|
res = await API.put('/api/channel/?status_only=true', data);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
const { success, message } = res.data;
|
||||||
|
if (success) {
|
||||||
|
showSuccess('操作成功完成!');
|
||||||
|
let channel = res.data.data;
|
||||||
|
let newChannels = [...channels];
|
||||||
|
let realIdx = (activePage - 1) * ITEMS_PER_PAGE + idx;
|
||||||
|
if (action === 'delete') {
|
||||||
|
newChannels[realIdx].deleted = true;
|
||||||
|
} else {
|
||||||
|
newChannels[realIdx].status = channel.status;
|
||||||
|
}
|
||||||
|
setChannels(newChannels);
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const renderStatus = (status) => {
|
||||||
|
switch (status) {
|
||||||
|
case 1:
|
||||||
|
return <Label basic>已启用</Label>;
|
||||||
|
case 2:
|
||||||
|
return (
|
||||||
|
<Label basic color='red'>
|
||||||
|
已禁用
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
default:
|
||||||
|
return (
|
||||||
|
<Label basic color='grey'>
|
||||||
|
未知状态
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const searchChannels = async () => {
|
||||||
|
if (searchKeyword === '') {
|
||||||
|
// if keyword is blank, load files instead.
|
||||||
|
await loadChannels(0);
|
||||||
|
setActivePage(1);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setSearching(true);
|
||||||
|
const res = await API.get(`/api/channel/search?keyword=${searchKeyword}`);
|
||||||
|
const { success, message, data } = res.data;
|
||||||
|
if (success) {
|
||||||
|
setChannels(data);
|
||||||
|
setActivePage(1);
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
setSearching(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleKeywordChange = async (e, { value }) => {
|
||||||
|
setSearchKeyword(value.trim());
|
||||||
|
};
|
||||||
|
|
||||||
|
const sortChannel = (key) => {
|
||||||
|
if (channels.length === 0) return;
|
||||||
|
setLoading(true);
|
||||||
|
let sortedChannels = [...channels];
|
||||||
|
sortedChannels.sort((a, b) => {
|
||||||
|
return ('' + a[key]).localeCompare(b[key]);
|
||||||
|
});
|
||||||
|
if (sortedChannels[0].id === channels[0].id) {
|
||||||
|
sortedChannels.reverse();
|
||||||
|
}
|
||||||
|
setChannels(sortedChannels);
|
||||||
|
setLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadUser = async () => {
|
||||||
|
let res = await API.get(`/api/user/self`);
|
||||||
|
const { success, message, data } = res.data;
|
||||||
|
if (success) {
|
||||||
|
setUser(data);
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
setLoading(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const test = async (channel) => {
|
||||||
|
let res = await API.get(
|
||||||
|
`/push/${user.username}?token=${user.token}&channel=${channel}&title=消息推送服务&description=配置成功!`
|
||||||
|
);
|
||||||
|
const { success, message } = res.data;
|
||||||
|
if (success) {
|
||||||
|
showSuccess('测试消息已发送');
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Form onSubmit={searchChannels}>
|
||||||
|
<Form.Input
|
||||||
|
icon='search'
|
||||||
|
fluid
|
||||||
|
iconPosition='left'
|
||||||
|
placeholder='搜索通道的 ID 或名称 ...'
|
||||||
|
value={searchKeyword}
|
||||||
|
loading={searching}
|
||||||
|
onChange={handleKeywordChange}
|
||||||
|
/>
|
||||||
|
</Form>
|
||||||
|
|
||||||
|
<Table basic>
|
||||||
|
<Table.Header>
|
||||||
|
<Table.Row>
|
||||||
|
<Table.HeaderCell
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
onClick={() => {
|
||||||
|
sortChannel('id');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
ID
|
||||||
|
</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
onClick={() => {
|
||||||
|
sortChannel('name');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
名称
|
||||||
|
</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
onClick={() => {
|
||||||
|
sortChannel('description');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
备注
|
||||||
|
</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
onClick={() => {
|
||||||
|
sortChannel('type');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
类型
|
||||||
|
</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
onClick={() => {
|
||||||
|
sortChannel('status');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
状态
|
||||||
|
</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell
|
||||||
|
style={{ cursor: 'pointer' }}
|
||||||
|
onClick={() => {
|
||||||
|
sortChannel('created_time');
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
创建时间
|
||||||
|
</Table.HeaderCell>
|
||||||
|
<Table.HeaderCell>操作</Table.HeaderCell>
|
||||||
|
</Table.Row>
|
||||||
|
</Table.Header>
|
||||||
|
|
||||||
|
<Table.Body>
|
||||||
|
{channels
|
||||||
|
.slice(
|
||||||
|
(activePage - 1) * ITEMS_PER_PAGE,
|
||||||
|
activePage * ITEMS_PER_PAGE
|
||||||
|
)
|
||||||
|
.map((channel, idx) => {
|
||||||
|
if (channel.deleted) return <></>;
|
||||||
|
return (
|
||||||
|
<Table.Row key={channel.id}>
|
||||||
|
<Table.Cell>{channel.id}</Table.Cell>
|
||||||
|
<Table.Cell>{channel.name}</Table.Cell>
|
||||||
|
<Table.Cell>
|
||||||
|
{channel.description ? channel.description : '无备注信息'}
|
||||||
|
</Table.Cell>
|
||||||
|
<Table.Cell>{renderChannel(channel.type)}</Table.Cell>
|
||||||
|
<Table.Cell>{renderStatus(channel.status)}</Table.Cell>
|
||||||
|
<Table.Cell>
|
||||||
|
{renderTimestamp(channel.created_time)}
|
||||||
|
</Table.Cell>
|
||||||
|
<Table.Cell>
|
||||||
|
<div>
|
||||||
|
<Button
|
||||||
|
size={'small'}
|
||||||
|
negative
|
||||||
|
onClick={() => {
|
||||||
|
manageChannel(channel.id, 'delete', idx).then();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
删除
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
size={'small'}
|
||||||
|
onClick={() => {
|
||||||
|
test(channel.name).then();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
测试
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
size={'small'}
|
||||||
|
onClick={() => {
|
||||||
|
manageChannel(
|
||||||
|
channel.id,
|
||||||
|
channel.status === 1 ? 'disable' : 'enable',
|
||||||
|
idx
|
||||||
|
).then();
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{channel.status === 1 ? '禁用' : '启用'}
|
||||||
|
</Button>
|
||||||
|
<Button
|
||||||
|
size={'small'}
|
||||||
|
as={Link}
|
||||||
|
to={'/channel/edit/' + channel.id}
|
||||||
|
>
|
||||||
|
编辑
|
||||||
|
</Button>
|
||||||
|
</div>
|
||||||
|
</Table.Cell>
|
||||||
|
</Table.Row>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</Table.Body>
|
||||||
|
|
||||||
|
<Table.Footer>
|
||||||
|
<Table.Row>
|
||||||
|
<Table.HeaderCell colSpan='7'>
|
||||||
|
<Button
|
||||||
|
size='small'
|
||||||
|
as={Link}
|
||||||
|
to='/channel/add'
|
||||||
|
loading={loading}
|
||||||
|
>
|
||||||
|
添加新的通道
|
||||||
|
</Button>
|
||||||
|
<Pagination
|
||||||
|
floated='right'
|
||||||
|
activePage={activePage}
|
||||||
|
onPageChange={onPaginationChange}
|
||||||
|
size='small'
|
||||||
|
siblingRange={1}
|
||||||
|
totalPages={
|
||||||
|
Math.ceil(channels.length / ITEMS_PER_PAGE) +
|
||||||
|
(channels.length % ITEMS_PER_PAGE === 0 ? 1 : 0)
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</Table.HeaderCell>
|
||||||
|
</Table.Row>
|
||||||
|
</Table.Footer>
|
||||||
|
</Table>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ChannelsTable;
|
||||||
@@ -18,6 +18,11 @@ const headerButtons = [
|
|||||||
to: '/message',
|
to: '/message',
|
||||||
icon: 'mail',
|
icon: 'mail',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: '通道',
|
||||||
|
to: '/channel',
|
||||||
|
icon: 'sitemap',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: '用户',
|
name: '用户',
|
||||||
to: '/user',
|
to: '/user',
|
||||||
|
|||||||
@@ -1,81 +1,16 @@
|
|||||||
import React, { useEffect, useRef, useState } from 'react';
|
import React, { useEffect, useRef, useState } from 'react';
|
||||||
import { Button, Form, Label, Modal, Pagination, Table } from 'semantic-ui-react';
|
import {
|
||||||
import { API, openPage, showError, showSuccess, showWarning, timestamp2string } from '../helpers';
|
Button,
|
||||||
|
Form,
|
||||||
|
Label,
|
||||||
|
Modal,
|
||||||
|
Pagination,
|
||||||
|
Table,
|
||||||
|
} from 'semantic-ui-react';
|
||||||
|
import { API, openPage, showError, showSuccess, showWarning } from '../helpers';
|
||||||
|
|
||||||
import { ITEMS_PER_PAGE } from '../constants';
|
import { ITEMS_PER_PAGE } from '../constants';
|
||||||
|
import { renderChannel, renderTimestamp } from '../helpers/render';
|
||||||
function renderChannel(channel) {
|
|
||||||
switch (channel) {
|
|
||||||
case 'email':
|
|
||||||
return <Label color='green'>邮件</Label>;
|
|
||||||
case 'test':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#2cbb00', color: 'white' }}>
|
|
||||||
微信测试号
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'corp_app':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#5fc9ec', color: 'white' }}>
|
|
||||||
企业微信应用号
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'corp':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#019d82', color: 'white' }}>
|
|
||||||
企业微信群机器人
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'lark':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#00d6b9', color: 'white' }}>
|
|
||||||
飞书群机器人
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'ding':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#007fff', color: 'white' }}>
|
|
||||||
钉钉群机器人
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'bark':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#ff3b30', color: 'white' }}>
|
|
||||||
Bark App
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'client':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#121212', color: 'white' }}>
|
|
||||||
WebSocket 客户端
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'telegram':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#29a9ea', color: 'white' }}>
|
|
||||||
Telegram 机器人
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'discord':
|
|
||||||
return (
|
|
||||||
<Label style={{ backgroundColor: '#404eed', color: 'white' }}>
|
|
||||||
Discord 群机器人
|
|
||||||
</Label>
|
|
||||||
);
|
|
||||||
case 'none':
|
|
||||||
return <Label>无</Label>;
|
|
||||||
default:
|
|
||||||
return <Label color='grey'>未知通道</Label>;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function renderTimestamp(timestamp) {
|
|
||||||
return (
|
|
||||||
<>
|
|
||||||
{timestamp2string(timestamp)}
|
|
||||||
</>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
function renderStatus(status) {
|
function renderStatus(status) {
|
||||||
switch (status) {
|
switch (status) {
|
||||||
@@ -119,8 +54,8 @@ const MessagesTable = () => {
|
|||||||
title: '消息标题',
|
title: '消息标题',
|
||||||
description: '消息描述',
|
description: '消息描述',
|
||||||
content: '消息内容',
|
content: '消息内容',
|
||||||
link: ''
|
link: '',
|
||||||
}); // Message to be viewed
|
}); // Message to be viewed
|
||||||
const [viewModalOpen, setViewModalOpen] = useState(false);
|
const [viewModalOpen, setViewModalOpen] = useState(false);
|
||||||
|
|
||||||
const loadMessages = async (startIdx) => {
|
const loadMessages = async (startIdx) => {
|
||||||
@@ -277,7 +212,7 @@ const MessagesTable = () => {
|
|||||||
autoRefreshSecondsRef.current = 10;
|
autoRefreshSecondsRef.current = 10;
|
||||||
} else {
|
} else {
|
||||||
autoRefreshSecondsRef.current -= 1;
|
autoRefreshSecondsRef.current -= 1;
|
||||||
setAutoRefreshSeconds(autoRefreshSeconds => autoRefreshSeconds - 1); // Important!
|
setAutoRefreshSeconds((autoRefreshSeconds) => autoRefreshSeconds - 1); // Important!
|
||||||
}
|
}
|
||||||
}, 1000);
|
}, 1000);
|
||||||
}
|
}
|
||||||
@@ -285,7 +220,6 @@ const MessagesTable = () => {
|
|||||||
return () => clearInterval(intervalId);
|
return () => clearInterval(intervalId);
|
||||||
}, [autoRefresh]);
|
}, [autoRefresh]);
|
||||||
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Form onSubmit={searchMessages}>
|
<Form onSubmit={searchMessages}>
|
||||||
@@ -405,16 +339,26 @@ const MessagesTable = () => {
|
|||||||
<Table.Footer>
|
<Table.Footer>
|
||||||
<Table.Row>
|
<Table.Row>
|
||||||
<Table.HeaderCell colSpan='6'>
|
<Table.HeaderCell colSpan='6'>
|
||||||
<Button size='small' loading={loading} onClick={() => {
|
<Button
|
||||||
refresh().then();
|
size='small'
|
||||||
}}>
|
loading={loading}
|
||||||
|
onClick={() => {
|
||||||
|
refresh().then();
|
||||||
|
}}
|
||||||
|
>
|
||||||
手动刷新
|
手动刷新
|
||||||
</Button>
|
</Button>
|
||||||
<Button size='small' loading={loading} onClick={() => {
|
<Button
|
||||||
setAutoRefresh(!autoRefresh);
|
size='small'
|
||||||
setAutoRefreshSeconds(10);
|
loading={loading}
|
||||||
}}>
|
onClick={() => {
|
||||||
{autoRefresh ? `自动刷新中(${autoRefreshSeconds} 秒后刷新)` : '自动刷新'}
|
setAutoRefresh(!autoRefresh);
|
||||||
|
setAutoRefreshSeconds(10);
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{autoRefresh
|
||||||
|
? `自动刷新中(${autoRefreshSeconds} 秒后刷新)`
|
||||||
|
: '自动刷新'}
|
||||||
</Button>
|
</Button>
|
||||||
<Pagination
|
<Pagination
|
||||||
floated='right'
|
floated='right'
|
||||||
@@ -431,28 +375,33 @@ const MessagesTable = () => {
|
|||||||
</Table.Row>
|
</Table.Row>
|
||||||
</Table.Footer>
|
</Table.Footer>
|
||||||
</Table>
|
</Table>
|
||||||
<Modal
|
<Modal size='tiny' open={viewModalOpen}>
|
||||||
size='tiny'
|
|
||||||
open={viewModalOpen}
|
|
||||||
>
|
|
||||||
<Modal.Header>{message.title ? message.title : '无标题'}</Modal.Header>
|
<Modal.Header>{message.title ? message.title : '无标题'}</Modal.Header>
|
||||||
<Modal.Content>
|
<Modal.Content>
|
||||||
{message.description ? <p className={'quote'}>{message.description}</p> : ''}
|
{message.description ? (
|
||||||
|
<p className={'quote'}>{message.description}</p>
|
||||||
|
) : (
|
||||||
|
''
|
||||||
|
)}
|
||||||
{message.content ? <p>{message.content}</p> : ''}
|
{message.content ? <p>{message.content}</p> : ''}
|
||||||
</Modal.Content>
|
</Modal.Content>
|
||||||
<Modal.Actions>
|
<Modal.Actions>
|
||||||
<Button onClick={() => {
|
<Button
|
||||||
if (message.URL) {
|
onClick={() => {
|
||||||
openPage(message.URL);
|
if (message.URL) {
|
||||||
} else {
|
openPage(message.URL);
|
||||||
openPage(`/message/${message.link}`);
|
} else {
|
||||||
}
|
openPage(`/message/${message.link}`);
|
||||||
}}>
|
}
|
||||||
|
}}
|
||||||
|
>
|
||||||
打开
|
打开
|
||||||
</Button>
|
</Button>
|
||||||
<Button onClick={() => {
|
<Button
|
||||||
setViewModalOpen(false);
|
onClick={() => {
|
||||||
}}>
|
setViewModalOpen(false);
|
||||||
|
}}
|
||||||
|
>
|
||||||
关闭
|
关闭
|
||||||
</Button>
|
</Button>
|
||||||
</Modal.Actions>
|
</Modal.Actions>
|
||||||
|
|||||||
@@ -0,0 +1,38 @@
|
|||||||
|
export const CHANNEL_OPTIONS = [
|
||||||
|
{ key: 'email', text: '邮件', value: 'email', color: '#4285f4' },
|
||||||
|
{ key: 'test', text: '微信测试号', value: 'test', color: '#2cbb00' },
|
||||||
|
{
|
||||||
|
key: 'corp_app',
|
||||||
|
text: '企业微信应用号',
|
||||||
|
value: 'corp_app',
|
||||||
|
color: '#5fc9ec',
|
||||||
|
},
|
||||||
|
{ key: 'corp', text: '企业微信群机器人', value: 'corp', color: '#019d82' },
|
||||||
|
{ key: 'lark', text: '飞书群机器人', value: 'lark', color: '#00d6b9' },
|
||||||
|
{ key: 'ding', text: '钉钉群机器人', value: 'ding', color: '#007fff' },
|
||||||
|
{ key: 'bark', text: 'Bark App', value: 'bark', color: '#ff3b30' },
|
||||||
|
{
|
||||||
|
key: 'client',
|
||||||
|
text: 'WebSocket 客户端',
|
||||||
|
value: 'client',
|
||||||
|
color: '#121212',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'telegram',
|
||||||
|
text: 'Telegram 机器人',
|
||||||
|
value: 'telegram',
|
||||||
|
color: '#29a9ea',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'discord',
|
||||||
|
text: 'Discord 群机器人',
|
||||||
|
value: 'discord',
|
||||||
|
color: '#404eed',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
key: 'none',
|
||||||
|
text: '不推送',
|
||||||
|
value: 'none',
|
||||||
|
color: '#808080',
|
||||||
|
},
|
||||||
|
];
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
export * from './toast.constants';
|
export * from './toast.constants';
|
||||||
export * from './user.constants';
|
export * from './user.constants';
|
||||||
export * from './common.constant';
|
export * from './common.constant';
|
||||||
|
export * from './channel.constants';
|
||||||
@@ -0,0 +1,32 @@
|
|||||||
|
import { Label } from 'semantic-ui-react';
|
||||||
|
import { timestamp2string } from './utils';
|
||||||
|
import React from 'react';
|
||||||
|
import { CHANNEL_OPTIONS } from '../constants';
|
||||||
|
|
||||||
|
let channelMap = undefined;
|
||||||
|
|
||||||
|
export function renderChannel(key) {
|
||||||
|
if (channelMap === undefined) {
|
||||||
|
channelMap = new Map();
|
||||||
|
CHANNEL_OPTIONS.forEach((option) => {
|
||||||
|
channelMap[option.key] = option;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
let channel = channelMap[key];
|
||||||
|
if (channel) {
|
||||||
|
return (
|
||||||
|
<Label basic style={{ backgroundColor: channel.color, color: 'white' }}>
|
||||||
|
{channel.text}
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<Label basic color='red'>
|
||||||
|
未知通道
|
||||||
|
</Label>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function renderTimestamp(timestamp) {
|
||||||
|
return <>{timestamp2string(timestamp)}</>;
|
||||||
|
}
|
||||||
@@ -0,0 +1,520 @@
|
|||||||
|
import React, { useEffect, useState } from 'react';
|
||||||
|
import { Button, Form, Header, Message, Segment } from 'semantic-ui-react';
|
||||||
|
import { useParams } from 'react-router-dom';
|
||||||
|
import { API, showError, showSuccess } from '../../helpers';
|
||||||
|
import { CHANNEL_OPTIONS } from '../../constants';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const EditChannel = () => {
|
||||||
|
const params = useParams();
|
||||||
|
const channelId = params.id;
|
||||||
|
const isEditing = channelId !== undefined;
|
||||||
|
const [loading, setLoading] = useState(isEditing);
|
||||||
|
const originInputs = {
|
||||||
|
type: 'none',
|
||||||
|
name: '',
|
||||||
|
description: '',
|
||||||
|
secret: '',
|
||||||
|
app_id: '',
|
||||||
|
account_id: '',
|
||||||
|
url: '',
|
||||||
|
other: '',
|
||||||
|
corp_id: '', // only for corp_app
|
||||||
|
agent_id: '', // only for corp_app
|
||||||
|
};
|
||||||
|
|
||||||
|
const [inputs, setInputs] = useState(originInputs);
|
||||||
|
const { type, name, description, secret, app_id, account_id, url, other } =
|
||||||
|
inputs;
|
||||||
|
|
||||||
|
const handleInputChange = (e, { name, value }) => {
|
||||||
|
setInputs((inputs) => ({ ...inputs, [name]: value }));
|
||||||
|
};
|
||||||
|
|
||||||
|
const loadChannel = async () => {
|
||||||
|
let res = await API.get(`/api/channel/${channelId}`);
|
||||||
|
const { success, message, data } = res.data;
|
||||||
|
if (success) {
|
||||||
|
if (data.type === 'corp_app') {
|
||||||
|
const [corp_id, agent_id] = data.app_id.split('|');
|
||||||
|
data.corp_id = corp_id;
|
||||||
|
data.agent_id = agent_id;
|
||||||
|
}
|
||||||
|
setInputs(data);
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
setLoading(false);
|
||||||
|
};
|
||||||
|
useEffect(() => {
|
||||||
|
if (isEditing) {
|
||||||
|
loadChannel().then();
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
const submit = async () => {
|
||||||
|
if (!name) return;
|
||||||
|
let res = undefined;
|
||||||
|
let localInputs = { ...inputs };
|
||||||
|
switch (inputs.type) {
|
||||||
|
case 'corp_app':
|
||||||
|
localInputs.app_id = `${inputs.corp_id}|${inputs.agent_id}`;
|
||||||
|
break;
|
||||||
|
case 'bark':
|
||||||
|
localInputs.url = 'https://api.day.app';
|
||||||
|
}
|
||||||
|
if (isEditing) {
|
||||||
|
res = await API.put(`/api/channel/`, {
|
||||||
|
...localInputs,
|
||||||
|
id: parseInt(channelId),
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
res = await API.post(`/api/channel`, localInputs);
|
||||||
|
}
|
||||||
|
const { success, message } = res.data;
|
||||||
|
if (success) {
|
||||||
|
if (isEditing) {
|
||||||
|
showSuccess('通道信息更新成功!');
|
||||||
|
} else {
|
||||||
|
showSuccess('通道创建成功!');
|
||||||
|
setInputs(originInputs);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
showError(message);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const getTelegramChatId = async () => {
|
||||||
|
if (inputs.telegram_bot_token === '') {
|
||||||
|
showError('请先输入 Telegram 机器人令牌!');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
let res = await axios.get(
|
||||||
|
`https://api.telegram.org/bot${inputs.secret}/getUpdates`
|
||||||
|
);
|
||||||
|
const { ok } = res.data;
|
||||||
|
if (ok) {
|
||||||
|
let result = res.data.result;
|
||||||
|
if (result.length === 0) {
|
||||||
|
showError(`请先向你的机器人发送一条任意消息!`);
|
||||||
|
} else {
|
||||||
|
let id = result[0]?.message?.chat?.id;
|
||||||
|
id = id.toString();
|
||||||
|
setInputs((inputs) => ({ ...inputs, account_id: id }));
|
||||||
|
showSuccess('会话 ID 获取成功!');
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
showError(`发生错误:${res.description}`);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const renderChannelForm = () => {
|
||||||
|
switch (type) {
|
||||||
|
case 'email':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
邮件推送方式(email)需要设置邮箱,请前往个人设置页面绑定邮箱地址,之后系统将自动为你创建邮箱推送通道。
|
||||||
|
</Message>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'test':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过微信测试号进行推送,点击前往配置:
|
||||||
|
<a
|
||||||
|
target='_blank'
|
||||||
|
href='https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index'
|
||||||
|
>
|
||||||
|
微信公众平台接口测试帐号
|
||||||
|
</a>
|
||||||
|
。
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
需要新增测试模板,模板标题推荐填写为「消息推送」,模板内容必须填写为
|
||||||
|
{' {{'}text.DATA{'}}'}。
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={3}>
|
||||||
|
<Form.Input
|
||||||
|
label='测试号 ID'
|
||||||
|
name='app_id'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.app_id}
|
||||||
|
placeholder='测试号信息 -> appID'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='测试号密钥'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='测试号信息 -> appsecret'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='测试模板 ID'
|
||||||
|
name='other'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.other}
|
||||||
|
placeholder='模板消息接口 -> 模板 ID'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group widths={3}>
|
||||||
|
<Form.Input
|
||||||
|
label='用户 Open ID'
|
||||||
|
name='account_id'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.account_id}
|
||||||
|
placeholder='扫描测试号二维码 -> 用户列表 -> 微信号'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'corp_app':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过企业微信应用号进行推送,点击前往配置:
|
||||||
|
<a
|
||||||
|
target='_blank'
|
||||||
|
href='https://work.weixin.qq.com/wework_admin/frame#apps'
|
||||||
|
>
|
||||||
|
企业微信应用管理
|
||||||
|
</a>
|
||||||
|
。
|
||||||
|
<br />
|
||||||
|
<br />
|
||||||
|
注意,企业微信要求配置可信 IP,步骤:应用管理 -> 自建 -> 创建应用
|
||||||
|
-> 应用设置页面下拉中找到「企业可信 IP」,点击配置 -> 设置可信域名
|
||||||
|
-> 在「可调用
|
||||||
|
JS-SDK、跳转小程序的可信域名」下面填写一个域名,然后点击「申请校验域名」,根据提示完成校验
|
||||||
|
-> 之后填写服务器 IP 地址(此 IP
|
||||||
|
地址是消息推送服务所部署在的服务器的 IP
|
||||||
|
地址,未必是上面校验域名中记录的 IP 地址)。
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={3}>
|
||||||
|
<Form.Input
|
||||||
|
label='企业 ID'
|
||||||
|
name='corp_id'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.corp_id}
|
||||||
|
placeholder='我的企业 -> 企业信息 -> 企业 ID'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='应用 AgentId'
|
||||||
|
name='agent_id'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.agent_id}
|
||||||
|
placeholder='应用管理 -> 自建 -> 创建应用 -> AgentId'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='应用 Secret'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='应用管理 -> 自建 -> 创建应用 -> Secret'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
<Form.Group widths={3}>
|
||||||
|
<Form.Input
|
||||||
|
label='用户账号'
|
||||||
|
name='account_id'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.account_id}
|
||||||
|
placeholder='通讯录 -> 点击姓名 -> 账号'
|
||||||
|
/>
|
||||||
|
<Form.Select
|
||||||
|
label='微信企业号客户端类型'
|
||||||
|
name='other'
|
||||||
|
options={[
|
||||||
|
{
|
||||||
|
key: 'plugin',
|
||||||
|
text: '微信中的企业微信插件',
|
||||||
|
value: 'plugin',
|
||||||
|
},
|
||||||
|
{ key: 'app', text: '企业微信 APP', value: 'app' },
|
||||||
|
]}
|
||||||
|
value={inputs.other}
|
||||||
|
onChange={handleInputChange}
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'corp':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过企业微信群机器人进行推送,配置流程:选择一个群聊 -> 设置 ->
|
||||||
|
群机器人 -> 添加 -> 新建 -> 输入名字,点击添加 -> 点击复制 Webhook
|
||||||
|
地址
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='Webhook 地址'
|
||||||
|
name='url'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.url}
|
||||||
|
placeholder='在此填写企业微信提供的 Webhook 地址'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'lark':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过飞书群机器人进行推送,飞书桌面客户端的配置流程:选择一个群聊
|
||||||
|
-> 设置 -> 群机器人 -> 添加机器人 -> 自定义机器人 -> 添加(
|
||||||
|
<strong>注意选中「签名校验」</strong>)。具体参见:
|
||||||
|
<a
|
||||||
|
target='_blank'
|
||||||
|
href='https://open.feishu.cn/document/ukTMukTMukTM/ucTM5YjL3ETO24yNxkjN'
|
||||||
|
>
|
||||||
|
飞书开放文档
|
||||||
|
</a>
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='Webhook 地址'
|
||||||
|
name='url'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.url}
|
||||||
|
placeholder='在此填写飞书提供的 Webhook 地址'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='签名校验密钥'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='在此填写飞书提供的签名校验密钥'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'ding':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过钉钉群机器人进行推送,钉钉桌面客户端的配置流程:选择一个群聊
|
||||||
|
-> 群设置 -> 智能群助手 -> 添加机器人(点击右侧齿轮图标) ->
|
||||||
|
自定义 -> 添加(
|
||||||
|
<strong>注意选中「加密」</strong>)。具体参见:
|
||||||
|
<a
|
||||||
|
target='_blank'
|
||||||
|
href='https://open.dingtalk.com/document/robots/custom-robot-access'
|
||||||
|
>
|
||||||
|
钉钉开放文档
|
||||||
|
</a>
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='Webhook 地址'
|
||||||
|
name='url'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.url}
|
||||||
|
placeholder='在此填写钉钉提供的 Webhook 地址'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='签名校验密钥'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='在此填写钉钉提供的签名校验密钥'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'bark':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过 Bark 进行推送,下载 Bark 后按提示注册设备,之后会看到一个
|
||||||
|
URL,例如 <code>https://api.day.app/wrsVSDRANDOM/Body Text</code>
|
||||||
|
,其中 <code>wrsVSDRANDOM</code> 就是你的推送 key。
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='服务器地址'
|
||||||
|
name='url'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.url}
|
||||||
|
placeholder='在此填写 Bark 服务器地址,不填则使用默认值'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='推送 key'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='在此填写 Bark 推送 key'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'client':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过 WebSocket
|
||||||
|
客户端进行推送,可以使用官方客户端实现,或者根据协议自行实现。官方客户端
|
||||||
|
<a
|
||||||
|
target='_blank'
|
||||||
|
href='https://github.com/songquanpeng/personal-assistant'
|
||||||
|
>
|
||||||
|
详见此处
|
||||||
|
</a>
|
||||||
|
。
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='客户端连接密钥'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='在此设置客户端连接密钥'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'telegram':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过 Telegram 机器人进行消息推送。首先向
|
||||||
|
<a href='https://t.me/botfather' target='_blank'>
|
||||||
|
{' '}
|
||||||
|
Bot Father{' '}
|
||||||
|
</a>
|
||||||
|
申请创建一个新的机器人,之后在下方输入获取到的令牌,然后点击你的机器人,随便发送一条消息,之后点击下方的「获取会话
|
||||||
|
ID」按钮,系统将自动为你填写会话
|
||||||
|
ID,最后点击保存按钮保存设置即可。
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='Telegram 机器人令牌'
|
||||||
|
name='secret'
|
||||||
|
type='password'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.secret}
|
||||||
|
placeholder='在此设置 Telegram 机器人令牌'
|
||||||
|
/>
|
||||||
|
<Form.Input
|
||||||
|
label='Telegram 会话 ID'
|
||||||
|
name='account_id'
|
||||||
|
type='text'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.account_id}
|
||||||
|
placeholder='在此设置 Telegram 会话 ID'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
<Button onClick={getTelegramChatId} loading={loading}>
|
||||||
|
获取会话 ID
|
||||||
|
</Button>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'discord':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
通过 Discord 群机器人进行推送,配置流程:选择一个 channel -> 设置
|
||||||
|
-> 整合 -> 创建 Webhook -> 点击复制 Webhook URL
|
||||||
|
</Message>
|
||||||
|
<Form.Group widths={2}>
|
||||||
|
<Form.Input
|
||||||
|
label='Webhook 地址'
|
||||||
|
name='url'
|
||||||
|
onChange={handleInputChange}
|
||||||
|
autoComplete='new-password'
|
||||||
|
value={inputs.url}
|
||||||
|
placeholder='在此填写 Discord 提供的 Webhook 地址'
|
||||||
|
/>
|
||||||
|
</Form.Group>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
case 'none':
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>
|
||||||
|
仅保存消息,不做推送,可以在 Web
|
||||||
|
端查看,需要用户具有消息持久化的权限。
|
||||||
|
</Message>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
default:
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Message>未知通道类型!</Message>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<Segment loading={loading}>
|
||||||
|
<Header as='h3'>{isEditing ? '更新通道配置' : '新建消息通道'}</Header>
|
||||||
|
<Form autoComplete='new-password'>
|
||||||
|
<Form.Field>
|
||||||
|
<Form.Input
|
||||||
|
label='名称'
|
||||||
|
name='name'
|
||||||
|
placeholder={
|
||||||
|
'请输入通道名称,请仅使用英文字母和下划线,该名称必须唯一'
|
||||||
|
}
|
||||||
|
onChange={handleInputChange}
|
||||||
|
value={name}
|
||||||
|
autoComplete='new-password'
|
||||||
|
required
|
||||||
|
/>
|
||||||
|
</Form.Field>
|
||||||
|
<Form.Field>
|
||||||
|
<Form.Input
|
||||||
|
label='备注'
|
||||||
|
name='description'
|
||||||
|
type={'text'}
|
||||||
|
placeholder={'请输入备注信息'}
|
||||||
|
onChange={handleInputChange}
|
||||||
|
value={description}
|
||||||
|
autoComplete='new-password'
|
||||||
|
/>
|
||||||
|
</Form.Field>
|
||||||
|
<Form.Select
|
||||||
|
label='通道类型'
|
||||||
|
name='type'
|
||||||
|
options={CHANNEL_OPTIONS}
|
||||||
|
value={type}
|
||||||
|
onChange={handleInputChange}
|
||||||
|
/>
|
||||||
|
{renderChannelForm()}
|
||||||
|
<Button disabled={type === 'email'} onClick={submit}>
|
||||||
|
提交
|
||||||
|
</Button>
|
||||||
|
</Form>
|
||||||
|
</Segment>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default EditChannel;
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { Header, Segment } from 'semantic-ui-react';
|
||||||
|
import ChannelsTable from '../../components/ChannelsTable';
|
||||||
|
|
||||||
|
const Channel = () => (
|
||||||
|
<>
|
||||||
|
<Segment>
|
||||||
|
<Header as='h3'>我的通道</Header>
|
||||||
|
<ChannelsTable />
|
||||||
|
</Segment>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
|
||||||
|
export default Channel;
|
||||||
@@ -30,38 +30,38 @@ const AddUser = () => {
|
|||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<Segment>
|
<Segment>
|
||||||
<Header as="h3">创建新用户账户</Header>
|
<Header as='h3'>创建新用户账户</Header>
|
||||||
<Form autoComplete="off">
|
<Form autoComplete='new-password'>
|
||||||
<Form.Field>
|
<Form.Field>
|
||||||
<Form.Input
|
<Form.Input
|
||||||
label="用户名"
|
label='用户名'
|
||||||
name="username"
|
name='username'
|
||||||
placeholder={'请输入用户名'}
|
placeholder={'请输入用户名'}
|
||||||
onChange={handleInputChange}
|
onChange={handleInputChange}
|
||||||
value={username}
|
value={username}
|
||||||
autoComplete="off"
|
autoComplete='new-password'
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</Form.Field>
|
</Form.Field>
|
||||||
<Form.Field>
|
<Form.Field>
|
||||||
<Form.Input
|
<Form.Input
|
||||||
label="显示名称"
|
label='显示名称'
|
||||||
name="display_name"
|
name='display_name'
|
||||||
placeholder={'请输入显示名称'}
|
placeholder={'请输入显示名称'}
|
||||||
onChange={handleInputChange}
|
onChange={handleInputChange}
|
||||||
value={display_name}
|
value={display_name}
|
||||||
autoComplete="off"
|
autoComplete='new-password'
|
||||||
/>
|
/>
|
||||||
</Form.Field>
|
</Form.Field>
|
||||||
<Form.Field>
|
<Form.Field>
|
||||||
<Form.Input
|
<Form.Input
|
||||||
label="密码"
|
label='密码'
|
||||||
name="password"
|
name='password'
|
||||||
type={'password'}
|
type={'password'}
|
||||||
placeholder={'请输入密码'}
|
placeholder={'请输入密码'}
|
||||||
onChange={handleInputChange}
|
onChange={handleInputChange}
|
||||||
value={password}
|
value={password}
|
||||||
autoComplete="off"
|
autoComplete='new-password'
|
||||||
required
|
required
|
||||||
/>
|
/>
|
||||||
</Form.Field>
|
</Form.Field>
|
||||||
|
|||||||
Reference in New Issue
Block a user