Esempio n. 1
0
 def change_one_url_status(self, u_id, status):
     with session_scope() as s:
         obj = s.query(Urls).filter(
             Urls.id == u_id
         ).first()
         obj.status = status
         s.flush()
Esempio n. 2
0
 def add_one_cheater(self, name, b_id, u_id, pub_time):
     with session_scope() as s:
         ch_ex = self.get_one_cheater(name, b_id)
         if not ch_ex:
             ch = Cheaters(name=name, b_id=b_id, u_id=u_id, created=Utils.now(
                 return_datetime=False), pub_time=pub_time)
             s.add(ch)
             return ch
         return ch_ex
Esempio n. 3
0
    def get_total_status(self):
        with session_scope() as s:
            total = s.query(func.count(Cheaters.id)).scalar()

            last_pub_time, url_obj = s.query(Cheaters.pub_time, Urls).join(
                Urls,
                Urls.id == Cheaters.u_id
            ).group_by(
                Cheaters.pub_time
            ).order_by(
                Cheaters.pub_time.desc()
            ).limit(1).first()
            # print(total, last_pub_time, url_obj)
            return total, last_pub_time, url_obj
Esempio n. 4
0
    def add_one_url(self, url, title, pub_time):
        with session_scope() as s:
            url_obj = self.get_one_url(url)
            if url_obj:
                return url_obj

            url_obj = Urls(
                url=url,
                title=title,
                created=Utils.now(return_datetime=False),
                pub_time=pub_time
            )
            s.add(url_obj)
            return url_obj
Esempio n. 5
0
    def get_cheaters(self, key):
        with session_scope() as s:
            chs_urls = s.query(Cheaters, Urls).join(
                Urls,
                Urls.id == Cheaters.u_id
            )
            if key != '*':
                chs_urls = chs_urls.filter(
                    or_(
                        Cheaters.name.like('%' + key + '%'),
                        Cheaters.b_id.like('%' + key + '%'),
                    )
                )
            chs_urls = chs_urls.order_by(
                Cheaters.pub_time.desc()
            ).limit(50).all()

            return self.format_cheater(chs_urls)
Esempio n. 6
0
 def get_one_url(self, url):
     with session_scope() as s:
         return s.query(Urls).filter(
             Urls.url == url
         ).first()
Esempio n. 7
0
 def get_last_pub_time_cheaters(self, pub_time):
     with session_scope() as s:
         return s.query(Cheaters).filter(
             Cheaters.pub_time >= '%s 00:00:00' % pub_time,
             Cheaters.pub_time <= '%s 23:59:59' % pub_time,
         ).limit(100).all()
Esempio n. 8
0
 def get_one_cheater(self, name, b_id):
     with session_scope() as s:
         return s.query(Cheaters).filter(
             Cheaters.name == name,
             Cheaters.b_id == b_id
         ).first()