Cleanup misc module and unescape user names

This commit is contained in:
rnhmjoj 2016-04-14 16:08:34 +02:00
parent 9fb05bea2b
commit a9f26d9cc9

View File

@ -19,6 +19,7 @@
# #
# Author: # Author:
# Enrico Fasoli (fazo96) # Enrico Fasoli (fazo96)
# Michele Guerini Rocco (rnhmjoj)
# Ravinder Pal Singh # Ravinder Pal Singh
# Leonardo Magon # Leonardo Magon
# Gabriele Della Torre # Gabriele Della Torre
@ -27,65 +28,100 @@
module.exports = (robot) -> module.exports = (robot) ->
# Ringraziamenti # replies
ringr = ['prego :)', "non c'è di che", 'faccio solo il mio lavoro', 'no problemo amigo', 'non fate complimenti ;)'] confirm = ['si, ci sono', 'sono qui', 'si, che c\'è', 'eccomi']
complim = ['bravo', 'grande', 'grandissimo', 'bella' ] complim = ['bravo', 'grande', 'grandissimo', 'bella' ]
stato = ['tutto bene zio' , 'bene dai' , 'sono triste', 'si va avanti'] status = ['tutto bene zio' , 'bene dai' , 'sono triste', 'si va avanti']
risata = ['ahahahha!!!', 'ahahhaha!\nNO!', 'Bella questa! Ahahahah', 'NO!', 'Non fa ridere', 'Non è divertente...'] laugh = ['ahahahha!!!', 'ahahhaha!\nNO!', 'Bella questa! Ahahahah',
grazie = (res) -> 'NO!', 'Non fa ridere', 'Non è divertente...']
robot.brain.set 'ringraziato', (robot.brain.get('ringraziato') or 0) + 1 thank = ['prego :)', "non c'è di che", 'faccio solo il mio lavoro',
res.send res.random ringr 'no problemo amigo', 'non fate complimenti ;)']
robot.hear /(?:grazie|bravo) (?:asjon|assa|assion(?:i|e))/i, grazie
robot.respond /grazie/i, grazie
robot.respond /ringraziamenti/i, (res) ->
res.send 'voi teneroni mi avete ringraziato ' + (robot.brain.get('ringraziato') or 0) + ' volte :)'
# Richiami sender = (res) ->
res.message.user.name.replace /_/g, ' '
welcome = (res) ->
current = robot.brain.get 'ringraziato'
robot.brain.set 'ringraziato', (current or 0) + 1
res.send res.random thank
# thank asjon
robot.hear /(?:grazie|bravo) (?:asjon|assa|assion(?:i|e))/i, welcome
robot.respond /grazie/i, welcome
robot.respond /ringraziamenti/i, (res) ->
count = robot.brain.get 'ringraziato'
if not count?
res.send 'non... mi... avete mai ringraziato :('
else if count is 1
res.send 'mi avete ringraziato solo una volta, ingrati'
res.send 'con tutto quello che faccio per voi...'
else
res.send "mi avete ringraziato #{count} volte!"
# how you called asjon
robot.respond /sei (?:(?:proprio|davvero|veramente|molto|un|una) )?(.+)/i, (res) -> robot.respond /sei (?:(?:proprio|davvero|veramente|molto|un|una) )?(.+)/i, (res) ->
nomi = robot.brain.get('nomi') or {} names = (robot.brain.get 'nomi') or {}
nomi[res.match[1]] ?= 0 names[res.match[1]] ?= 0
nomi[res.match[1]] += 1 names[res.match[1]] += 1
robot.brain.set 'nomi', nomi robot.brain.set 'nomi', names
robot.respond /come ti hanno chiamato/i, (res) -> robot.respond /come ti hanno chiamato/i, (res) ->
a = robot.brain.get('nomi') or {} names = robot.brain.get 'nomi'
l = [] if not names?
for i of a return res.send 'nessuno mi ha mai chiamato'
l.push a[i]+' volt'+(if a[i] is 1 then 'a' else 'e')+' '+i text = []
res.send 'mi hanno chiamato '+l.join(', ') for i of names
text.push "#{names[i]} volt#{if names[i] is 1 then 'a' else 'e'} #{i}"
res.send 'mi hanno chiamato ' + text.join ', '
# memes # memes
robot.respond /teq/i, (res) -> robot.respond /teq/i, (res) ->
res.send 'http://i3.kym-cdn.com/photos/images/newsfeed/000/353/279/e31.jpg' res.send 'http://i3.kym-cdn.com/photos/images/newsfeed/000/353/279/e31.jpg'
# Altro # other
robot.respond /saluta (.+)$/i, (res) -> robot.respond /saluta (.+)$/i, (res) ->
res.send 'ciao ' + res.match[1] res.send 'ciao ' + res.match[1]
robot.respond /spaca botilia/i, (res) -> robot.respond /spaca botilia/i, (res) ->
res.send 'AMAZO FAMILIA' res.send 'AMAZO FAMILIA'
robot.respond /come va/i, (res)-> robot.respond /come va/i, (res)->
res.send res.random(stato)+'. tu?' res.send (res.random status) + ', tu?'
robot.respond /ridi/i, (res)-> robot.respond /ridi/i, (res)->
res.send res.random risata res.send res.random laugh
robot.hear /(^|.+ )gg(?!.*wp)( .+)?$/i, (res)-> robot.hear /(^|.+ )gg(?!.*wp)( .+)?$/i, (res)->
res.send 'wp' res.send 'wp'
robot.hear /^bravo (\w+).?$/i, (res)-> robot.hear /^bravo (\w+).?$/i, (res)->
unless res.match[1].match /asjon|assa|assion|assioni(?:i|e)/i unless res.match[1].match /asjon|assa|assion|assioni(?:i|e)/i
res.send res.random(complim)+' '+res.match[1] res.send (res.random complim) + ' ' + res.match[1]
robot.respond /dove sei/i, (res) -> robot.respond /dove sei/i, (res) ->
robot.http('http://canihazip.com/s') robot.http('http://canihazip.com/s')
.get() (err, r, body) -> .get() (err, r, body) ->
res.send 'dovrei essere a ' + body res.send 'dovrei essere a ' + body
robot.respond /con chi stai parlando/i, (res) -> robot.respond /con chi stai parlando/i, (res) ->
if res.message.user.name is res.message.room if res.message.user.name is res.message.room
res.send 'sto parlando con te, '+res.message.user.name res.send "sto parlando con te, #{sender res}"
else else
res.send 'sto parlando in '+res.message.room+', '+res.message.user.name res.send "sto parlando in #{res.message.room}, #{sender res}"
robot.respond /ti amo/i, (res) -> robot.respond /ti amo/i, (res) ->
res.send 'anche io ti amo '+(res.message.user.name+' ' or '')+'<3' res.send 'anche io ti amo ' + sender res
robot.respond /ti odio/i, (res) -> robot.respond /ti odio/i, (res) ->
res.send 'ma cosa ti ho fatto di male '+(res.message.user.name or '')+'? :(' res.message.user.name = "Michele_Guerini_Rocco"
res.send "ma cosa ti ho fatto di male #{sender res}? :("
robot.hear /(?:ehi|ciao|we|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))/i, (res) -> robot.hear /(?:ehi|ciao|we|(?:bella(?: li)?)) (?:asjon|assa|assion(?:i|e))/i, (res) ->
saluti = ['ciao', 'bella', 'è arrivato', 'eccolooo', 'dimmi', 'weeee', 'ehilà'] greet = ['ciao', 'bella', 'eccolooo',
res.send res.random(saluti)+' '+res.message.user.name+'!' 'dimmi', 'weeee', 'ehilà']
res.send "#{res.random greet} #{sender res}"
robot.respond /(ci sei)?\?/i, (res) -> robot.respond /(ci sei)?\?/i, (res) ->
res.send res.random ['si, ci sono', 'sono qui', 'si, che c\'è', 'eccomi'] res.send res.random confirm