mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-09-22 00:20:47 +02:00
❤️ 完整开源界面和内核 https://github.com/siyuan-note/siyuan/issues/5013
This commit is contained in:
parent
e650b8100c
commit
f40ed985e1
1214 changed files with 345766 additions and 9 deletions
39
kernel/cmd/closews.go
Normal file
39
kernel/cmd/closews.go
Normal file
|
@ -0,0 +1,39 @@
|
|||
// SiYuan - Build Your Eternal Digital Garden
|
||||
// Copyright (c) 2020-present, b3log.org
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Affero General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/siyuan-note/siyuan/kernel/util"
|
||||
)
|
||||
|
||||
type closews struct {
|
||||
*BaseCmd
|
||||
}
|
||||
|
||||
func (cmd *closews) Exec() {
|
||||
id, _ := cmd.session.Get("id")
|
||||
util.ClosePushChan(id.(string))
|
||||
cmd.Push()
|
||||
}
|
||||
|
||||
func (cmd *closews) Name() string {
|
||||
return "closews"
|
||||
}
|
||||
|
||||
func (cmd *closews) IsRead() bool {
|
||||
return true
|
||||
}
|
86
kernel/cmd/cmd.go
Normal file
86
kernel/cmd/cmd.go
Normal file
|
@ -0,0 +1,86 @@
|
|||
// SiYuan - Build Your Eternal Digital Garden
|
||||
// Copyright (c) 2020-present, b3log.org
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU Affero General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// This program is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU Affero General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Affero General Public License
|
||||
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
package cmd
|
||||
|
||||
import (
|
||||
"github.com/88250/melody"
|
||||
"github.com/siyuan-note/siyuan/kernel/util"
|
||||
)
|
||||
|
||||
type Cmd interface {
|
||||
Name() string
|
||||
IsRead() bool // 非读即写
|
||||
Id() float64
|
||||
Exec()
|
||||
}
|
||||
|
||||
type BaseCmd struct {
|
||||
id float64
|
||||
param map[string]interface{}
|
||||
session *melody.Session
|
||||
PushPayload *util.Result
|
||||
}
|
||||
|
||||
func (cmd *BaseCmd) Id() float64 {
|
||||
return cmd.id
|
||||
}
|
||||
|
||||
func (cmd *BaseCmd) Push() {
|
||||
cmd.PushPayload.Callback = cmd.param["callback"]
|
||||
appId, _ := cmd.session.Get("app")
|
||||
cmd.PushPayload.AppId = appId.(string)
|
||||
sid, _ := cmd.session.Get("id")
|
||||
cmd.PushPayload.SessionId = sid.(string)
|
||||
util.PushEvent(cmd.PushPayload)
|
||||
}
|
||||
|
||||
func NewCommand(cmdStr string, cmdId float64, param map[string]interface{}, session *melody.Session) (ret Cmd) {
|
||||
baseCmd := &BaseCmd{id: cmdId, param: param, session: session}
|
||||
switch cmdStr {
|
||||
case "closews":
|
||||
ret = &closews{baseCmd}
|
||||
}
|
||||
|
||||
if nil == ret {
|
||||
return
|
||||
}
|
||||
|
||||
pushMode := util.PushModeSingleSelf
|
||||
if pushModeParam := param["pushMode"]; nil != pushModeParam {
|
||||
pushMode = util.PushMode(pushModeParam.(float64))
|
||||
}
|
||||
reloadPushMode := util.PushModeSingleSelf
|
||||
if reloadPushModeParam := param["reloadPushMode"]; nil != reloadPushModeParam {
|
||||
reloadPushMode = util.PushMode(reloadPushModeParam.(float64))
|
||||
}
|
||||
baseCmd.PushPayload = util.NewCmdResult(ret.Name(), cmdId, pushMode, reloadPushMode)
|
||||
appId, _ := baseCmd.session.Get("app")
|
||||
baseCmd.PushPayload.AppId = appId.(string)
|
||||
sid, _ := baseCmd.session.Get("id")
|
||||
baseCmd.PushPayload.SessionId = sid.(string)
|
||||
return
|
||||
}
|
||||
|
||||
func Exec(cmd Cmd) {
|
||||
go func() {
|
||||
//start := time.Now()
|
||||
defer util.Recover()
|
||||
cmd.Exec()
|
||||
//end := time.Now()
|
||||
//util.Logger.Infof("cmd [%s] exec consumed [%d]ms", cmd.Name(), end.Sub(start).Milliseconds())
|
||||
}()
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue