This repository has been archived by the owner on Sep 18, 2018. It is now read-only.
forked from twbs/bootlint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
152 lines (126 loc) · 3.54 KB
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/**
Bootlint HTTP server API
Run it via: npm run start
This is pretty niche. Most users should probably use the CLI or bookmarklet instead.
*/
/* eslint-env node */
'use strict';
var bootlint = require('./src/bootlint');
var _extend = require('util')._extend;
var express = require('express');
var logger = require('morgan');
var bodyParser = require('body-parser');
var HTML_MIME_TYPES = [
'text/html',
'application/xhtml+xml'
];
// For context, unminified bootstrap.css + bootstrap.js is ~200KiB,
// and JSFiddle inlines the contents of the CSS and JS panes of its editor into the resulting HTML.
var MAX_HTML_SIZE = '1MB';
function shallowClone(obj) {
return _extend({}, obj);
}
function disabledIdsFor(req) {
var rawIds = req.query.disable;
if (!rawIds) {
return [];
}
return rawIds.split(',');
}
function lintsFor(html, disabledIds) {
var lints = [];
var reporter = function (lint) {
var output = false;
if (lint.elements && lint.elements.length) {
var elements = lint.elements;
lint.elements = undefined;
elements.each(function (_, element) {
if (element.startLocation) {
var locatedLint = shallowClone(lint);
locatedLint.location = element.startLocation;
lints.push(locatedLint);
output = true;
}
});
}
if (!output) {
lint.elements = undefined;
lints.push(lint);
}
};
bootlint.lintHtml(html, reporter, disabledIds);
return lints;
}
/* eslint-disable new-cap */
var routes = express.Router();
/* eslint-enable new-cap */
routes.get('/', function (req, res) {
res.status(200).json({
status: 200,
message: 'Bootlint is online!'
});
});
routes.post('/', function (req, res) {
var isHtml = HTML_MIME_TYPES.some(function (type) {
return req.is(type);
});
if (!isHtml) {
res.status(415).json({
status: 415,
message: 'Unsupported Media Type',
details: 'Content-Type was not an HTML MIME type'
});
return;
}
res.format({
'application/json': function () {
var disabledIds = disabledIdsFor(req);
var html = req.body;
// console.log('HTML: ', html);
var lints = lintsFor(html, disabledIds);
res.status(200).json(lints);
},
'default': function () {
res.status(406).json({
status: 406,
message: 'Not Acceptable',
details: '"Accept" header must allow MIME type application/json'
});
}
});
});
var app = express();
app.use(logger('dev'));
HTML_MIME_TYPES.forEach(function (type) {
app.use(bodyParser.text({
type: type,
limit: MAX_HTML_SIZE
}));
});
app.use('/', routes);
// catch 404 and forward to error handler
app.use(function (req, res, next) {
var err = new Error('Not Found');
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
/* eslint-disable no-unused-vars */
app.use(function (err, req, res, next) {
var isHttpErr = Boolean(err.status);
if (!isHttpErr) {
err.status = 500;
}
var errJson = {
status: err.status,
message: err.message
};
if (!isHttpErr) {
errJson.stack = err.stack;
}
res.status(err.status).json(errJson);
});
/* eslint-enable no-unused-vars */
module.exports = app;