Beispiel #1
0
class FixCv(BaseTask):
    def __init__(self, channel, thread_cnt=5):
        BaseTask.__init__(self, "fixbug", thread_cnt=thread_cnt)
        self.chanel = channel
        self.bugfix = BugFixDispatcher(channel, self._queue)
        self.dispatcher = lambda q: self.bugfix.dispatcher()

        self.etl_runner = ETLRunner(channel)

    def run_job(self, job):
        if not isinstance(job, dict):
            return

        jobExpSalary = job.get('jobExp',{}).get('expSalary', '').encode('utf-8')

        if not jobExpSalary:
            return

        find = re.search(r'(\d+)', jobExpSalary)
        if find:
            return
        else:

            if '面议' in jobExpSalary:
                print job.get('cvId'), " ==> ", "面议, 略过"
                return

            page_index = self.get_page_index(job.get('cvId', ''))
            print job.get('cvId'), " ==> ", jobExpSalary
            self.etl_runner.run(page_index)
            print "SUCESS COPIED %s" % job.get('cvId')

    def get_page_index(self, cvId):

        doc = self.bugfix.cv_page_store.get_one(cvId)

        pagecontent = self.bugfix.getPageContent(doc['pageContentPath'],'remote')
        if not pagecontent:
            print "cvId : %s, pagecontent null" % cvId

        job = {
            'indexUrl': doc['indexUrl'],
            'pagecontent': pagecontent,
            'updateTime':doc['updateTime'],
            'contentSign':doc['contentSign'],
        }

        return job
Beispiel #2
0
    def __init__(self, channel, thread_cnt=5):
        BaseTask.__init__(self, "fixbug", thread_cnt=thread_cnt)
        self.chanel = channel
        self.bugfix = BugFixDispatcher(channel, self._queue)
        self.dispatcher = lambda q: self.bugfix.dispatcher()

        self.etl_runner = ETLRunner(channel)