mirror of
https://github.com/eiblog/eiblog.git
synced 2026-02-08 15:52:25 +08:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
27bc610a31 | ||
|
|
b53fc91ce7 | ||
|
|
720387ecd5 | ||
|
|
88f23bd1a0 | ||
|
|
6a2d720d36 | ||
|
|
95e55ee13c | ||
|
|
ca293a4933 | ||
|
|
c82d73ca34 |
17
CHANGELOG.md
17
CHANGELOG.md
@@ -2,6 +2,23 @@
|
|||||||
|
|
||||||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
||||||
|
|
||||||
|
### [2.2.14](https://github.com/eiblog/eiblog/compare/v2.2.13...v2.2.14) (2024-10-10)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* 1. bei_an cannot update error ([b53fc91](https://github.com/eiblog/eiblog/commit/b53fc91ce7b67c3811c232ad6236898f84bc391b)), closes [#43](https://github.com/eiblog/eiblog/issues/43) [#44](https://github.com/eiblog/eiblog/issues/44)
|
||||||
|
* **serie:** update serie did not rerender ([88f23bd](https://github.com/eiblog/eiblog/commit/88f23bd1a0d6183d6de484cb79303506f0506d15))
|
||||||
|
|
||||||
|
### [2.2.13](https://github.com/eiblog/eiblog/compare/v2.2.12...v2.2.13) (2024-01-02)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* load more comments ([95e55ee](https://github.com/eiblog/eiblog/commit/95e55ee13c1af13e2bb2149ccbe60013c93e4e69))
|
||||||
|
|
||||||
|
### [2.2.12](https://github.com/eiblog/eiblog/compare/v2.2.11...v2.2.12) (2024-01-02)
|
||||||
|
|
||||||
### [2.2.11](https://github.com/eiblog/eiblog/compare/v2.2.10...v2.2.11) (2024-01-02)
|
### [2.2.11](https://github.com/eiblog/eiblog/compare/v2.2.10...v2.2.11) (2024-01-02)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
6
go.mod
6
go.mod
@@ -4,7 +4,7 @@ go 1.15
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/eiblog/blackfriday v0.0.0-20161010144836-c0ec111761ae
|
github.com/eiblog/blackfriday v0.0.0-20161010144836-c0ec111761ae
|
||||||
github.com/gin-contrib/sessions v0.0.5
|
github.com/gin-contrib/sessions v0.0.4
|
||||||
github.com/gin-gonic/gin v1.9.1
|
github.com/gin-gonic/gin v1.9.1
|
||||||
github.com/lib/pq v1.10.9
|
github.com/lib/pq v1.10.9
|
||||||
github.com/qiniu/go-sdk/v7 v7.11.0
|
github.com/qiniu/go-sdk/v7 v7.11.0
|
||||||
@@ -13,9 +13,9 @@ require (
|
|||||||
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
|
github.com/swaggo/files v0.0.0-20190704085106-630677cd5c14
|
||||||
github.com/swaggo/gin-swagger v1.3.3
|
github.com/swaggo/gin-swagger v1.3.3
|
||||||
github.com/swaggo/swag v1.7.4
|
github.com/swaggo/swag v1.7.4
|
||||||
go.mongodb.org/mongo-driver v1.11.4
|
go.mongodb.org/mongo-driver v1.5.4
|
||||||
gopkg.in/yaml.v3 v3.0.1
|
gopkg.in/yaml.v3 v3.0.1
|
||||||
gorm.io/driver/clickhouse v0.6.0
|
gorm.io/driver/clickhouse v0.4.2
|
||||||
gorm.io/driver/mysql v1.5.2
|
gorm.io/driver/mysql v1.5.2
|
||||||
gorm.io/driver/postgres v1.5.4
|
gorm.io/driver/postgres v1.5.4
|
||||||
gorm.io/driver/sqlite v1.5.4
|
gorm.io/driver/sqlite v1.5.4
|
||||||
|
|||||||
2
pkg/cache/store/rdbms.go
vendored
2
pkg/cache/store/rdbms.go
vendored
@@ -144,7 +144,7 @@ func (db *rdbms) RemoveArticle(ctx context.Context, id int) error {
|
|||||||
|
|
||||||
// CleanArticles 清理回收站文章
|
// CleanArticles 清理回收站文章
|
||||||
func (db *rdbms) CleanArticles(ctx context.Context, exp time.Time) error {
|
func (db *rdbms) CleanArticles(ctx context.Context, exp time.Time) error {
|
||||||
return db.Where("deleted_at BETWEEN ? AND ?", time.Time{}, exp).Delete(model.Article{}).Error
|
return db.Where("deleted_at > ? AND deleted_at < ?", time.Time{}, exp).Delete(model.Article{}).Error
|
||||||
}
|
}
|
||||||
|
|
||||||
// UpdateArticle 更新文章
|
// UpdateArticle 更新文章
|
||||||
|
|||||||
@@ -94,6 +94,7 @@ func handleAPIBlogger(c *gin.Context) {
|
|||||||
err := cache.Ei.UpdateBlogger(context.Background(), map[string]interface{}{
|
err := cache.Ei.UpdateBlogger(context.Background(), map[string]interface{}{
|
||||||
"blog_name": bn,
|
"blog_name": bn,
|
||||||
"b_title": bt,
|
"b_title": bt,
|
||||||
|
"bei_an": ba,
|
||||||
"sub_title": st,
|
"sub_title": st,
|
||||||
"series_say": ss,
|
"series_say": ss,
|
||||||
"archives_say": as,
|
"archives_say": as,
|
||||||
@@ -398,6 +399,7 @@ func handleAPISerieCreate(c *gin.Context) {
|
|||||||
serie.Slug = slug
|
serie.Slug = slug
|
||||||
serie.Name = name
|
serie.Name = name
|
||||||
serie.Desc = desc
|
serie.Desc = desc
|
||||||
|
cache.PagesCh <- cache.PageSeries
|
||||||
} else {
|
} else {
|
||||||
err = cache.Ei.AddSerie(&model.Serie{
|
err = cache.Ei.AddSerie(&model.Serie{
|
||||||
Slug: slug,
|
Slug: slug,
|
||||||
|
|||||||
@@ -43,10 +43,11 @@ var feedrPingFunc = func(btitle, slug string) error {
|
|||||||
|
|
||||||
// rpcPingParam ping to rpc, eg. google baidu
|
// rpcPingParam ping to rpc, eg. google baidu
|
||||||
// params:
|
// params:
|
||||||
// BlogName string `xml:"param>value>string"`
|
//
|
||||||
// HomePage string `xml:"param>value>string"`
|
// BlogName string `xml:"param>value>string"`
|
||||||
// Article string `xml:"param>value>string"`
|
// HomePage string `xml:"param>value>string"`
|
||||||
// RSS_URL string `xml:"param>value>string"`
|
// Article string `xml:"param>value>string"`
|
||||||
|
// RSS_URL string `xml:"param>value>string"`
|
||||||
type rpcPingParam struct {
|
type rpcPingParam struct {
|
||||||
XMLName xml.Name `xml:"methodCall"`
|
XMLName xml.Name `xml:"methodCall"`
|
||||||
MethodName string `xml:"methodName"`
|
MethodName string `xml:"methodName"`
|
||||||
@@ -93,7 +94,7 @@ var rpcPingFunc = func(btitle, slug string) error {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
if resp.StatusCode != 200 {
|
if resp.StatusCode != 200 {
|
||||||
logrus.Error("rpcPingFunc.failed: ", string(data))
|
logrus.Error("rpcPingFunc.failed: ", string(data), resp.StatusCode)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user