summaryrefslogtreecommitdiffstats
path: root/.graveyard/punani/index.py
blob: ff483d370227e89d3937f997833b6e705b2f0c3e (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
#!/usr/bin/python

import web
import json
import os
import sys
from bot import *
urls = ( 
  '/', 'Index',
  '/dump','Dump',
#  '/reload','Reload',
  '/(.+)/(.+)', 'ArchFinder',
)


PDB_FILE=os.path.dirname(os.path.abspath(sys.argv[0])) + "/db/punani"
PORT="9111"
CHANNEL="#retiolum"
f = open(PDB_FILE)
pdb = json.load(f)
f.close()
polite = os.environ.get("polite",False)
from socket import *

def local_announce(msg):
  s = socket(AF_INET,SOCK_STREAM)
  s.connect(('localhost',5555))
  s.send(msg)
  s.close()
class Index:
  def GET(self):
    ret = """Welcome to the Tightnani API<br/>
Retrieve a package name for your distribution with: /PACKER/PKG"""
    return ret

class Reload:
  def GET(self):
    f = open(PDB_FILE)
    pdb= json.load(f)
    f.close()
    return "DB reloaded"


class Dump:
  def GET(self):
    return json.dumps(pdb,sort_keys=True,indent=4)

class ArchFinder:
  def GET(self,request_packer,package):
    if not request_packer or not package: web.BadRequest()
    else:
      packer = pdb['packer-symlinks'].get(request_packer,request_packer) #try to resolve similar packers
      super_packer = pdb['super-packer'].get(packer,'')
      ret = pdb.get(package,{}).get(packer,False)
      ret = ret if ret else pdb.get(package,{}).get(super_packer,False)

      if not ret:
        try:
          if polite:
            local_announce("Client `%s` asked for the tool `%s` in packer `%s` but i do not have it in my Database. Please update me!" %(web.ctx.ip, package,packer))
          else:
            local_announce("404: no %s/%s for %s" % (request_packer,package,gethostbyaddr(web.ctx.ip)[0]))
        except Exception,e:
          print ("Got Exception %s: %s" % (str(Exception),(e)))
        web.NotFound()
        return "not found. i'm so sorry :("
      else: return ret



if __name__ == "__main__":
  import sys 
  # Set IRC connection parameters.
  irc_servers = [('supernode.retiolum', 6667)]
  irc_channels = [('#retiolum','')]

  # Prepare and start IRC bot.
  bot = PunaniBot(irc_servers, irc_channels)
  t = Thread(target=bot.start)
  t.daemon = True
  t.start()
  announce = bot.say

  receiver = PunaniReceiveServer()
  t = Thread(target=receiver.serve_forever)
  t.daemon = True
  t.start()

  t = Thread(target=process_queue,args=(announce,receiver.queue))
  t.daemon = True
  t.start()


  sys.argv.append(PORT)
  app = web.application(urls,globals())
  app.internalerror = web.debugerror
  app.run()