mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-04-05 14:43:47 +08:00
bugfix:1. 修复加密文章访问,非作者和管理员不能访问的问题。还有密码修改文案。 resolves mindoc-org/mindoc#849 (#867)
This commit is contained in:
parent
c8f7a2a544
commit
452577ca3d
@ -315,7 +315,7 @@ prev = prev
|
|||||||
next = next
|
next = next
|
||||||
no = no
|
no = no
|
||||||
edit_title = Edit Blog
|
edit_title = Edit Blog
|
||||||
private_blog_tips = Private blog is accessible only to author and administrator
|
private_blog_tips = Private blog, please enter password to access
|
||||||
|
|
||||||
[doc]
|
[doc]
|
||||||
modify_doc = Modify Document
|
modify_doc = Modify Document
|
||||||
|
@ -315,7 +315,7 @@ prev = 上一篇
|
|||||||
next = 下一篇
|
next = 下一篇
|
||||||
no = 无
|
no = 无
|
||||||
edit_title = 编辑文章
|
edit_title = 编辑文章
|
||||||
private_blog_tips = 加密文章,仅作者和管理员可访问
|
private_blog_tips = 加密文章,请输入密码访问
|
||||||
|
|
||||||
[doc]
|
[doc]
|
||||||
modify_doc = 修改文档
|
modify_doc = 修改文档
|
||||||
|
@ -56,23 +56,14 @@ func (c *BlogController) Index() {
|
|||||||
if blog.BlogStatus == "password" && password != blog.Password {
|
if blog.BlogStatus == "password" && password != blog.Password {
|
||||||
c.JsonResult(6001, i18n.Tr(c.Lang, "message.blog_pwd_incorrect"))
|
c.JsonResult(6001, i18n.Tr(c.Lang, "message.blog_pwd_incorrect"))
|
||||||
} else if blog.BlogStatus == "password" && password == blog.Password {
|
} else if blog.BlogStatus == "password" && password == blog.Password {
|
||||||
// If the password is correct, then determine whether the user is correct
|
// Store the session value for the next GET request.
|
||||||
if c.Member != nil && (blog.MemberId == c.Member.MemberId || c.Member.IsAdministrator()) {
|
_ = c.CruSession.Set(context.TODO(), blogReadSession, blogId)
|
||||||
/* Private blog is accessible only to author and administrator.
|
c.JsonResult(0, "OK")
|
||||||
Anonymous users are not allowed access. */
|
|
||||||
// Store the session value
|
|
||||||
_ = c.CruSession.Set(context.TODO(), blogReadSession, blogId)
|
|
||||||
c.JsonResult(0, "OK")
|
|
||||||
} else {
|
|
||||||
c.JsonResult(6002, i18n.Tr(c.Lang, "blog.private_blog_tips"))
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
c.JsonResult(0, "OK")
|
c.JsonResult(0, "OK")
|
||||||
}
|
}
|
||||||
} else if blog.BlogStatus == "password" &&
|
} else if blog.BlogStatus == "password" && c.CruSession.Get(context.TODO(), blogReadSession) == nil && // Read session doesn't exist
|
||||||
(c.CruSession.Get(context.TODO(), blogReadSession) == nil || // Read session doesn't exist
|
(c.Member == nil || (blog.MemberId != c.Member.MemberId && !c.Member.IsAdministrator())) { // User isn't author or administrator
|
||||||
c.Member == nil || // Anonymous, Not Allow
|
|
||||||
(blog.MemberId != c.Member.MemberId && !c.Member.IsAdministrator())) { // User isn't author or administrator
|
|
||||||
//如果不存在已输入密码的标记
|
//如果不存在已输入密码的标记
|
||||||
c.TplName = "blog/index_password.tpl"
|
c.TplName = "blog/index_password.tpl"
|
||||||
}
|
}
|
||||||
|
@ -54,7 +54,7 @@
|
|||||||
<span id="form-error-message" class="error-message"></span>
|
<span id="form-error-message" class="error-message"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<button type="submit" class="btn btn-success" data-loading-text="{{i18n .Lang "message.processing"}}">{{i18n .Lang "message.save"}}</button>
|
<button type="submit" class="btn btn-success" data-loading-text="{{i18n .Lang "message.processing"}}">{{i18n .Lang "common.save"}}</button>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user