summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/AbuseFilter/modules/mode-abusefilter.js
blob: f705913be7d985b9dd94265c8d8fa76fc593a53c (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
/* global ace, mw */
ace.define( 'ace/mode/abusefilter_highlight_rules', [ 'require', 'exports', 'module', 'ace/lib/oop', 'ace/mode/text_highlight_rules' ], function ( require, exports, module ) {
	'use strict';

	var oop = require( 'ace/lib/oop' ),
		TextHighlightRules = require( './text_highlight_rules' ).TextHighlightRules,
		AFHighlightRules = function () {

			var keywords = ( mw.config.get( 'aceConfig' ).keywords ),
				constants = ( 'true|false|null' ),
				functions = ( mw.config.get( 'aceConfig' ).functions ),
				variables = ( mw.config.get( 'aceConfig' ).variables ),
				deprecated = ( '' ), // Template for deprecated vars, already registered within ace settings.
				keywordMapper = this.createKeywordMapper(
					{
						'keyword': keywords,
						'support.function': functions,
						'constant.language': constants,
						'variable.language': variables,
						'keyword.deprecated': deprecated
					},
					'identifier'
				),
				decimalInteger = '(?:(?:[1-9]\\d*)|(?:0))',
				hexInteger = '(?:0[xX][\\dA-Fa-f]+)',
				integer = '(?:' + decimalInteger + '|' + hexInteger + ')',
				fraction = '(?:\\.\\d+)',
				intPart = '(?:\\d+)',
				pointFloat = '(?:(?:' + intPart + '?' + fraction + ')|(?:' + intPart + '\\.))',
				floatNumber = '(?:' + pointFloat + ')';

			this.$rules = {
				'start': [ {
					token: 'comment',
					regex: '\\/\\*',
					next: 'comment'
				}, {
					token: 'string', // " string
					regex: '"(?:[^\\\\]|\\\\.)*?"'
				}, {
					token: 'string', // ' string
					regex: "'(?:[^\\\\]|\\\\.)*?'"
				}, {
					token: 'constant.numeric', // float
					regex: floatNumber
				}, {
					token: 'constant.numeric', // integer
					regex: integer + '\\b'
				}, {
					token: keywordMapper,
					regex: '[a-zA-Z_$][a-zA-Z0-9_$]*\\b'
				}, {
					token: 'keyword.operator',
					regex: '\\+|\\-|\\*\\*|\\*|\\/|%|\\^|&|\\||<|>|<=|=>|==|!=|===|!==|:=|=|!'
				}, {
					token: 'paren.lparen',
					regex: '[\\[\\(]'
				}, {
					token: 'paren.rparen',
					regex: '[\\]\\)]'
				}, {
					token: 'text',
					regex: '\\s+|\\w+'
				} ],
				'comment': [ {
					token: 'comment',
					regex: '\\*\\/',
					next: 'start'
				}, {
					defaultToken: 'comment'
				} ]
			};

			this.normalizeRules();
		};

	oop.inherits( AFHighlightRules, TextHighlightRules );

	exports.AFHighlightRules = AFHighlightRules;
} );

ace.define( 'ace/mode/abusefilter', [ 'require', 'exports', 'module', 'ace/lib/oop', 'ace/mode/text', 'ace/mode/abusefilter_highlight_rules' ], function ( require, exports, module ) {
	'use strict';

	var oop = require( 'ace/lib/oop' ),
		TextMode = require( './text' ).Mode,
		AFHighlightRules = require( './abusefilter_highlight_rules' ).AFHighlightRules,
		MatchingBraceOutdent = require( './matching_brace_outdent' ).MatchingBraceOutdent,
		Mode = function () {
			this.HighlightRules = AFHighlightRules;
			this.$behaviour = this.$defaultBehaviour;
			this.$outdent = new MatchingBraceOutdent();
		};
	oop.inherits( Mode, TextMode );

	( function () {
		this.blockComment = {
			start: '/*',
			end: '*/'
		};
		this.getNextLineIndent = function ( state, line, tab ) {
			var indent = this.$getIndent( line );
			return indent;
		};
		this.checkOutdent = function ( state, line, input ) {
			return this.$outdent.checkOutdent( line, input );
		};
		this.autoOutdent = function ( state, doc, row ) {
			this.$outdent.autoOutdent( doc, row );
		};

		this.$id = 'ace/mode/abusefilter';
	} )
		.call( Mode.prototype );

	exports.Mode = Mode;
} );