Skip to content

Commit 55f5a9d

Browse files
committed
Patch for several issues
Delinting using http://www.coffeelint.org/ Adding throttle parameter to config (but set to false) to highlight that it exists Adding tripple mustaches to deal with issue #116 Adding namespace logic to anon and config to support issue #118 This allows filtering out edits in talk namespaces etc, if namespace is left out of config all namespaces are accepted Added logic to disregard @metadata entries in ranges to support issue #115 this allows source, dates etc. to be added to the ranges
1 parent 00b4aa4 commit 55f5a9d

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

anon.coffee

+5-1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ getConfig = (path) ->
5151
for account in config.accounts
5252
if typeof account.ranges == 'string'
5353
account.ranges = loadJson account.ranges
54+
delete account.ranges['@metadata']
5455
console.log "loaded config from", path
5556
config
5657

@@ -100,6 +101,8 @@ inspect = (account, edit) ->
100101
and account.whitelist[edit.wikipedia][edit.page]
101102
status = getStatus edit, edit.user, account.template
102103
tweet account, status, edit
104+
else if account.namespaces? and \
105+
(edit.namespace not in account.namespaces) then
103106
else if account.ranges and edit.anonymous
104107
for name, ranges of account.ranges
105108
if isIpInAnyRange edit.user, ranges
@@ -119,7 +122,8 @@ canTweet = (account, error) ->
119122
twitter.get 'search/tweets', q: 'cats', (err, data, response) ->
120123
if err
121124
error err + " for access_token " + a
122-
else if not response.headers['x-access-level'] or response.headers['x-access-level'].substring(0,10) != 'read-write'
125+
else if not response.headers['x-access-level'] or \
126+
response.headers['x-access-level'].substring(0,10) != 'read-write'
123127
error "no read-write permission for access token " + a
124128
else
125129
error null

config.json.template

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"consumer_secret": "",
77
"access_token": "",
88
"access_token_secret": "",
9-
"template": "{{page}} Wikipedia article edited anonymously from {{name}} {{&url}}",
9+
"template": "{{{page}}} Wikipedia article edited anonymously from {{{name}}} {{&url}}",
1010
"ranges": {
1111
"US House of Representatives": [
1212
"143.231.0.0/16",
@@ -20,6 +20,8 @@
2020
"156.33.0.0/16"
2121
]
2222
},
23+
"throttle": false,
24+
"namespaces": ["article", "file", "media", "main"],
2325
"whitelist": {
2426
"English Wikipedia": {
2527
"Sherrod Brown": true,

0 commit comments

Comments
 (0)