123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- // 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 model
- import (
- "path/filepath"
- "sync"
- "github.com/88250/gulu"
- "github.com/siyuan-note/filelock"
- "github.com/siyuan-note/logging"
- "github.com/siyuan-note/siyuan/kernel/conf"
- "github.com/siyuan-note/siyuan/kernel/util"
- )
- var snippetsLock = sync.Mutex{}
- func RemoveSnippet(id string) (ret *conf.Snippet, err error) {
- snippetsLock.Lock()
- defer snippetsLock.Unlock()
- snippets, err := loadSnippets()
- if nil != err {
- return
- }
- for i, s := range snippets {
- if s.ID == id {
- ret = s
- snippets = append(snippets[:i], snippets[i+1:]...)
- break
- }
- }
- err = writeSnippetsConf(snippets)
- return
- }
- func SetSnippet(id, name, typ, content string, enabled bool) (ret *conf.Snippet, err error) {
- snippetsLock.Lock()
- defer snippetsLock.Unlock()
- snippets, err := loadSnippets()
- if nil != err {
- return
- }
- isUpdate := false
- for _, s := range snippets {
- if s.ID == id {
- s.Name = name
- s.Type = typ
- s.Content = content
- s.Enabled = enabled
- ret = s
- isUpdate = true
- break
- }
- }
- if !isUpdate {
- ret = &conf.Snippet{ID: id, Name: name, Type: typ, Content: content, Enabled: enabled}
- snippets = append(snippets, ret)
- }
- err = writeSnippetsConf(snippets)
- return
- }
- func LoadSnippets() (ret []*conf.Snippet, err error) {
- snippetsLock.Lock()
- defer snippetsLock.Unlock()
- return loadSnippets()
- }
- func loadSnippets() (ret []*conf.Snippet, err error) {
- ret = []*conf.Snippet{}
- confPath := filepath.Join(util.DataDir, "snippets/conf.json")
- if !gulu.File.IsExist(confPath) {
- return
- }
- data, err := filelock.ReadFile(confPath)
- if nil != err {
- logging.LogErrorf("load js snippets failed: %s", err)
- return
- }
- if err = gulu.JSON.UnmarshalJSON(data, &ret); nil != err {
- logging.LogErrorf("unmarshal js snippets failed: %s", err)
- return
- }
- needRewrite := false
- for _, snippet := range ret {
- if "" == snippet.ID {
- snippet.ID = gulu.Rand.String(12)
- needRewrite = true
- }
- }
- if needRewrite {
- writeSnippetsConf(ret)
- }
- return
- }
- func writeSnippetsConf(snippets []*conf.Snippet) (err error) {
- data, err := gulu.JSON.MarshalIndentJSON(snippets, "", " ")
- if nil != err {
- logging.LogErrorf("marshal snippets failed: %s", err)
- return
- }
- confPath := filepath.Join(util.DataDir, "snippets/conf.json")
- err = filelock.WriteFile(confPath, data)
- return
- }
|