2023-06-24 20:39:55 +08:00
|
|
|
|
// SiYuan - Refactor your thinking
|
2022-05-26 15:18:53 +08:00
|
|
|
|
// 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 bazaar
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"os"
|
2022-09-01 21:33:24 +08:00
|
|
|
|
"path/filepath"
|
2022-05-26 15:18:53 +08:00
|
|
|
|
"sort"
|
|
|
|
|
|
"strings"
|
|
|
|
|
|
|
2024-04-24 19:51:15 +08:00
|
|
|
|
"github.com/88250/go-humanize"
|
2022-07-17 12:22:32 +08:00
|
|
|
|
"github.com/siyuan-note/logging"
|
2022-05-26 15:18:53 +08:00
|
|
|
|
"github.com/siyuan-note/siyuan/kernel/util"
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
type Widget struct {
|
2023-05-05 23:07:06 +08:00
|
|
|
|
*Package
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-03 10:07:16 +08:00
|
|
|
|
// Widgets 返回集市挂件列表
|
2022-07-09 11:22:51 +08:00
|
|
|
|
func Widgets() (widgets []*Widget) {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
widgets = []*Widget{}
|
2026-02-03 10:07:16 +08:00
|
|
|
|
result := getStageAndBazaar("widgets")
|
2022-05-26 15:18:53 +08:00
|
|
|
|
|
2026-02-03 10:07:16 +08:00
|
|
|
|
if !result.Online {
|
2024-08-11 10:01:02 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-02-03 10:07:16 +08:00
|
|
|
|
if result.StageErr != nil {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2026-02-03 10:07:16 +08:00
|
|
|
|
if 1 > len(result.BazaarIndex) {
|
2025-03-08 11:51:35 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
2022-05-26 15:18:53 +08:00
|
|
|
|
|
2026-02-03 10:07:16 +08:00
|
|
|
|
for _, repo := range result.StageIndex.Repos {
|
|
|
|
|
|
if nil == repo.Package {
|
|
|
|
|
|
continue
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
2026-02-03 10:07:16 +08:00
|
|
|
|
widget := buildWidgetFromStageRepo(repo, result.BazaarIndex)
|
|
|
|
|
|
if nil != widget {
|
|
|
|
|
|
widgets = append(widgets, widget)
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sort.Slice(widgets, func(i, j int) bool { return widgets[i].Updated > widgets[j].Updated })
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-03 10:07:16 +08:00
|
|
|
|
// buildWidgetFromStageRepo 使用 stage 内嵌的 package 构建 *Widget,不发起 HTTP 请求。
|
|
|
|
|
|
func buildWidgetFromStageRepo(repo *StageRepo, bazaarIndex map[string]*bazaarPackage) *Widget {
|
|
|
|
|
|
pkg := *repo.Package
|
|
|
|
|
|
pkg.URL = strings.TrimSuffix(pkg.URL, "/")
|
|
|
|
|
|
repoURLHash := strings.Split(repo.URL, "@")
|
|
|
|
|
|
if 2 != len(repoURLHash) {
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
pkg.RepoURL = "https://github.com/" + repoURLHash[0]
|
|
|
|
|
|
pkg.RepoHash = repoURLHash[1]
|
|
|
|
|
|
pkg.PreviewURL = util.BazaarOSSServer + "/package/" + repo.URL + "/preview.png?imageslim"
|
|
|
|
|
|
pkg.PreviewURLThumb = util.BazaarOSSServer + "/package/" + repo.URL + "/preview.png?imageView2/2/w/436/h/232"
|
|
|
|
|
|
pkg.IconURL = util.BazaarOSSServer + "/package/" + repo.URL + "/icon.png"
|
|
|
|
|
|
pkg.Updated = repo.Updated
|
|
|
|
|
|
pkg.Stars = repo.Stars
|
|
|
|
|
|
pkg.OpenIssues = repo.OpenIssues
|
|
|
|
|
|
pkg.Size = repo.Size
|
|
|
|
|
|
pkg.HSize = humanize.BytesCustomCeil(uint64(pkg.Size), 2)
|
|
|
|
|
|
pkg.InstallSize = repo.InstallSize
|
|
|
|
|
|
pkg.HInstallSize = humanize.BytesCustomCeil(uint64(pkg.InstallSize), 2)
|
|
|
|
|
|
pkg.HUpdated = formatUpdated(pkg.Updated)
|
|
|
|
|
|
pkg.PreferredFunding = getPreferredFunding(pkg.Funding)
|
|
|
|
|
|
pkg.PreferredName = GetPreferredName(&pkg)
|
|
|
|
|
|
pkg.PreferredDesc = getPreferredDesc(pkg.Description)
|
|
|
|
|
|
pkg.DisallowInstall = disallowInstallBazaarPackage(&pkg)
|
|
|
|
|
|
pkg.DisallowUpdate = disallowInstallBazaarPackage(&pkg)
|
|
|
|
|
|
pkg.UpdateRequiredMinAppVer = pkg.MinAppVersion
|
|
|
|
|
|
if bp := bazaarIndex[repoURLHash[0]]; nil != bp {
|
|
|
|
|
|
pkg.Downloads = bp.Downloads
|
|
|
|
|
|
}
|
|
|
|
|
|
packageInstallSizeCache.SetDefault(pkg.RepoURL, pkg.InstallSize)
|
|
|
|
|
|
return &Widget{Package: &pkg}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-01 21:48:50 +08:00
|
|
|
|
func InstalledWidgets() (ret []*Widget) {
|
|
|
|
|
|
ret = []*Widget{}
|
2023-05-05 09:46:17 +08:00
|
|
|
|
|
|
|
|
|
|
widgetsPath := filepath.Join(util.DataDir, "widgets")
|
2023-05-16 10:34:38 +08:00
|
|
|
|
if !util.IsPathRegularDirOrSymlinkDir(widgetsPath) {
|
2023-05-05 09:46:17 +08:00
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
widgetDirs, err := os.ReadDir(widgetsPath)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-09-01 21:33:24 +08:00
|
|
|
|
logging.LogWarnf("read widgets folder failed: %s", err)
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bazaarWidgets := Widgets()
|
|
|
|
|
|
|
|
|
|
|
|
for _, widgetDir := range widgetDirs {
|
2023-05-16 10:34:38 +08:00
|
|
|
|
if !util.IsDirRegularOrSymlink(widgetDir) {
|
2022-09-01 21:33:24 +08:00
|
|
|
|
continue
|
|
|
|
|
|
}
|
|
|
|
|
|
dirName := widgetDir.Name()
|
|
|
|
|
|
|
2023-05-05 23:07:06 +08:00
|
|
|
|
widget, parseErr := WidgetJSON(dirName)
|
|
|
|
|
|
if nil != parseErr || nil == widget {
|
2022-09-01 21:33:24 +08:00
|
|
|
|
continue
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2026-02-01 16:44:15 +08:00
|
|
|
|
widget.RepoURL = widget.URL
|
2025-12-27 12:41:03 +08:00
|
|
|
|
widget.DisallowInstall = disallowInstallBazaarPackage(widget.Package)
|
2025-12-30 17:27:23 +08:00
|
|
|
|
if bazaarPkg := getBazaarWidget(widget.Name, bazaarWidgets); nil != bazaarPkg {
|
|
|
|
|
|
widget.DisallowUpdate = disallowInstallBazaarPackage(bazaarPkg.Package)
|
|
|
|
|
|
widget.UpdateRequiredMinAppVer = bazaarPkg.MinAppVersion
|
2026-02-01 16:44:15 +08:00
|
|
|
|
widget.RepoURL = bazaarPkg.RepoURL
|
2025-12-30 17:27:23 +08:00
|
|
|
|
}
|
2022-09-03 23:54:26 +08:00
|
|
|
|
|
2025-12-27 12:41:03 +08:00
|
|
|
|
installPath := filepath.Join(util.DataDir, "widgets", dirName)
|
2022-09-01 22:32:43 +08:00
|
|
|
|
widget.Installed = true
|
2022-09-01 21:48:50 +08:00
|
|
|
|
widget.PreviewURL = "/widgets/" + dirName + "/preview.png"
|
|
|
|
|
|
widget.PreviewURLThumb = "/widgets/" + dirName + "/preview.png"
|
2023-05-05 15:46:09 +08:00
|
|
|
|
widget.IconURL = "/widgets/" + dirName + "/icon.png"
|
2023-05-05 22:00:51 +08:00
|
|
|
|
widget.PreferredFunding = getPreferredFunding(widget.Funding)
|
2024-04-07 10:03:31 +08:00
|
|
|
|
widget.PreferredName = GetPreferredName(widget.Package)
|
2023-05-05 22:16:26 +08:00
|
|
|
|
widget.PreferredDesc = getPreferredDesc(widget.Description)
|
2025-12-10 11:26:54 +08:00
|
|
|
|
info, statErr := os.Stat(filepath.Join(installPath, "widget.json"))
|
2022-09-04 00:06:45 +08:00
|
|
|
|
if nil != statErr {
|
2025-12-10 11:26:54 +08:00
|
|
|
|
logging.LogWarnf("stat install widget.json failed: %s", statErr)
|
2022-09-04 00:06:45 +08:00
|
|
|
|
continue
|
|
|
|
|
|
}
|
|
|
|
|
|
widget.HInstallDate = info.ModTime().Format("2006-01-02")
|
2024-04-28 22:48:05 +08:00
|
|
|
|
if installSize, ok := packageInstallSizeCache.Get(widget.RepoURL); ok {
|
|
|
|
|
|
widget.InstallSize = installSize.(int64)
|
|
|
|
|
|
} else {
|
|
|
|
|
|
is, _ := util.SizeOfDirectory(installPath)
|
|
|
|
|
|
widget.InstallSize = is
|
|
|
|
|
|
packageInstallSizeCache.SetDefault(widget.RepoURL, is)
|
|
|
|
|
|
}
|
|
|
|
|
|
widget.HInstallSize = humanize.BytesCustomCeil(uint64(widget.InstallSize), 2)
|
2025-12-10 11:26:54 +08:00
|
|
|
|
widget.PreferredReadme = loadInstalledReadme(installPath, "/widgets/"+dirName+"/", widget.Readme)
|
2022-09-02 11:03:10 +08:00
|
|
|
|
widget.Outdated = isOutdatedWidget(widget, bazaarWidgets)
|
2022-09-01 21:48:50 +08:00
|
|
|
|
ret = append(ret, widget)
|
2022-09-01 21:33:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2025-12-30 17:45:45 +08:00
|
|
|
|
func getBazaarWidget(name string, widgets []*Widget) *Widget {
|
|
|
|
|
|
for _, p := range widgets {
|
2025-12-30 17:27:23 +08:00
|
|
|
|
if p.Name == name {
|
|
|
|
|
|
return p
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
return nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2022-09-01 11:53:07 +08:00
|
|
|
|
func InstallWidget(repoURL, repoHash, installPath string, systemID string) error {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
repoURLHash := repoURL + "@" + repoHash
|
2022-09-01 11:53:07 +08:00
|
|
|
|
data, err := downloadPackage(repoURLHash, true, systemID)
|
2024-09-04 04:40:50 +03:00
|
|
|
|
if err != nil {
|
2022-05-26 15:18:53 +08:00
|
|
|
|
return err
|
|
|
|
|
|
}
|
2024-04-14 23:52:09 +08:00
|
|
|
|
return installPackage(data, installPath, repoURLHash)
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func UninstallWidget(installPath string) error {
|
2024-04-14 23:52:09 +08:00
|
|
|
|
return uninstallPackage(installPath)
|
2022-05-26 15:18:53 +08:00
|
|
|
|
}
|