| 
									
										
										
										
											2021-12-14 07:50:53 +01:00
										 |  |  | /* SPDX-License-Identifier: AGPL-3.0-or-later */ | 
					
						
							| 
									
										
										
										
											2021-06-24 12:12:13 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-14 07:31:58 +01:00
										 |  |  | module.exports = function (grunt) { | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-23 20:18:09 +01:00
										 |  |  |   const eachAsync = require('each-async'); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |   grunt.initConfig({ | 
					
						
							| 
									
										
										
										
											2021-11-20 10:49:21 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     _brand: '../../../../src/brand', | 
					
						
							|  |  |  |     _templates: '../../../templates', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |     pkg: grunt.file.readJSON('package.json'), | 
					
						
							|  |  |  |     watch: { | 
					
						
							|  |  |  |       scripts: { | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  |         files: ['gruntfile.js', 'src/**'], | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |         tasks: [ | 
					
						
							|  |  |  |           'eslint', | 
					
						
							|  |  |  |           'copy', | 
					
						
							|  |  |  |           'uglify', | 
					
						
							| 
									
										
										
										
											2021-11-30 23:04:37 +01:00
										 |  |  |           'less', | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |           'image', | 
					
						
							| 
									
										
										
										
											2021-11-23 20:18:09 +01:00
										 |  |  |           'svg2png', | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |           'svg2jinja' | 
					
						
							|  |  |  |         ] | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-08-01 16:04:19 +02:00
										 |  |  |     eslint: { | 
					
						
							|  |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2021-10-22 10:03:45 +02:00
										 |  |  |         overrideConfigFile: '.eslintrc.json', | 
					
						
							| 
									
										
										
										
											2021-12-14 07:50:53 +01:00
										 |  |  |         failOnError: true, | 
					
						
							| 
									
										
										
										
											2021-11-23 18:16:23 +01:00
										 |  |  |         fix: grunt.option('fix') | 
					
						
							| 
									
										
										
										
											2021-08-01 16:04:19 +02:00
										 |  |  |       }, | 
					
						
							|  |  |  |       target: [ | 
					
						
							| 
									
										
										
										
											2021-11-23 20:55:38 +01:00
										 |  |  |         'gruntfile.js', | 
					
						
							| 
									
										
										
										
											2021-11-14 13:26:12 +01:00
										 |  |  |         'svg4web.svgo.js', | 
					
						
							| 
									
										
										
										
											2021-08-01 16:04:19 +02:00
										 |  |  |         'src/js/main/*.js', | 
					
						
							|  |  |  |         'src/js/head/*.js', | 
					
						
							|  |  |  |         '../__common__/js/*.js' | 
					
						
							|  |  |  |       ], | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-06-22 13:33:05 +02:00
										 |  |  |     stylelint: { | 
					
						
							|  |  |  |       options: { | 
					
						
							|  |  |  |         formatter: 'unix', | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       src: [ | 
					
						
							|  |  |  |         'src/less/**/*.less', | 
					
						
							|  |  |  |       ] | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-06-16 10:31:11 +02:00
										 |  |  |     copy: { | 
					
						
							|  |  |  |       js: { | 
					
						
							|  |  |  |         expand: true, | 
					
						
							|  |  |  |         cwd: './node_modules', | 
					
						
							|  |  |  |         dest: './js/', | 
					
						
							|  |  |  |         flatten: true, | 
					
						
							|  |  |  |         filter: 'isFile', | 
					
						
							|  |  |  |         timestamp: true, | 
					
						
							|  |  |  |         src: [ | 
					
						
							|  |  |  |           './leaflet/dist/leaflet.js', | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       css: { | 
					
						
							|  |  |  |         expand: true, | 
					
						
							|  |  |  |         cwd: './node_modules', | 
					
						
							|  |  |  |         dest: './css/', | 
					
						
							|  |  |  |         flatten: true, | 
					
						
							|  |  |  |         filter: 'isFile', | 
					
						
							|  |  |  |         timestamp: true, | 
					
						
							|  |  |  |         src: [ | 
					
						
							|  |  |  |           './leaflet/dist/leaflet.css', | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |       leaflet_images: { | 
					
						
							|  |  |  |         expand: true, | 
					
						
							|  |  |  |         cwd: './node_modules', | 
					
						
							|  |  |  |         dest: './css/images/', | 
					
						
							|  |  |  |         flatten: true, | 
					
						
							|  |  |  |         filter: 'isFile', | 
					
						
							|  |  |  |         timestamp: true, | 
					
						
							|  |  |  |         src: [ | 
					
						
							|  |  |  |           './leaflet/dist/images/*.png', | 
					
						
							|  |  |  |         ] | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |     uglify: { | 
					
						
							|  |  |  |       options: { | 
					
						
							| 
									
										
										
										
											2019-07-23 14:13:38 +02:00
										 |  |  |         output: { | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |           comments: 'some' | 
					
						
							| 
									
										
										
										
											2019-07-23 14:13:38 +02:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2018-08-09 16:13:50 +02:00
										 |  |  |         ie8: false, | 
					
						
							|  |  |  |         warnings: true, | 
					
						
							|  |  |  |         compress: false, | 
					
						
							|  |  |  |         mangle: true, | 
					
						
							| 
									
										
										
										
											2021-12-01 11:46:44 +01:00
										 |  |  |         sourceMap: { | 
					
						
							|  |  |  |           includeSources: true | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |       }, | 
					
						
							|  |  |  |       dist: { | 
					
						
							|  |  |  |         files: { | 
					
						
							| 
									
										
										
										
											2021-12-01 09:25:00 +01:00
										 |  |  |           'js/searxng.head.min.js': ['src/js/head/*.js'], | 
					
						
							| 
									
										
										
										
											2021-11-30 23:04:37 +01:00
										 |  |  |           'js/searxng.min.js': [ | 
					
						
							|  |  |  |             'src/js/main/*.js', | 
					
						
							|  |  |  |             '../__common__/js/*.js', | 
					
						
							|  |  |  |             './node_modules/autocomplete-js/dist/autocomplete.js' | 
					
						
							|  |  |  |           ] | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-06-16 13:28:08 +02:00
										 |  |  |     less: { | 
					
						
							|  |  |  |       production: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           paths: ["less"], | 
					
						
							|  |  |  |           plugins: [ | 
					
						
							|  |  |  |             new (require('less-plugin-clean-css'))() | 
					
						
							|  |  |  |           ], | 
					
						
							|  |  |  |           sourceMap: true, | 
					
						
							| 
									
										
										
										
											2021-12-14 07:31:58 +01:00
										 |  |  |           sourceMapURL: (name) => { const s = name.split('/'); return s[s.length - 1] + '.map'; }, | 
					
						
							| 
									
										
										
										
											2021-12-04 11:22:40 +01:00
										 |  |  |           outputSourceFiles: true, | 
					
						
							| 
									
										
										
										
											2021-06-16 13:28:08 +02:00
										 |  |  |         }, | 
					
						
							|  |  |  |         files: { | 
					
						
							| 
									
										
										
										
											2021-10-01 16:33:31 +02:00
										 |  |  |           "css/searxng.min.css": "src/less/style.less", | 
					
						
							|  |  |  |           "css/searxng-rtl.min.css": "src/less/style-rtl.less" | 
					
						
							| 
									
										
										
										
											2021-06-16 13:28:08 +02:00
										 |  |  |         } | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |     image: { | 
					
						
							|  |  |  |       svg4web: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           svgo: ['--config', 'svg4web.svgo.js'] | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         files: { | 
					
						
							| 
									
										
										
										
											2021-11-29 19:38:23 +01:00
										 |  |  |           '<%= _templates %>/__common__/searxng-wordmark.min.svg': '<%= _brand %>/searxng-wordmark.svg', | 
					
						
							| 
									
										
										
										
											2021-12-18 21:24:59 +01:00
										 |  |  |           'img/searxng.svg': '<%= _brand %>/searxng.svg', | 
					
						
							|  |  |  |           'img/img_load_error.svg': '<%= _brand %>/img_load_error.svg' | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2021-11-28 15:24:39 +01:00
										 |  |  |       }, | 
					
						
							|  |  |  |       favicon: { | 
					
						
							|  |  |  |         options: { | 
					
						
							|  |  |  |           svgo: ['--config', 'svg4favicon.svgo.js'] | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         files: { | 
					
						
							|  |  |  |           'img/favicon.svg': '<%= _brand %>/searxng-wordmark.svg' | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |       }, | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-11-23 20:18:09 +01:00
										 |  |  |     svg2png: { | 
					
						
							|  |  |  |       favicon: { | 
					
						
							|  |  |  |         files: { | 
					
						
							| 
									
										
										
										
											2021-11-29 19:38:23 +01:00
										 |  |  |           'img/favicon.png': '<%= _brand %>/searxng-wordmark.svg', | 
					
						
							| 
									
										
										
										
											2021-11-29 16:27:16 +01:00
										 |  |  |           'img/searxng.png': '<%= _brand %>/searxng.svg', | 
					
						
							| 
									
										
										
										
											2021-11-23 20:18:09 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  |     svg2jinja: { | 
					
						
							|  |  |  |       all: { | 
					
						
							|  |  |  |         src: { | 
					
						
							|  |  |  |           'warning': 'node_modules/ionicons/dist/svg/alert-outline.svg', | 
					
						
							|  |  |  |           'close': 'node_modules/ionicons/dist/svg/close-outline.svg', | 
					
						
							|  |  |  |           'chevron-up-outline': 'node_modules/ionicons/dist/svg/chevron-up-outline.svg', | 
					
						
							|  |  |  |           'chevron-right': 'node_modules/ionicons/dist/svg/chevron-forward-outline.svg', | 
					
						
							|  |  |  |           'chevron-left': 'node_modules/ionicons/dist/svg/chevron-back-outline.svg', | 
					
						
							|  |  |  |           'menu-outline': 'node_modules/ionicons/dist/svg/menu-outline.svg', | 
					
						
							|  |  |  |           'ellipsis-vertical-outline': 'node_modules/ionicons/dist/svg/ellipsis-vertical-outline.svg', | 
					
						
							|  |  |  |           'magnet-outline': 'node_modules/ionicons/dist/svg/magnet-outline.svg', | 
					
						
							|  |  |  |           'globe-outline': 'node_modules/ionicons/dist/svg/globe-outline.svg', | 
					
						
							|  |  |  |           'search-outline': 'node_modules/ionicons/dist/svg/search-outline.svg', | 
					
						
							|  |  |  |           'image-outline': 'node_modules/ionicons/dist/svg/image-outline.svg', | 
					
						
							|  |  |  |           'play-outline': 'node_modules/ionicons/dist/svg/play-outline.svg', | 
					
						
							|  |  |  |           'newspaper-outline': 'node_modules/ionicons/dist/svg/newspaper-outline.svg', | 
					
						
							|  |  |  |           'location-outline': 'node_modules/ionicons/dist/svg/location-outline.svg', | 
					
						
							|  |  |  |           'musical-notes-outline': 'node_modules/ionicons/dist/svg/musical-notes-outline.svg', | 
					
						
							|  |  |  |           'layers-outline': 'node_modules/ionicons/dist/svg/layers-outline.svg', | 
					
						
							|  |  |  |           'school-outline': 'node_modules/ionicons/dist/svg/school-outline.svg', | 
					
						
							|  |  |  |           'file-tray-full-outline': 'node_modules/ionicons/dist/svg/file-tray-full-outline.svg', | 
					
						
							|  |  |  |           'people-outline': 'node_modules/ionicons/dist/svg/people-outline.svg', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         dest: '../../../templates/simple/icons.html', | 
					
						
							|  |  |  |       }, | 
					
						
							|  |  |  |     }, | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-14 07:31:58 +01:00
										 |  |  |   grunt.registerMultiTask('svg2jinja', 'Create Jinja2 macro', function () { | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  |     const ejs = require('ejs'), svgo = require('svgo'); | 
					
						
							|  |  |  |     const icons = {} | 
					
						
							| 
									
										
										
										
											2021-12-14 07:31:58 +01:00
										 |  |  |     for (const iconName in this.data.src) { | 
					
						
							|  |  |  |       const svgFileName = this.data.src[iconName]; | 
					
						
							|  |  |  |       try { | 
					
						
							|  |  |  |         const svgContent = grunt.file.read(svgFileName, { encoding: 'utf8' }) | 
					
						
							|  |  |  |         const svgoResult = svgo.optimize(svgContent, { | 
					
						
							|  |  |  |           path: svgFileName, | 
					
						
							|  |  |  |           multipass: true, | 
					
						
							|  |  |  |           plugins: [ | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               name: "removeTitle", | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               name: "removeXMLNS", | 
					
						
							|  |  |  |             }, | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |               name: "addAttributesToSVGElement", | 
					
						
							|  |  |  |               params: { | 
					
						
							|  |  |  |                 attributes: [ | 
					
						
							|  |  |  |                   { "aria-hidden": "true" } | 
					
						
							|  |  |  |                 ] | 
					
						
							|  |  |  |               } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |           ] | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |         icons[iconName] = svgoResult.data.replace("'", "\\'"); | 
					
						
							|  |  |  |       } catch (err) { | 
					
						
							|  |  |  |         grunt.log.error(err); | 
					
						
							|  |  |  |       } | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  |     } | 
					
						
							|  |  |  |     const template = `{# this file was generated by searx/static/themes/simple/gruntfile.js #}
 | 
					
						
							|  |  |  | {%- set icons = { | 
					
						
							|  |  |  | <% for (const iconName in icons) { %>  '<%- iconName %>':'<%- icons[iconName] %>', | 
					
						
							|  |  |  | <% } %> | 
					
						
							| 
									
										
										
										
											2021-11-13 15:51:08 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  | -%} | 
					
						
							| 
									
										
										
										
											2021-11-13 15:51:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  | {% macro icon(action, alt) -%} | 
					
						
							|  |  |  |   {{ icons[action] | replace("ionicon", "ion-icon") | safe }} | 
					
						
							|  |  |  | {%- endmacro %} | 
					
						
							| 
									
										
										
										
											2021-11-13 15:51:08 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-13 10:42:07 +01:00
										 |  |  | {% macro icon_small(action) -%} | 
					
						
							|  |  |  |   {{ icons[action] | replace("ionicon", "ion-icon-small") | safe }} | 
					
						
							|  |  |  | {%- endmacro %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% macro icon_big(action, alt) -%} | 
					
						
							|  |  |  |   {{ icons[action] | replace("ionicon", "ion-icon-big") | safe }} | 
					
						
							|  |  |  | {%- endmacro %} | 
					
						
							|  |  |  | `;
 | 
					
						
							|  |  |  |     const result = ejs.render(template, { icons }); | 
					
						
							|  |  |  |     grunt.file.write(this.data.dest, result, { encoding: 'utf8' }); | 
					
						
							|  |  |  |     grunt.log.ok(this.data.dest + " created"); | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-23 20:18:09 +01:00
										 |  |  |   grunt.registerMultiTask('svg2png', 'Convert SVG to PNG', function () { | 
					
						
							|  |  |  |     const sharp = require('sharp'), done = this.async(); | 
					
						
							|  |  |  |     eachAsync(this.files, async (file, _index, next) => { | 
					
						
							|  |  |  |       try { | 
					
						
							|  |  |  |         if (file.src.length != 1) { | 
					
						
							|  |  |  |           next("this task supports only one source per destination"); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         const info = await sharp(file.src[0]) | 
					
						
							|  |  |  |           .png({ | 
					
						
							|  |  |  |             force: true, | 
					
						
							|  |  |  |             compressionLevel: 9, | 
					
						
							|  |  |  |             palette: true, | 
					
						
							|  |  |  |           }) | 
					
						
							|  |  |  |           .toFile(file.dest); | 
					
						
							|  |  |  |         grunt.log.ok(file.dest + ' created (' + info.size + ' bytes, ' + info.width + 'px * ' + info.height + 'px)'); | 
					
						
							|  |  |  |         next(); | 
					
						
							|  |  |  |       } catch (error) { | 
					
						
							|  |  |  |         grunt.fatal(error); | 
					
						
							|  |  |  |         next(error); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }, error => { | 
					
						
							|  |  |  |       if (error) { | 
					
						
							|  |  |  |         grunt.fatal(error); | 
					
						
							|  |  |  |         done(error); | 
					
						
							|  |  |  |       } else { | 
					
						
							|  |  |  |         done(); | 
					
						
							|  |  |  |       } | 
					
						
							|  |  |  |     }); | 
					
						
							|  |  |  |   }); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |   grunt.loadNpmTasks('grunt-contrib-watch'); | 
					
						
							| 
									
										
										
										
											2021-06-16 10:31:11 +02:00
										 |  |  |   grunt.loadNpmTasks('grunt-contrib-copy'); | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |   grunt.loadNpmTasks('grunt-contrib-uglify'); | 
					
						
							| 
									
										
										
										
											2021-11-14 13:26:12 +01:00
										 |  |  |   grunt.loadNpmTasks('grunt-image'); | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  |   grunt.loadNpmTasks('grunt-contrib-less'); | 
					
						
							|  |  |  |   grunt.loadNpmTasks('grunt-contrib-cssmin'); | 
					
						
							| 
									
										
										
										
											2021-06-22 13:33:05 +02:00
										 |  |  |   grunt.loadNpmTasks('grunt-stylelint'); | 
					
						
							| 
									
										
										
										
											2021-08-01 16:04:19 +02:00
										 |  |  |   grunt.loadNpmTasks('grunt-eslint'); | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-14 07:50:53 +01:00
										 |  |  |   grunt.registerTask('test', ['eslint']); | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-06-22 13:33:05 +02:00
										 |  |  |   grunt.registerTask('default', [ | 
					
						
							| 
									
										
										
										
											2021-08-24 09:52:40 +02:00
										 |  |  |     'eslint', | 
					
						
							| 
									
										
										
										
											2021-06-22 13:33:05 +02:00
										 |  |  |     'stylelint', | 
					
						
							|  |  |  |     'copy', | 
					
						
							|  |  |  |     'uglify', | 
					
						
							| 
									
										
										
										
											2021-11-30 23:04:37 +01:00
										 |  |  |     'less', | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |     'image', | 
					
						
							| 
									
										
										
										
											2021-11-23 20:18:09 +01:00
										 |  |  |     'svg2png', | 
					
						
							| 
									
										
										
										
											2021-11-25 10:03:12 +01:00
										 |  |  |     'svg2jinja', | 
					
						
							| 
									
										
										
										
											2021-06-22 13:33:05 +02:00
										 |  |  |   ]); | 
					
						
							| 
									
										
										
										
											2017-02-12 15:06:01 +01:00
										 |  |  | }; |