Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
9578989b
Commit
9578989b
authored
Jan 02, 2017
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added access check for write and manage actions
parent
4625a302
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
94 additions
and
33 deletions
+94
-33
README.md
README.md
+2
-2
admin.js
controllers/admin.js
+25
-0
pages.js
controllers/pages.js
+30
-1
server.js
server.js
+1
-0
_layout.pug
views/pages/admin/_layout.pug
+9
-8
source.pug
views/pages/source.pug
+11
-9
view.pug
views/pages/view.pug
+16
-13
No files found.
README.md
View file @
9578989b
...
...
@@ -32,7 +32,7 @@
-
[
x
]
Facebook
-
[
x
]
Access Rights
-
[
x
]
View
-
[
]
Edit / Create
-
[
x
]
Edit / Create
-
[
x
]
Background Agent (git sync, cache purge, etc.)
-
[
x
]
Caching
-
[
x
]
Create Entry
...
...
@@ -40,7 +40,7 @@
-
[
x
]
Prerequisites
-
[
x
]
Install
-
[
]
Authentication
-
[
]
Git
-
[
x
]
Git
-
[
x
]
Upgrade
-
[
x
]
Edit Entry
-
[
x
]
Git Management
...
...
controllers/admin.js
View file @
9578989b
...
...
@@ -12,10 +12,21 @@ router.get('/', (req, res) => {
});
router
.
get
(
'/profile'
,
(
req
,
res
)
=>
{
if
(
res
.
locals
.
isGuest
)
{
return
res
.
render
(
'error-forbidden'
);
}
res
.
render
(
'pages/admin/profile'
,
{
adminTab
:
'profile'
});
});
router
.
get
(
'/stats'
,
(
req
,
res
)
=>
{
if
(
res
.
locals
.
isGuest
)
{
return
res
.
render
(
'error-forbidden'
);
}
Promise
.
all
([
db
.
Entry
.
count
(),
db
.
UplFile
.
count
(),
...
...
@@ -28,14 +39,27 @@ router.get('/stats', (req, res) => {
}).
catch
((
err
)
=>
{
throw
err
;
});
});
router
.
get
(
'/users'
,
(
req
,
res
)
=>
{
if
(
!
res
.
locals
.
rights
.
manage
)
{
return
res
.
render
(
'error-forbidden'
);
}
res
.
render
(
'pages/admin/users'
,
{
adminTab
:
'users'
});
});
router
.
get
(
'/settings'
,
(
req
,
res
)
=>
{
if
(
!
res
.
locals
.
rights
.
manage
)
{
return
res
.
render
(
'error-forbidden'
);
}
res
.
render
(
'pages/admin/settings'
,
{
adminTab
:
'settings'
});
});
module
.
exports
=
router
;
\ No newline at end of file
controllers/pages.js
View file @
9578989b
...
...
@@ -13,6 +13,10 @@ var _ = require('lodash');
*/
router
.
get
(
'/edit/*'
,
(
req
,
res
,
next
)
=>
{
if
(
!
res
.
locals
.
rights
.
write
)
{
return
res
.
render
(
'error-forbidden'
);
}
let
safePath
=
entries
.
parsePath
(
_
.
replace
(
req
.
path
,
'/edit'
,
''
));
entries
.
fetchOriginal
(
safePath
,
{
...
...
@@ -40,6 +44,13 @@ router.get('/edit/*', (req, res, next) => {
router
.
put
(
'/edit/*'
,
(
req
,
res
,
next
)
=>
{
if
(
!
res
.
locals
.
rights
.
write
)
{
return
res
.
json
({
ok
:
false
,
error
:
'Forbidden'
});
}
let
safePath
=
entries
.
parsePath
(
_
.
replace
(
req
.
path
,
'/edit'
,
''
));
entries
.
update
(
safePath
,
req
.
body
.
markdown
).
then
(()
=>
{
...
...
@@ -61,6 +72,10 @@ router.put('/edit/*', (req, res, next) => {
router
.
get
(
'/create/*'
,
(
req
,
res
,
next
)
=>
{
if
(
!
res
.
locals
.
rights
.
write
)
{
return
res
.
render
(
'error-forbidden'
);
}
if
(
_
.
some
([
'create'
,
'edit'
,
'account'
,
'source'
,
'history'
,
'mk'
],
(
e
)
=>
{
return
_
.
startsWith
(
req
.
path
,
'/create/'
+
e
);
}))
{
return
res
.
render
(
'error'
,
{
message
:
'You cannot create a document with this name as it is reserved by the system.'
,
...
...
@@ -102,6 +117,13 @@ router.get('/create/*', (req, res, next) => {
router
.
put
(
'/create/*'
,
(
req
,
res
,
next
)
=>
{
if
(
!
res
.
locals
.
rights
.
write
)
{
return
res
.
json
({
ok
:
false
,
error
:
'Forbidden'
});
}
let
safePath
=
entries
.
parsePath
(
_
.
replace
(
req
.
path
,
'/create'
,
''
));
entries
.
create
(
safePath
,
req
.
body
.
markdown
).
then
(()
=>
{
...
...
@@ -109,7 +131,7 @@ router.put('/create/*', (req, res, next) => {
ok
:
true
})
||
true
;
}).
catch
((
err
)
=>
{
res
.
json
({
re
turn
re
s
.
json
({
ok
:
false
,
error
:
err
.
message
});
...
...
@@ -192,6 +214,13 @@ router.get('/*', (req, res, next) => {
*/
router
.
put
(
'/*'
,
(
req
,
res
,
next
)
=>
{
if
(
!
res
.
locals
.
rights
.
write
)
{
return
res
.
json
({
ok
:
false
,
error
:
'Forbidden'
});
}
let
safePath
=
entries
.
parsePath
(
req
.
path
);
if
(
_
.
isEmpty
(
req
.
body
.
move
))
{
...
...
server.js
View file @
9578989b
...
...
@@ -89,6 +89,7 @@ app.use(express.static(path.join(ROOTPATH, 'assets')));
var
strategy
=
require
(
CORE_PATH
+
'core-libs/auth'
)(
passport
,
appconfig
);
global
.
rights
=
require
(
CORE_PATH
+
'core-libs/rights'
);
rights
.
init
();
var
sessionStore
=
new
sessionMongoStore
({
mongooseConnection
:
db
.
connection
,
...
...
views/pages/admin/_layout.pug
View file @
9578989b
...
...
@@ -41,14 +41,15 @@ block content
a(href='/admin/stats')
i.icon-bar-graph-2
span Stats
li
a(href='/admin/users')
i.icon-users
span Users
li
a(href='/admin/settings')
i.icon-cog
span Site Settings
if rights.manage
li
a(href='/admin/users')
i.icon-users
span Users
li
a(href='/admin/settings')
i.icon-cog
span Site Settings
li
a(href='/logout')
i.icon-delete2
...
...
views/pages/source.pug
View file @
9578989b
...
...
@@ -6,18 +6,20 @@ block rootNavCenter
block rootNavRight
i.nav-item#notifload
span.nav-item
a.button.is-outlined.btn-move-prompt.is-hidden
i.icon-shuffle
span Move
if rights.write
a.button.is-outlined.btn-move-prompt.is-hidden
i.icon-shuffle
span Move
a.button.is-outlined(href='/' + pageData.meta.path)
i.icon-loader
span Normal View
a.button.is-orange(href='/edit/' + pageData.meta.path)
i.fa.fa-edit
span Edit
a.button.is-blue.btn-create-prompt
i.fa.fa-plus
span Create
if rights.write
a.button.is-orange(href='/edit/' + pageData.meta.path)
i.fa.fa-edit
span Edit
a.button.is-blue.btn-create-prompt
i.fa.fa-plus
span Create
block content
...
...
views/pages/view.pug
View file @
9578989b
...
...
@@ -11,18 +11,20 @@ mixin tocMenu(ti)
block rootNavRight
i.nav-item#notifload
.nav-item
a.button.is-outlined.btn-move-prompt.is-hidden
i.icon-shuffle
span Move
if rights.write
a.button.is-outlined.btn-move-prompt.is-hidden
i.icon-shuffle
span Move
a.button.is-outlined(href='/source/' + pageData.meta.path)
i.icon-loader
span Source
a.button(href='/edit/' + pageData.meta.path)
i.icon-document-text
span Edit
a.button.btn-create-prompt
i.icon-plus
span Create
if rights.write
a.button(href='/edit/' + pageData.meta.path)
i.icon-document-text
span Edit
a.button.btn-create-prompt
i.icon-plus
span Create
block content
...
...
@@ -46,10 +48,11 @@ block content
a(href='/' + pageData.parent.path)
i.icon-reply
span= pageData.parent.title
li
a(href='/admin')
i.icon-head
span Account
if !isGuest
li
a(href='/admin')
i.icon-head
span Account
aside.stickyscroll(data-margin-top=40)
.sidebar-label
i.icon-th-list
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment