2014-05-25 23:16:28 +02:00
var _ = require ( 'underscore' ) . _ ,
moment = require ( 'moment' ) ;
2013-10-21 17:40:45 +02:00
var commands = function ( dbot ) {
var commands = {
2014-05-25 22:47:30 +02:00
'~ncount' : function ( event ) {
var chanCounts = { } ,
2014-05-25 23:16:28 +02:00
total = 0 ,
offString = event . params [ 1 ] || null ;
offset = moment ( ) . subtract ( offString , 1 ) . valueOf ( ) || null ;
console . log ( offset ) ;
/ * i f ( ! o f f s e t | | ! o f f s e t . i s V a l i d ( ) ) {
event . reply ( 'Invalid timescale. Try \'week\'' ) ;
return ;
} * /
2014-05-25 22:47:30 +02:00
this . db . scan ( 'notifies' , function ( notify ) {
if ( notify . user == event . rUser . id ) {
2014-05-25 23:16:28 +02:00
if ( ! offString ) {
if ( ! _ . has ( chanCounts , notify . channel ) ) chanCounts [ notify . channel ] = 0 ;
chanCounts [ notify . channel ] ++ ;
total ++ ;
} else {
console . log ( offset ) ;
console . log ( notify . time ) ;
console . log ( ) ;
if ( notify . time > offset ) {
if ( ! _ . has ( chanCounts , notify . channel ) ) chanCounts [ notify . channel ] = 0 ;
chanCounts [ notify . channel ] ++ ;
total ++ ;
}
}
2014-05-25 22:47:30 +02:00
}
} , function ( ) {
var cCounts = _ . chain ( chanCounts )
. pairs ( )
. sortBy ( function ( p ) { return p [ 1 ] ; } )
. reverse ( )
. first ( 10 )
. value ( ) ;
var cString = '' ;
for ( var i = 0 ; i < cCounts . length ; i ++ ) {
cString += cCounts [ i ] [ 0 ] + " (" + cCounts [ i ] [ 1 ] + "), " ;
}
cString = cString . slice ( 0 , - 2 ) ;
2014-05-25 23:16:28 +02:00
if ( offString ) {
event . reply ( dbot . t ( 'timed_notifies' , {
'user' : event . user ,
'count' : total ,
'offString' : offString ,
'cString' : cString
} ) ) ;
} else {
event . reply ( dbot . t ( 'total_notifies' , {
'user' : event . user ,
'count' : total ,
'cString' : cString
} ) ) ;
}
2014-05-25 22:47:30 +02:00
} ) ;
} ,
2014-12-16 03:50:03 +01:00
'~ustatus' : function ( event ) {
var user = event . input [ 1 ] ;
dbot . api . users . resolveUser ( event . server , user , function ( err , user ) {
if ( user ) {
var ban = null ,
quiet = 0
warn = 0 ;
// i'll fix it later
dbot . modules . report . db . search ( 'notifies' , {
'server' : event . server
} , function ( notify ) {
if ( notify . message . match ( 'banned ' + user . primaryNick ) || notify . message . match ( 'issued a warning to ' + user . primaryNick ) || notify . message . match ( 'has quieted ' + user . primaryNick ) ) {
if ( notify . type == 'ban' ) {
ban = notify . time ;
} else if ( notify . type == 'quiet' ) {
quiet ++ ;
} else if ( notify . type == 'warn' ) {
warn ++ ;
}
}
} , function ( ) {
if ( ban ) {
event . reply ( user . primaryNick + ' was banned on ' + new Date ( ban ) . toUTCString ( ) ) ;
} else if ( quiet != 0 || warn != 0 ) {
event . reply ( user . primaryNick + ' has been warned ' + warn + ' times, and quieted ' + quiet + ' times.' ) ;
} else {
event . reply ( user . primaryNick + ' has no record.' ) ;
}
} ) ;
} else {
event . reply ( 'never heard of em' ) ;
}
} . bind ( this ) ) ;
} ,
2013-10-21 17:40:45 +02:00
'~clearmissing' : function ( event ) {
if ( _ . has ( this . pending , event . rUser . id ) ) {
var count = this . pending [ event . rUser . id ] . length ;
delete this . pending [ event . rUser . id ] ;
event . reply ( dbot . t ( 'cleared_notifies' , { 'count' : count } ) ) ;
} else {
event . reply ( dbot . t ( 'no_missed_notifies' ) ) ;
}
} ,
'~report' : function ( event ) {
2014-09-04 17:25:21 +02:00
var channelName = ( event . input [ 1 ] || event . channel . toString ( ) ) ,
2013-10-21 17:40:45 +02:00
nick = event . input [ 2 ] ,
reason = event . input [ 3 ] . trim ( ) ;
2014-09-04 17:25:21 +02:00
channelName = channelName . trim ( ) ;
2013-10-21 17:40:45 +02:00
2014-02-04 01:58:09 +01:00
if ( channelName == event . user ) {
channelName = dbot . config . servers [ event . server ] . admin _channel ;
}
2013-10-21 17:40:45 +02:00
if ( reason . charAt ( reason . length - 1 ) != '.' ) reason += '.' ;
2014-09-04 16:54:49 +02:00
dbot . api . users . resolveUser ( event . server , nick , function ( err , reportee ) {
2013-10-21 17:40:45 +02:00
if ( _ . has ( event . allChannels , channelName ) ) {
if ( reportee ) {
this . api . notify ( 'report' , event . server , event . rUser ,
channelName , dbot . t ( 'report' , {
'reporter' : event . rUser . primaryNick ,
'reportee' : nick ,
'reason' : reason
} ) ) ;
event . reply ( dbot . t ( 'reported' , { 'reported' : nick } ) ) ;
} else {
event . reply ( dbot . t ( 'user_not_found' , {
'reported' : nick ,
'channel' : channelName
} ) ) ;
}
} else {
event . reply ( dbot . t ( 'not_in_channel' , { 'channel' : channelName } ) ) ;
}
} . bind ( this ) ) ;
} ,
'~notify' : function ( event ) {
var channelName = event . input [ 1 ] ,
message = event . input [ 2 ] ;
if ( _ . has ( event . allChannels , channelName ) ) {
if ( this . config . firstHost ) {
var first = message . split ( ' ' ) [ 0 ] ;
2014-09-04 16:54:49 +02:00
dbot . api . users . resolveUser ( event . server , first , function ( err , user ) {
2014-01-06 19:05:44 +01:00
if ( user && _ . include ( this . config . host _lookup , channelName ) ) {
2013-10-21 17:40:45 +02:00
dbot . api . nickserv . getUserHost ( event . server , first , function ( host ) {
message = message . replace ( first , first + ' [' + host + ']' ) ;
this . api . notify ( 'notify' , event . server , event . rUser , channelName , message ) ;
} . bind ( this ) ) ;
} else {
this . api . notify ( 'notify' , event . server , event . rUser , channelName , message ) ;
}
} . bind ( this ) ) ;
} else {
this . api . notify ( 'notify' , event . server , event . rUser , channelName , message ) ;
}
event . reply ( dbot . t ( 'notified' , {
'user' : event . user ,
'channel' : channelName
} ) ) ;
} else {
event . reply ( dbot . t ( 'not_in_channel' , { 'channel' : channelName } ) ) ;
}
} ,
'~nunsub' : function ( event ) {
2014-09-15 23:12:30 +02:00
var cName = event . input [ 1 ] ,
cId = event . input [ 1 ] + '.' + event . server ;
2013-10-21 17:40:45 +02:00
2014-09-15 23:12:30 +02:00
if ( _ . has ( dbot . instance . connections [ event . server ] . channels , cName ) ) {
this . db . read ( 'nunsubs' , cId , function ( err , nunsubs ) {
if ( ! nunsubs ) {
var nunsubs = {
'id' : cId ,
'users' : [ ]
2013-10-21 17:40:45 +02:00
}
2014-09-15 23:12:30 +02:00
}
if ( ! _ . include ( nunsubs , event . rUser . id ) ) {
nunsubs . users . push ( event . rUser . id ) ;
this . db . save ( 'nunsubs' , cId , nunsubs , function ( ) {
var reply = dbot . t ( 'nunsubbed' , { 'cName' : cName } )
if ( _ . has ( this . config . chan _redirs , cName ) ) {
reply += dbot . t ( 'n_also_found' , { 'afaName' : this . config . chan _redirs [ cName ] } ) ;
}
event . reply ( reply ) ;
} . bind ( this ) ) ;
} else {
event . reply ( dbot . t ( 'already_nunsubbed' , { 'cName' : cName } ) ) ;
}
} . bind ( this ) ) ;
} else {
event . reply ( 'Channel not known.' ) ;
}
2013-10-21 17:40:45 +02:00
} ,
'~ununsub' : function ( event ) {
2014-09-15 23:12:30 +02:00
var cName = event . input [ 1 ] ,
cId = event . input [ 1 ] + '.' + event . server ;
if ( _ . has ( dbot . instance . connections [ event . server ] . channels , cName ) ) {
this . db . read ( 'nunsubs' , cId , function ( err , nunsubs ) {
if ( ! _ . isUndefined ( nunsubs ) && _ . include ( nunsubs . users , event . rUser . id ) ) {
nunsubs . users = _ . without ( nunsubs . users , event . rUser . id ) ;
this . db . save ( 'nunsubs' , cId , nunsubs , function ( ) {
event . reply ( dbot . t ( 'ununsubbed' , { 'cName' : cName } ) ) ;
} ) ;
} else {
event . reply ( dbot . t ( 'not_nunsubbed' , { 'cName' : cName } ) ) ;
}
} . bind ( this ) ) ;
} else {
event . reply ( 'Channel not known.' ) ;
}
2013-10-21 17:40:45 +02:00
}
} ;
2014-02-04 01:58:09 +01:00
commands [ '~report' ] . regex = /^report (#[^ ]+ )?([^ ]+) (.*)$/ ;
2013-12-29 19:38:24 +01:00
commands [ '~notify' ] . regex = [ /^notify ([^ ]+) (.+)$/ , 3 ] ;
commands [ '~nunsub' ] . regex = [ /^nunsub ([^ ]+)$/ , 2 ] ;
commands [ '~ununsub' ] . regex = [ /^ununsub ([^ ]+)$/ , 2 ] ;
2014-12-16 03:50:03 +01:00
commands [ '~ustatus' ] . regex = [ /^ustatus ([^ ]+)$/ , 2 ] ;
2013-10-21 17:40:45 +02:00
return commands ;
} ;
exports . fetch = function ( dbot ) {
return commands ( dbot ) ;
} ;