Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app.js - github.com/twbs/bootlint-server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/app.js
blob: 849f133a1b5dabdb87e9cef5d1059026956c9225 (plain)
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
'use strict';

const express = require('express');
const logger = require('morgan');
const bodyParser = require('body-parser');
const bootlint = require('bootlint');

const 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.
const MAX_HTML_SIZE = '1MB';

function disabledIdsFor(req) {
    const rawIds = req.query.disable;
    if (!rawIds) {
        return [];
    }

    return rawIds.split(',');
}

function lintsFor(html, disabledIds) {
    const lints = [];
    const reporter = lint => {
        let output = false;
        if (lint.elements && lint.elements.length) {
            const {elements} = lint;
            lint.elements = undefined;
            elements.each((_, element) => {
                if (element.startLocation) {
                    const locatedLint = {...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;
}

const routes = express.Router(); // eslint-disable-line new-cap

routes.get('/', (req, res) => {
    res.status(200).json({
        status: 200,
        message: 'Bootlint is online!'
    });
});

routes.post('/', (req, res) => {
    const isHtml = HTML_MIME_TYPES.some(type => 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'() {
            const disabledIds = disabledIdsFor(req);
            const lints = lintsFor(req.body.html, disabledIds);
            res.status(200).json(lints);
        },
        default() {
            res.status(406).json({
                status: 406,
                message: 'Not Acceptable',
                details: '"Accept" header must allow MIME type application/json'
            });
        }
    });
});

const app = express();

app.use(logger('dev'));
for (const type of HTML_MIME_TYPES) {
    app.use(bodyParser.text({
        type,
        limit: MAX_HTML_SIZE
    }));
}

app.use('/', routes);

// catch 404 and forward to error handler
app.use((req, res, next) => {
    const 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((err, req, res, next) => {
    const isHttpErr = Boolean(err.status);

    if (!isHttpErr) {
        err.status = 500;
    }

    const 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;