2014-11-24 17:13:59 +01:00
|
|
|
import re
|
|
|
|
|
|
|
|
from iwla import IWLA
|
|
|
|
from iplugin import IPlugin
|
|
|
|
|
|
|
|
# Basic rule to detect robots
|
|
|
|
|
|
|
|
class IWLAPreAnalysisSoutade(IPlugin):
|
|
|
|
|
2014-11-24 21:37:37 +01:00
|
|
|
def __init__(self, iwla, conf):
|
|
|
|
super(IWLAPreAnalysisSoutade, self).__init__(iwla, conf)
|
2014-11-24 17:13:59 +01:00
|
|
|
self.API_VERSION = 1
|
|
|
|
|
|
|
|
def load(self):
|
|
|
|
# Remove logo from indefero
|
|
|
|
self.logo_re = re.compile(r'^.+/logo/$')
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def hook(self, iwla):
|
|
|
|
hits = iwla.getCurrentVisists()
|
|
|
|
|
|
|
|
for k in hits.keys():
|
|
|
|
super_hit = hits[k]
|
|
|
|
|
|
|
|
if super_hit['robot']: continue
|
|
|
|
|
|
|
|
for p in super_hit['requests']:
|
|
|
|
if not p['is_page']: continue
|
|
|
|
if int(p['status']) != 200: continue
|
|
|
|
if p['time_decoded'].tm_mday != super_hit['last_access'].tm_mday: continue
|
|
|
|
if self.logo_re.match(p['extract_request']['extract_uri']):
|
|
|
|
p['is_page'] = False
|
|
|
|
super_hit['viewed_pages'] -= 1
|
|
|
|
super_hit['viewed_hits'] += 1
|