Skip to content

Commit 6bc8910

Browse files
committed
Add admin panel
1 parent 052cb0c commit 6bc8910

File tree

13 files changed

+108
-48
lines changed

13 files changed

+108
-48
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ The server needs to have CUPS installed and have all the printers added to it.
1111
1. Encrypt passwords
1212
1. Cannot print more than 50 pages in total.
1313
1. Instruction on top of page.
14-
1. Run without internet
15-
1. Add admin middleware to stop deleting jobs.
16-
1. View flash messages.
1714

1815
# Done
1916
1. Stop duplicate consecutive printing.
2017
1. Disable button on print.
2118
1. Cannot print more than 10 pages at once.
19+
1. View flash messages.
20+
1. Run without internet
21+
1. Add admin middleware to stop deleting jobs.

controllers/admin.js

+13-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,13 @@ const express = require('express');
22
const printer = require('printer');
33
const router = express.Router();
44
const _ = require('lodash');
5+
const isAdmin = require('config').middlewares.isAdmin;
56

67
router.get('/printers', handler_printers);
78
router.get('/jobs', handler_jobs);
89
router.get('/jobs/delete/:printerName/:jobId', handler_jobs_delete);
10+
router.get('/dashboard', get_dashboard);
11+
router.get('/dashboard/addUser', get_dashboard_addUser);
912

1013
function handler_printers (req,res){
1114
res.send(_.map(printer.getPrinters(), 'name'));
@@ -32,11 +35,19 @@ function handler_jobs (req,res){
3235
function handler_jobs_delete (req,res){
3336
const {printerName, jobId} = req.params;
3437
printer.setJob(printerName, parseInt(jobId), 'CANCEL');
35-
return res.redirect('/jobs');
38+
return res.redirect('/admin/jobs');
39+
}
40+
41+
function get_dashboard(req, res){
42+
return res.render('admin/dashboard');
43+
}
44+
45+
function get_dashboard_addUser(req, res){
46+
return res.render('admin/addUser');
3647
}
3748

3849
module.exports = {
3950
addRouter(app) {
40-
app.use('/', router);
51+
app.use('/admin', isAdmin, router);
4152
}
4253
};

controllers/print.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -34,22 +34,21 @@ router.post('/printCode', login, handler_post_printCode);
3434

3535
function handler_index (req,res){
3636
return res.render('home', {
37-
ip: getReqIp(req),
38-
username: req.session.username
37+
ip: getReqIp(req)
3938
});
4039
}
4140

4241
function saveToFile(pdfDoc) {
4342
pdfDoc.pipe(fs.createWriteStream('pdfs/basics.pdf'));
4443
}
4544

46-
function getPDFString(code, reqIp, cb){
45+
function getPDFString(code, username, cb){
4746
let totalPages = 0;
4847
const docDef = {
4948
header: function(currentPage, pageCount) {
5049
totalPages = pageCount;
5150
return {
52-
text: currentPage.toString() + ' of ' + pageCount + ` from ${reqIp}`
51+
text: currentPage.toString() + ' of ' + pageCount + ` from ${username}`
5352
};
5453
},
5554
content: {
@@ -90,7 +89,7 @@ function handler_post_printCode (req,res){
9089
const code = req.body.code;
9190
const reqIp = getReqIp(req);
9291

93-
getPDFString(code, reqIp, function(err, pdfObj){
92+
getPDFString(code, req.session.username, function(err, pdfObj){
9493
const {pdfString, pdfPageCount} = pdfObj;
9594

9695
if ( pdfPageCount > config.pagePerPrintLimit ) {
@@ -130,7 +129,7 @@ function handler_post_printCode (req,res){
130129
}
131130
})
132131
} else {
133-
res.flash('info', 'Testing mode');
132+
req.flash('info', 'Testing mode');
134133
return res.redirect('/');
135134
}
136135
});

middlewares/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
module.exports = {
2-
login: require('./login')
2+
login: require('./login'),
3+
isAdmin: require('./isAdmin')
34
}

middlewares/isAdmin.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = function(req, res, next) {
2+
if ( req.session.status == "admin" ) {
3+
return next();
4+
}
5+
req.flash("info", "You must be admin to proceed");
6+
return res.redirect('/');
7+
}

middlewares/passSession.js

+2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
module.exports = function(req, res, next) {
22
res.locals.login = req.session.login;
3+
res.locals.username = req.session.username;
4+
res.locals.status = req.session.status;
35
next();
46
}

public/js/script.js

+15
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,18 @@ for (const val in flash) {
3939
$.notify(flash[val][i], val);
4040
}
4141
}
42+
43+
/**Vertical Centering**/
44+
(function(){
45+
var windowHeight = $(window).height();
46+
var htmlHeight = $('html').height();
47+
48+
$('#fill-view').addClass('align-items-center');
49+
var fillView = $('#fill-view').height();
50+
if (htmlHeight + 5 < windowHeight) {
51+
var dif = windowHeight - htmlHeight;
52+
$('#fill-view').animate({
53+
"min-height": fillView + dif
54+
}, 300);
55+
}
56+
})();

views/admin/addUser.pug

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
extends ../layout.pug
2+
3+
block content
4+
.row#fill-view
5+
.col
6+
form(action='/admin/dashboard/addUsers', method='post')
7+
.row
8+
.col
9+
.form-group
10+
label(for='usercsv')
11+
textarea#usercsv.form-control(name='usercsv', style="height:500px;").
12+
Upload a csv file content here to add users. Users who already exist in db, will be updated. New users will be inserted. Users not present in the text provided will be unaltered. Enter each user with the following format: Username, Password, Printer An Example is provided below.
13+
14+
15+
samiul, 12345, 0
16+
forthright48, 54321, 1
17+
.row
18+
.col.text-center
19+
input.btn.btn-primary.mr-1.disableOnClick(type='submit', value='Add Users')

views/admin/dashboard.pug

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
extends ../layout.pug
2+
3+
block content
4+
.row.align-items-center#fill-view.justify-content-center
5+
.col.text-center
6+
h2 Dashboard
7+
.list-group.d-inline-flex
8+
a(href='/admin/dashboard/addUser').list-group-item.list-group-item-action
9+
span Add User

views/home.pug

+11-9
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
extends layout.pug
22

33
block content
4-
form(action='/printCode', method='post')
5-
.row
6-
.col
7-
.form-group
8-
label(for='code')
9-
textarea#code.form-control(name='code', style="height:500px;") Paste code here
10-
.row
11-
.col.text-center
12-
input.btn.btn-primary.mr-1.disableOnClick(type='submit', value='Print')
4+
.row#fill-view
5+
.col
6+
form(action='/printCode', method='post')
7+
.row
8+
.col
9+
.form-group
10+
label(for='code')
11+
textarea#code.form-control(name='code', style="height:500px;") Paste code here
12+
.row
13+
.col.text-center
14+
input.btn.btn-primary.mr-1.disableOnClick(type='submit', value='Print')

views/jobList.pug

+16-26
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,17 @@
1-
doctype html
2-
html(lang='en')
3-
head
1+
extends layout.pug
42

5-
title Print Server
6-
7-
link(rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous")
8-
9-
script(src="https://code.jquery.com/jquery-3.2.1.min.js")
10-
11-
12-
body
13-
.container
14-
table.table
15-
thead
16-
th Printer Name
17-
th Job ID
18-
th Status
19-
th Delete
20-
tbody
21-
each job in jobQ
22-
tr
23-
td= job.printerName
24-
td= job.jobID
25-
td= job.status
26-
td
27-
a(href=`/jobs/delete/${job.printerName}/${job.jobID}`) Delete
3+
block content
4+
table.table
5+
thead
6+
th Printer Name
7+
th Job ID
8+
th Status
9+
th Delete
10+
tbody
11+
each job in jobQ
12+
tr
13+
td= job.printerName
14+
td= job.jobID
15+
td= job.status
16+
td
17+
a(href=`/admin/jobs/delete/${job.printerName}/${job.jobID}`) Delete

views/login.pug

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
extends layout.pug
22

33
block content
4-
.row
4+
.row#fill-view
55
.col-6.offset-3
6+
.text-center
7+
h2 Login
68
form(action='/user/login', method='post')
79
.form-group
810
label(for="username") User Name

views/partials/header.pug

+3
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,7 @@
55
h1.text-center Print Server
66
if login == true
77
.col.text-right
8+
if status == "admin"
9+
a(href="/admin/dashboard") Dashboard
10+
span &nbsp; &nbsp;
811
a(href="/user/logout") Logout

0 commit comments

Comments
 (0)