forked from fossar/selfoss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
166 lines (143 loc) · 6.44 KB
/
gruntfile.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
const path = require('path');
function isNotUnimportant(dest) {
const filename = path.basename(dest);
const filenameDisallowed = [
/^changelog/i,
/^contributing/i,
/^upgrading/i,
/^copying/i,
/^readme/i,
/^licen[cs]e/i,
/^version/i,
/^phpunit/,
/^l?gpl\.txt$/,
/^composer\.(json|lock)$/,
/^Makefile$/,
/^build\.xml$/,
/^phpcs-ruleset\.xml$/,
/^phpmd\.xml$/
].some(function(expr) { return expr.test(filename); });
const destDisallowed = [
/^vendor\/htmlawed\/htmlawed\/htmLawed(Test\.php|(.*\.(htm|txt)))$/,
/^vendor\/smottt\/wideimage\/demo/,
/^vendor\/simplepie\/simplepie\/(db\.sql|autoload\.php)$/,
/^vendor\/composer\/installed\.json$/,
/^vendor\/[^/]+\/[^/]+\/(test|doc)s?/i,
/^vendor\/smalot\/pdfparser\/samples/,
/^vendor\/smalot\/pdfparser\/src\/Smalot\/PdfParser\/Tests/,
].some(function(expr) { return expr.test(dest); });
const allowed = !(filenameDisallowed || destDisallowed);
return allowed;
}
module.exports = function(grunt) {
const requiredAssets = (function() {
const files = grunt.file.readJSON('public/package.json').extra.requiredFiles;
return files.css.concat(files.js);
})();
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
/* Install client-side dependencies */
auto_install: {
subdir: {
options: {
cwd: 'public',
npm: '--production'
}
}
},
/* version text replace */
replace: {
version: {
src: [
'package.json',
'README.md',
'common.php',
'_docs/website/index.html'
],
overwrite: true,
replacements: [
// rule for package.json
{
from: /"ver": "\d+\.\d+(\-SNAPSHOT)?"/,
to: ('"ver": "' + grunt.option('newversion') + '"')
},
// rule for README.md
{
from: /'version', '\d+\.\d+(\-SNAPSHOT)?'/,
to: ("'version', '" + grunt.option('newversion') + "'")
},
// rule for common.php
{
from: /Version \d+\.\d+(\-SNAPSHOT)?/,
to: ("Version " + grunt.option('newversion'))
},
// rule for website/index.html
{
from: /selfoss( |\-)\d+\.\d+(\-SNAPSHOT)?/g,
to: ("selfoss$1" + grunt.option('newversion'))
}]
}
},
/* create zip */
compress: {
main: {
options: {
archive: 'selfoss-<%= pkg.ver %>.zip'
},
files: [
{ expand: true, cwd: 'controllers/', src: ['**'], dest: '/controllers'},
{ expand: true, cwd: 'daos/', src: ['**'], dest: '/daos'},
{ expand: true, cwd: 'helpers/', src: ['**'], dest: '/helpers'},
{ expand: true, cwd: 'vendor/', src: ['**'], dest: '/vendor', filter: isNotUnimportant},
// do not pack bundled assets and assets not listed in index.php
{ expand: true, cwd: 'public/', src: ['**'], dest: '/public', filter: function(file) {
const bundle = file === 'public/all.js' || file === 'public/all.css';
const thirdPartyRubbish = file.startsWith('public/node_modules/') && requiredAssets.indexOf(file) === -1;
const allowed = !bundle && !thirdPartyRubbish;
return allowed;
}},
// copy data: only directory structure and .htaccess for deny
{ expand: true, cwd: 'data/', src: ['**'], dest: '/data', filter: 'isDirectory'},
{ src: ['data/cache/.htaccess'], dest: '' },
{ src: ['data/logs/.htaccess'], dest: '' },
{ src: ['data/sqlite/.htaccess'], dest: '' },
{ expand: true, cwd: 'data/fulltextrss', src: ['**'], dest: '/data/fulltextrss'},
{ expand: true, cwd: 'spouts/', src: ['**'], dest: '/spouts'},
{ expand: true, cwd: 'templates/', src: ['**'], dest: '/templates'},
{ src: ['.htaccess'], dest: '' },
{ src: ['README.md'], dest: '' },
{ src: ['defaults.ini'], dest: '' },
{ src: ['index.php'], dest: '' },
{ src: ['common.php'], dest: '' },
{ src: ['run.php'], dest: '' },
{ src: ['cliupdate.php'], dest: '' }
]
}
},
eslint: {
target: ['public/js/selfoss-*.js']
}
});
grunt.loadNpmTasks('grunt-auto-install');
grunt.loadNpmTasks('grunt-text-replace');
grunt.loadNpmTasks('grunt-contrib-compress');
grunt.loadNpmTasks('grunt-composer');
grunt.loadNpmTasks('grunt-eslint');
/* task checks whether newversion is given and start replacement in files if correct format is given */
grunt.registerTask('versionupdater', 'version update task', function() {
var version = "" + grunt.option('newversion');
if (typeof grunt.option('newversion') != 'undefined') {
grunt.log.writeln('replace version ' + grunt.option('newversion'));
if (version.search(/^\d+\.\d+(\-SNAPSHOT)?$/) == -1)
grunt.fail.warn('newversion must have the format n.m or n.m-SNAPSHOT (n and m are integer numbers)');
grunt.task.run('replace');
}
});
grunt.registerTask('client:install', 'Install client-side dependencies.', ['auto_install']);
grunt.registerTask('server:install', 'Install server-side dependencies.', ['composer:install:no-dev:optimize-autoloader:prefer-dist']);
grunt.registerTask('install', 'Install both client-side and server-side dependencies.', ['client:install', 'server:install']);
grunt.registerTask('default', ['install', 'versionupdater', 'compress']);
grunt.registerTask('version', ['versionupdater']);
grunt.registerTask('zip', ['compress']);
grunt.registerTask('lint:client', 'Check JS syntax', ['eslint']);
};