mirror of
https://github.com/rabbibotton/clog.git
synced 2025-12-06 10:40:45 -08:00
added buttons to content and comments when authorized, added delete
This commit is contained in:
parent
fae0485b5b
commit
b23f5bb1fc
2 changed files with 197 additions and 97 deletions
|
|
@ -148,7 +148,8 @@ if one is present and login fails."
|
||||||
(dbi:do-sql
|
(dbi:do-sql
|
||||||
sql-connection
|
sql-connection
|
||||||
(sql-insert* "content" '(:key "main"
|
(sql-insert* "content" '(:key "main"
|
||||||
:value "<h3>Welcome to CLOG</h3>"
|
:title "Welcome to CLOG"
|
||||||
|
:value "Sample data"
|
||||||
:createdate ("date()"))))
|
:createdate ("date()"))))
|
||||||
(dbi:do-sql
|
(dbi:do-sql
|
||||||
sql-connection
|
sql-connection
|
||||||
|
|
@ -192,6 +193,8 @@ optional WHERE and ORDER-BY sql."
|
||||||
(base-url "/content")
|
(base-url "/content")
|
||||||
(follow-url-page t)
|
(follow-url-page t)
|
||||||
comment-table
|
comment-table
|
||||||
|
on-content
|
||||||
|
on-comment
|
||||||
on-new
|
on-new
|
||||||
on-edit
|
on-edit
|
||||||
on-delete
|
on-delete
|
||||||
|
|
@ -201,28 +204,86 @@ optional WHERE and ORDER-BY sql."
|
||||||
"Create content for CLOG-WEB:CREATE-WEB-PAGE based on dbi TABLE
|
"Create content for CLOG-WEB:CREATE-WEB-PAGE based on dbi TABLE
|
||||||
value where key=PAGE or if FOLLOW-URL-PAGE is true PAGE is default
|
value where key=PAGE or if FOLLOW-URL-PAGE is true PAGE is default
|
||||||
page if no second on path otherwise page is the second on path (first
|
page if no second on path otherwise page is the second on path (first
|
||||||
must be base-url). If comment-table is nil no comments are shown. User
|
must be base-url). ON-CONTENT, ON-COMMENT are called with (obj value)
|
||||||
must authorize on action set by CAN-COMMENT, CAN-SHOW-COMMENTS and if
|
before display of value the return value is used. ON-NEW, ON-EDIT are
|
||||||
CAN-EDIT unless they are set to nil."
|
called with (obj value) to allow filter of value before storage, if
|
||||||
|
nil is return aborted. ON-DELETE called with (obj page comment-id) if
|
||||||
|
returns nil aborted. If comment-table is nil no comments are
|
||||||
|
shown. User must authorize on action set by CAN-COMMENT,
|
||||||
|
CAN-SHOW-COMMENTS and if CAN-EDIT unless they are set to nil. The URL
|
||||||
|
scheme as as follows:
|
||||||
|
|
||||||
|
to add content - baseurl/add
|
||||||
|
or add content - baseurl/page/add
|
||||||
|
to edit content - baseurl/page/edit
|
||||||
|
to delete content - baseurl/page/delete
|
||||||
|
to add comment - baseurl/page/comment/add
|
||||||
|
or add comment - baseurl/page/comment/comment-id/add
|
||||||
|
to delete comment - baseurl/page/comment/comment-id/delete
|
||||||
|
to edit comment - baseurl/page/comment/comment-id/edit
|
||||||
|
"
|
||||||
(lambda (obj)
|
(lambda (obj)
|
||||||
(let* ((body (connection-body obj))
|
(let* ((body (connection-body obj))
|
||||||
|
(theme (theme (get-web-site body)))
|
||||||
(prof (profile (get-web-site body)))
|
(prof (profile (get-web-site body)))
|
||||||
(roles (roles (get-web-site body)))
|
(roles (roles (get-web-site body)))
|
||||||
(url (base-url-split base-url (path-name (location body)))))
|
(url (base-url-split base-url (path-name (location body)))))
|
||||||
|
;; Set page to show content
|
||||||
(when follow-url-page
|
(when follow-url-page
|
||||||
(when (second url)
|
(when (second url)
|
||||||
(setf page (second url))))
|
(setf page (second url))))
|
||||||
(let ((content (getf (car (load-content
|
;; Perform commands on content and comments
|
||||||
sql-connection table page))
|
(cond ((equalp (third url) ;; delete content
|
||||||
:|value|)))
|
"delete")
|
||||||
|
(when (clog-auth:is-authorized-p roles can-edit)
|
||||||
|
(if on-delete
|
||||||
|
(setf on-delete (setf on-delete (funcall on-delete obj page nil)))
|
||||||
|
(setf on-delete t))
|
||||||
|
(when on-delete
|
||||||
|
(dbi:do-sql
|
||||||
|
sql-connection
|
||||||
|
(format nil "delete from ~A where key=?" table)
|
||||||
|
(list page)))))
|
||||||
|
((and (and (third url) ;; delete comment
|
||||||
|
"comment")
|
||||||
|
(equalp (fifth url)
|
||||||
|
"delete"))
|
||||||
|
(when (clog-auth:is-authorized-p roles can-edit)
|
||||||
|
(if on-delete
|
||||||
|
(setf on-delete (funcall on-delete obj page (fourth url)))
|
||||||
|
(setf on-delete t))
|
||||||
|
(when on-delete
|
||||||
|
(dbi:do-sql
|
||||||
|
sql-connection
|
||||||
|
(format nil "delete from ~A where key=?" comment-table)
|
||||||
|
(list (fourth url)))))))
|
||||||
|
(let ((content (car (load-content
|
||||||
|
sql-connection table page))))
|
||||||
(when content
|
(when content
|
||||||
(create-div body :content content)))
|
(when on-content
|
||||||
|
(setf content (funcall on-content obj content)))
|
||||||
|
(funcall theme obj :content-body
|
||||||
|
(list :content content
|
||||||
|
:base-url (format nil "~A/~A" base-url page)
|
||||||
|
:can-edit (clog-auth:is-authorized-p roles can-edit)
|
||||||
|
:can-comment (clog-auth:is-authorized-p
|
||||||
|
roles can-comment)))))
|
||||||
(when (and (clog-auth:is-authorized-p roles can-show-comments)
|
(when (and (clog-auth:is-authorized-p roles can-show-comments)
|
||||||
comment-table)
|
comment-table)
|
||||||
(let ((comments (load-content sql-connection comment-table page
|
(let ((comments (load-content sql-connection comment-table page
|
||||||
:key-col "parent"
|
:key-col "parent"
|
||||||
:order-by "createdate desc")))
|
:order-by "createdate desc")))
|
||||||
(dolist (comment comments)
|
(dolist (comment comments)
|
||||||
(create-div obj :content (getf comment :|value|)))))
|
(when on-comment
|
||||||
(create-div body :content (format nil "<br>prof = ~A<br>url = '~A'<br>roles = ~A"
|
(setf comment (funcall on-comment obj comment)))
|
||||||
prof (second url) roles)))))
|
(funcall theme obj :content-comment
|
||||||
|
(list :content comment
|
||||||
|
:base-url (format nil "~A/~A/comment/~A"
|
||||||
|
base-url
|
||||||
|
page
|
||||||
|
(getf comment :|key|))
|
||||||
|
:can-edit (and (getf prof :|username|)
|
||||||
|
(equalp (getf comment :|username|)
|
||||||
|
(getf prof :|username|)))
|
||||||
|
:can-comment (clog-auth:is-authorized-p
|
||||||
|
roles can-comment)))))))))
|
||||||
|
|
|
||||||
|
|
@ -56,12 +56,51 @@ Page properties:
|
||||||
(let* ((website (get-web-site body))
|
(let* ((website (get-web-site body))
|
||||||
(color-class (get-setting website :color-class "w3-black"))
|
(color-class (get-setting website :color-class "w3-black"))
|
||||||
(border-class (get-setting website :border-class ""))
|
(border-class (get-setting website :border-class ""))
|
||||||
|
(button-class (get-setting website :button-class
|
||||||
|
"w3-button w3-round-xlarge
|
||||||
|
w3-tiny w3-border w3-padding-small"))
|
||||||
(text-class (get-setting website :text-class ""))
|
(text-class (get-setting website :text-class ""))
|
||||||
(login-link (get-setting website :login-link "/login"))
|
(login-link (get-setting website :login-link "/login"))
|
||||||
(signup-link (get-setting website :signup-link "/signup"))
|
(signup-link (get-setting website :signup-link "/signup"))
|
||||||
(username-link (get-setting website :username-link "/logout"))
|
(username-link (get-setting website :username-link "/logout"))
|
||||||
(menu-property (get-property properties :menu "w3-black"))
|
(menu-property (get-property properties :menu "w3-black"))
|
||||||
|
(base-url (get-property properties :base-url "/"))
|
||||||
(content (get-property properties :content "")))
|
(content (get-property properties :content "")))
|
||||||
|
(cond ((or (eq page :content-body) ; data based content layout
|
||||||
|
(eq page :blog-body)) ; blog based content layout
|
||||||
|
(create-section body :h3 :content (getf content :|title|))
|
||||||
|
(create-div body :content (getf content :|value|))
|
||||||
|
(let ((panel (create-div body)))
|
||||||
|
(when (get-property properties :can-comment nil)
|
||||||
|
(create-a panel :class button-class
|
||||||
|
:content "comment"
|
||||||
|
:link (format nil "~A/add" base-url)))
|
||||||
|
(when (get-property properties :can-edit nil)
|
||||||
|
(create-a panel :class button-class
|
||||||
|
:content "edit"
|
||||||
|
:link (format nil "~A/edit" base-url))
|
||||||
|
(create-a panel :class button-class
|
||||||
|
:content "delete"
|
||||||
|
:link (format nil "~A/delete" base-url))))
|
||||||
|
(create-br body))
|
||||||
|
((or (eq page :content-comment) ; data comment layout
|
||||||
|
(eq page :blog-comment)) ; blog comment layout
|
||||||
|
(let ((comment (create-div body :content (getf content :|value|))))
|
||||||
|
(set-border comment :thin :dotted :black)
|
||||||
|
(let ((panel (create-div body)))
|
||||||
|
(when (get-property properties :can-comment nil)
|
||||||
|
(create-a panel :class button-class
|
||||||
|
:content "comment"
|
||||||
|
:link (format nil "~A/add" base-url)))
|
||||||
|
(when (get-property properties :can-edit nil)
|
||||||
|
(create-a panel :class button-class
|
||||||
|
:content "edit"
|
||||||
|
:link (format nil "~A/edit" base-url))
|
||||||
|
(create-a panel :class button-class
|
||||||
|
:content "delete"
|
||||||
|
:link (format nil "~A/delete" base-url))))))
|
||||||
|
;; Full page layout ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
(t
|
||||||
;; Setup CSS style changes
|
;; Setup CSS style changes
|
||||||
(let ((sb (create-style-block body)))
|
(let ((sb (create-style-block body)))
|
||||||
(add-style sb :element "a" '(("text-decoration" :none))))
|
(add-style sb :element "a" '(("text-decoration" :none))))
|
||||||
|
|
@ -147,4 +186,4 @@ Page properties:
|
||||||
;; SECTION: Footer
|
;; SECTION: Footer
|
||||||
(create-br body)
|
(create-br body)
|
||||||
(create-br body)
|
(create-br body)
|
||||||
(create-div body :content (format nil "~A" (footer website)))))
|
(create-div body :content (format nil "~A" (footer website)))))))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue