222 lines
6.5 KiB
Go
222 lines
6.5 KiB
Go
// 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 (
|
|
"errors"
|
|
"fmt"
|
|
"path/filepath"
|
|
|
|
"github.com/88250/gulu"
|
|
"github.com/siyuan-note/siyuan/kernel/util"
|
|
|
|
"github.com/siyuan-note/siyuan/kernel/bazaar"
|
|
)
|
|
|
|
func GetPackageREADME(repoURL, repoHash string) (ret string) {
|
|
ret = bazaar.GetPackageREADME(repoURL, repoHash, Conf.System.NetworkProxy.String(), IsSubscriber(), Conf.System.ID)
|
|
return
|
|
}
|
|
|
|
func BazaarWidgets() (widgets []*bazaar.Widget) {
|
|
widgets = bazaar.Widgets(Conf.System.NetworkProxy.String())
|
|
for _, widget := range widgets {
|
|
widget.Installed = gulu.File.IsDir(filepath.Join(util.DataDir, "widgets", widget.Name))
|
|
if widget.Installed {
|
|
if widget.Installed {
|
|
if widgetConf, err := widgetJSON(widget.Name); nil == err && nil != widget {
|
|
if widget.Version != widgetConf["version"].(string) {
|
|
widget.Outdated = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func InstallBazaarWidget(repoURL, repoHash, widgetName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
installPath := filepath.Join(util.DataDir, "widgets", widgetName)
|
|
err := bazaar.InstallWidget(repoURL, repoHash, installPath, Conf.System.NetworkProxy.String(), IsSubscriber(), Conf.System.ID)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(46), widgetName))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func UninstallBazaarWidget(widgetName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
installPath := filepath.Join(util.DataDir, "widgets", widgetName)
|
|
err := bazaar.UninstallWidget(installPath)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(47), err.Error()))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func BazaarIcons() (icons []*bazaar.Icon) {
|
|
icons = bazaar.Icons(Conf.System.NetworkProxy.String())
|
|
for _, installed := range Conf.Appearance.Icons {
|
|
for _, icon := range icons {
|
|
if installed == icon.Name {
|
|
icon.Installed = true
|
|
if themeConf, err := iconJSON(icon.Name); nil == err {
|
|
if icon.Version != themeConf["version"].(string) {
|
|
icon.Outdated = true
|
|
}
|
|
}
|
|
}
|
|
icon.Current = icon.Name == Conf.Appearance.Icon
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func InstallBazaarIcon(repoURL, repoHash, iconName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
installPath := filepath.Join(util.IconsPath, iconName)
|
|
err := bazaar.InstallIcon(repoURL, repoHash, installPath, Conf.System.NetworkProxy.String(), IsSubscriber(), Conf.System.ID)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(46), iconName))
|
|
}
|
|
Conf.Appearance.Icon = iconName
|
|
Conf.Save()
|
|
InitAppearance()
|
|
return nil
|
|
}
|
|
|
|
func UninstallBazaarIcon(iconName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
installPath := filepath.Join(util.IconsPath, iconName)
|
|
err := bazaar.UninstallIcon(installPath)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(47), err.Error()))
|
|
}
|
|
|
|
InitAppearance()
|
|
return nil
|
|
}
|
|
|
|
func BazaarThemes() (ret []*bazaar.Theme) {
|
|
ret = bazaar.Themes(Conf.System.NetworkProxy.String())
|
|
installs := Conf.Appearance.DarkThemes
|
|
installs = append(installs, Conf.Appearance.LightThemes...)
|
|
for _, installed := range installs {
|
|
for _, theme := range ret {
|
|
if installed == theme.Name {
|
|
theme.Installed = true
|
|
if themeConf, err := themeJSON(theme.Name); nil == err {
|
|
theme.Outdated = theme.Version != themeConf["version"].(string)
|
|
}
|
|
theme.Current = theme.Name == Conf.Appearance.ThemeDark || theme.Name == Conf.Appearance.ThemeLight
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func InstallBazaarTheme(repoURL, repoHash, themeName string, mode int, update bool) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
closeThemeWatchers()
|
|
|
|
installPath := filepath.Join(util.ThemesPath, themeName)
|
|
err := bazaar.InstallTheme(repoURL, repoHash, installPath, Conf.System.NetworkProxy.String(), IsSubscriber(), Conf.System.ID)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(46), themeName))
|
|
}
|
|
|
|
if !update {
|
|
// 更新主题后不需要对该主题进行切换 https://github.com/siyuan-note/siyuan/issues/4966
|
|
if 0 == mode {
|
|
Conf.Appearance.ThemeLight = themeName
|
|
} else {
|
|
Conf.Appearance.ThemeDark = themeName
|
|
}
|
|
Conf.Appearance.Mode = mode
|
|
Conf.Appearance.ThemeJS = gulu.File.IsExist(filepath.Join(installPath, "theme.js"))
|
|
Conf.Save()
|
|
}
|
|
|
|
InitAppearance()
|
|
return nil
|
|
}
|
|
|
|
func UninstallBazaarTheme(themeName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
closeThemeWatchers()
|
|
|
|
installPath := filepath.Join(util.ThemesPath, themeName)
|
|
err := bazaar.UninstallTheme(installPath)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(47), err.Error()))
|
|
}
|
|
|
|
InitAppearance()
|
|
return nil
|
|
}
|
|
|
|
func BazaarTemplates() (templates []*bazaar.Template) {
|
|
templates = bazaar.Templates(Conf.System.NetworkProxy.String())
|
|
for _, template := range templates {
|
|
template.Installed = gulu.File.IsExist(filepath.Join(util.DataDir, "templates", template.Name))
|
|
if template.Installed {
|
|
if themeConf, err := templateJSON(template.Name); nil == err && nil != themeConf {
|
|
if template.Version != themeConf["version"].(string) {
|
|
template.Outdated = true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func InstallBazaarTemplate(repoURL, repoHash, templateName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
installPath := filepath.Join(util.DataDir, "templates", templateName)
|
|
err := bazaar.InstallTemplate(repoURL, repoHash, installPath, Conf.System.NetworkProxy.String(), IsSubscriber(), Conf.System.ID)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(46), templateName))
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func UninstallBazaarTemplate(templateName string) error {
|
|
writingDataLock.Lock()
|
|
defer writingDataLock.Unlock()
|
|
|
|
installPath := filepath.Join(util.DataDir, "templates", templateName)
|
|
err := bazaar.UninstallTemplate(installPath)
|
|
if nil != err {
|
|
return errors.New(fmt.Sprintf(Conf.Language(47), err.Error()))
|
|
}
|
|
return nil
|
|
}
|