-
Notifications
You must be signed in to change notification settings - Fork 0
/
maxcdn.js
147 lines (127 loc) · 3.92 KB
/
maxcdn.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
// Copyright (c) 2013 - MaxCDN, a division of NetDNA, LLC.
//
// MIT Licensed
// * Author: [@mervinej](https://twitter.com/#!/mervinej)
// * Source:
require('js-yaml');
var path = require('path');
var write = require('fs').appendFileSync;
try {
var config = require(path.resolve(process.cwd(), '_maxcdn.yml'));
} catch (e) {
throwError('_maxcdn.yml could not be loaded');
}
/*
* HELPER METHODS
*/
var started;
function processStarted() {
started = started || Math.floor((new Date())-(process.uptime()*1000)).toString();
return started;
}
function throwError(msg) {
write('/tmp/hexo-maxcdn.error', 'Error: hexo-maxcdn-plugin - '+msg);
throw new Error('hexo-maxcdn-plugin - ' + msg);
}
var fetch = {
version: function() {
// TODO: Wouldn't be nice to use a git sha?
return '?' + (config.cachebuster || processStarted());
},
source: function() {
if (!config.domain) {
throwError('_maxcdn.yml must contain a cdn domain');
}
if (typeof config.enabled === 'boolean' && config.enabled !== true) {
return '';
}
if (typeof config.enabled === 'object' &&
config.enabled.length &&
!config.enabled.some(function(s) {
return (s === process.env.NODE_ENV);
})) {
return '';
}
var domain = config.domain;
domain.replace(/^https:\/\//, '')
.replace(/^http:\/\//, '')
.replace(/\/$/, '');
return '//'+domain;
}
};
function escape(string) {
string = string || '';
return string.replace(/&/g, '&')
.replace(/</g, '<')
.replace(/"/g, '"')
.replace(/'/g, ''');
}
function attributesFrom(options) {
var attrs = [];
Object.keys(options).forEach(function(name) {
// Allow for false to generate attribute with 'false' value.
if (options[name] === false) {
options[name] = 'false';
}
// Allow for null || undefined || '' to generate empty
// attributes.
options[name] = options[name] || '';
attrs.push(escape(name)+'=\''+escape(options[name])+'\'');
});
return attrs.sort().join(' ');
}
/*
* CORE METHODS
*/
function maxcdnify(file, attrs) {
var src = fetch.source();
var version = fetch.version();
// optional attrs, e.g.:
// - width
// - height
// - alt
attrs = attrs || {};
try {
switch (file.match(/\.[a-z]+$/)[0]) {
// link tag
case '.css':
attrs.rel = attrs.rel || 'stylesheet';
case '.ico':
attrs.rel = attrs.rel || 'icon';
attrs.href = src + file + version;
return '<link ' + attributesFrom(attrs) + '/>';
// script tag
case '.js':
attrs.type = attrs.type || 'text/javascript';
attrs.src = src + file + version;
return '<script ' + attributesFrom(attrs) + '></script>';
// image tag
case '.bmp':
case '.gif':
case '.jpg':
case '.jpeg':
case '.png':
attrs.src = src + file + version;
return '<img ' + attributesFrom(attrs) + ' />';
// embed
case '.svg':
attrs.type = attrs.type || 'image/svg+xml';
case '.pdf':
attrs.src = src + file + version;
return '<embed ' + attributesFrom(attrs) + '></embed>';
default:
throw new Error('hexo-maxcdn-plugin: unknown asset type');
}
} catch (e) {
throw new Error('hexo-maxcdn-plugin: unknown asset type');
}
}
module.exports = {
config: config,
processStarted: processStarted,
throwError: throwError,
fetch: fetch,
escape: escape,
attributesFrom: attributesFrom,
maxcdnify: maxcdnify
};