view pyikriam/ikariam.py @ 225:f3502833be7c

add a gmail to get confirme url address.
author kevin@tombear.tombears.com
date Tue, 04 Nov 2008 23:32:06 +0800
parents 5fa938cbe058
children 60c4b4b78a01
line wrap: on
line source

from lazy.www import c
from lconf import LoadConfigfile
import cookielib
import os
import urllib2
import urllib
from utils import dyna_prog, decorator
from lxml import etree
from StringIO import StringIO

class fake_moz(object):
    __metaclass__ = decorator

    def __init__(self,headers=None):
        fakeheaders=[('User-agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-TW; rv:1.8.1.12pre) Gecko/20071220 BonEcho/2.0.0.12pre')]
        if headers:
            fakeheaders=fakeheaders+headers
        super(fake_moz, self).__init__()
        cookie_jar = cookielib.LWPCookieJar()
        cookie_proc = urllib2.HTTPCookieProcessor(cookie_jar)
        opener = urllib2.build_opener(cookie_proc)
        opener.addheaders = fakeheaders 
        fake_moz.set_backend(self, opener)
        self.cookie_jar = cookie_jar
        pass
    pass

class Ikariam:

    cities = {}
    COOKIEFILE = '/tmp/ikariam.lwp'

    def __init__(self):
        self.browser = fake_moz()
        self._cookie_jar = self.browser.cookie_jar

        if os.path.isfile(self.COOKIEFILE):
            self._cookie_jar.load(self.COOKIEFILE)
            pass
 
        urllib2.install_opener(self.browser)
	self.confdata=LoadConfigfile().cd
        self.baseurl='http://'+self.confdata['server']

        self.login()
        pass

    def login(self):     
	print "login to %s...." % self.confdata['server']
        params = {"universe":self.confdata['server'], \
        "name":self.confdata['user'], \
        "password":self.confdata['pass']}
        ret = c(self.baseurl+'/index.php?action=loginAvatar&function=login').get(params).get_content()
        self._cookie_jar.save(self.COOKIEFILE)
        pass

    def logout(self):
	print "logut from %s...." % self.confdata['server']
        c(self.baseurl+'/index.php?action=loginAvatar&function=logout')
        os.remove(self.COOKIEFILE)
        pass
    
    ##
    # \note We can cache data with decorator 'dynamic programming'.
    #
    @dyna_prog
    def city(self, id):
        return IkariamCity(id=id, core=self)
    pass

class IkariamCity:
    data_patterns = {
        'gold': 'value_gold',
        'inhabitants': 'value_inhabitants',
        'wood': 'value_wood',
        'wine': 'value_wine',
        'marble': 'value_marble',
        'crystal': 'value_crystal',
        'sulfur': 'value_sulfur'
        }
    def __init__(self, id, core ):
        self.core = core
        self.id = id
        self.params = {'view':'city','id':id}
        
    def sync(self):
        page = c(self.core.baseurl).get(self.params).get_content()
        parser = etree.HTMLParser(encoding='utf8')
        page_dom = etree.parse(StringIO(page), parser)

        xpath_globalinfo = '/descendant::*[@id=\'%s\']/text()'
        for name, tag_id in self.data_patterns.items():
            xpath = xpath_globalinfo % (tag_id)
            value = page_dom.xpath(xpath)[0]
            setattr(self, name, value)
            pass
        
        xpath_mainview = '/descendant::div[@id=\'mainview\']/ul/li'
        pos_doms = page_dom.xpath(xpath_mainview)
        positions = [self._mk_position(pos_dom, idx)
                     for idx, pos_dom in enumerate(pos_doms)]
        self.positions = positions
        pass

    def _mk_position(self, pos_dom, idx):
        import buildings

        build_type = pos_dom.get('class').split()[-1].lower()
        if hasattr(buildings, build_type):
            clz = getattr(buildings, build_type)
            if issubclass(clz, buildings.position):
                building = clz(self.id, idx, self.core.baseurl)
                return building
            pass
        return build_type
    pass