Exemple #1
0
 def get_by_wiki(self, citiao):
     tt = CabUser2Reply.select().where(CabUser2Reply.title == citiao).count()
     if tt == 0:
         return None
     else:
         self.update_view_count(citiao)
         return CabUser2Reply.get(CabUser2Reply.title == citiao)
Exemple #2
0
 def get_by_wiki(self, citiao):
     tt = CabUser2Reply.select().where(
         CabUser2Reply.title == citiao).count()
     if tt == 0:
         return None
     else:
         self.update_view_count(citiao)
         return CabUser2Reply.get(CabUser2Reply.title == citiao)
Exemple #3
0
 def query_cat_random(self, cat_id, num=6):
     if cat_id == '':
         return self.query_random(num)
     if config.dbtype == 1 or config.dbtype == 3:
         return CabUser2Reply.select().join(CabPost2Catalog).where(CabPost2Catalog.catalog == cat_id).order_by(
             peewee.fn.Random()).limit(num)
     elif config.dbtype == 2:
         return CabUser2Reply.select().join(CabPost2Catalog).where(CabPost2Catalog.catalog == cat_id).order_by(
             peewee.fn.Rand()).limit(num)
Exemple #4
0
 def query_cat_random(self, cat_id, num=6):
     if cat_id == '':
         return self.query_random(num)
     if config.dbtype == 1 or config.dbtype == 3:
         return CabUser2Reply.select().join(CabPost2Catalog).where(
             CabPost2Catalog.catalog == cat_id).order_by(
                 peewee.fn.Random()).limit(num)
     elif config.dbtype == 2:
         return CabUser2Reply.select().join(CabPost2Catalog).where(
             CabPost2Catalog.catalog == cat_id).order_by(
                 peewee.fn.Rand()).limit(num)
Exemple #5
0
 def get_previous_record(self, in_uid):
     current_rec = self.get_by_id(in_uid)
     query = CabUser2Reply.select().where(CabUser2Reply.time_update > current_rec.time_update).order_by(
         CabUser2Reply.time_update)
     if query.count() == 0:
         return None
     else:
         return query.get()
Exemple #6
0
 def get_previous_record(self, in_uid):
     current_rec = self.get_by_id(in_uid)
     query = CabUser2Reply.select().where(
         CabUser2Reply.time_update > current_rec.time_update).order_by(
             CabUser2Reply.time_update)
     if query.count() == 0:
         return None
     else:
         return query.get()
Exemple #7
0
    def insert_data(self, user_id, reply_id):

        record = CabUser2Reply.select().where(
            (CabUser2Reply.reply_id == reply_id) & ( CabUser2Reply.user_id == user_id ))

        if record.count() > 0:
            pass
            return (False)
        else:
            entry = CabUser2Reply.create(
                uid=tools.get_uuid(),
                reply_id=reply_id,
                user_id=user_id,
                timestamp=time.time(),
            )
            cur_count = CabUser2Reply.select().where(CabUser2Reply.reply_id == reply_id).count()

            return cur_count
Exemple #8
0
    def insert_data(self, user_id, reply_id):

        record = CabUser2Reply.select().where(
            (CabUser2Reply.reply_id == reply_id)
            & (CabUser2Reply.user_id == user_id))

        if record.count() > 0:
            pass
            return (False)
        else:
            entry = CabUser2Reply.create(
                uid=tools.get_uuid(),
                reply_id=reply_id,
                user_id=user_id,
                timestamp=time.time(),
            )
            cur_count = CabUser2Reply.select().where(
                CabUser2Reply.reply_id == reply_id).count()

            return cur_count
Exemple #9
0
    def delete(self, del_id):

        try:
            del_count = CabReply.delete().where(CabReply.uid == del_id)
            del_count.execute()

            del_count2 = CabUser2Reply.delete().where(CabUser2Reply.reply_id == del_id)
            del_count2.execute()
            return True
        except:
            return False
Exemple #10
0
    def update(self, uid, post_data, update_time=False):

        if 'id_spec' in post_data:
            id_spec = post_data['id_spec'][0]
        else:
            id_spec = 0

        if 'src_type' in post_data and post_data['src_type'][0] == '1':
            cnt_html = tools.rst2html(post_data['cnt_md'][0])
        else:
            cnt_html = tools.markdown2html(post_data['cnt_md'][0])

        if update_time == True:
            entry = CabUser2Reply.update(
                title=post_data['title'][0],
                date=datetime.datetime.now(),
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                time_update=time.time(),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if
                ('src_type' in post_data) else 0).where(
                    CabUser2Reply.uid == uid)
        else:
            entry = CabUser2Reply.update(
                title=post_data['title'][0],
                # date=datetime.datetime.now(),
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                # time_update=time.time(),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if
                ('src_type' in post_data) else 0).where(
                    CabUser2Reply.uid == uid)
        entry.execute()
Exemple #11
0
    def delete(self, del_id):

        try:
            del_count = CabReply.delete().where(CabReply.uid == del_id)
            del_count.execute()

            del_count2 = CabUser2Reply.delete().where(
                CabUser2Reply.reply_id == del_id)
            del_count2.execute()
            return True
        except:
            return False
Exemple #12
0
    def update(self, uid, post_data, update_time=False):

        if 'id_spec' in post_data:
            id_spec = post_data['id_spec'][0]
        else:
            id_spec = 0

        if 'src_type' in post_data and post_data['src_type'][0] == '1':
            cnt_html = tools.rst2html(post_data['cnt_md'][0])
        else:
            cnt_html = tools.markdown2html(post_data['cnt_md'][0])

        if update_time == True:
            entry = CabUser2Reply.update(
                title=post_data['title'][0],
                date=datetime.datetime.now(),
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                time_update=time.time(),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if ('src_type' in post_data) else 0
            ).where(CabUser2Reply.uid == uid)
        else:
            entry = CabUser2Reply.update(
                title=post_data['title'][0],
                # date=datetime.datetime.now(),
                cnt_html=cnt_html,
                user_name=post_data['user_name'],
                cnt_md=tornado.escape.xhtml_escape(post_data['cnt_md'][0]),
                # time_update=time.time(),
                id_spec=id_spec,
                logo=post_data['logo'][0],
                keywords=post_data['keywords'][0],
                src_type=post_data['src_type'][0] if ('src_type' in post_data) else 0
            ).where(CabUser2Reply.uid == uid)
        entry.execute()
Exemple #13
0
 def get_by_id(self, in_uid):
     recs = CabUser2Reply.select().where(
         CabUser2Reply.post_id == in_uid).order_by(
             CabUser2Reply.timestamp.desc())
     return recs
Exemple #14
0
 def update_keywords(self, uid, inkeywords):
     entry = CabUser2Reply.update(keywords=inkeywords).where(CabUser2Reply.uid == uid)
     entry.execute()
Exemple #15
0
 def update_view_count(self, citiao):
     entry = CabUser2Reply.update(view_count=CabUser2Reply.view_count + 1).where(CabUser2Reply.title == citiao)
     entry.execute()
Exemple #16
0
 def query_recent_most(self, num=8, recent=30):
     time_that = int(time.time()) - recent * 24 * 3600
     return CabUser2Reply.select().where(CabUser2Reply.time_update > time_that).order_by(
         CabUser2Reply.view_count.desc()).limit(num)
Exemple #17
0
 def query_cat_recent(self, cat_id, num=8):
     return CabUser2Reply.select().join(CabPost2Catalog).where(CabPost2Catalog.catalog == cat_id).order_by(
         CabUser2Reply.time_update.desc()).limit(num)
Exemple #18
0
 def query_recent(self, num=8):
     return CabUser2Reply.select().order_by(CabUser2Reply.time_update.desc()).limit(num)
Exemple #19
0
 def query_cat_by_pager(self, cat_str, cureent):
     tt = CabUser2Reply.select().where(
         CabUser2Reply.id_cats.contains(str(cat_str))).order_by(
             CabUser2Reply.time_update.desc()).paginate(
                 cureent, config.page_num)
     return tt
Exemple #20
0
 def query_by_spec(self, spec_id):
     tt = CabUser2Reply.select().where(
         CabUser2Reply.id_spec == spec_id).order_by(
             CabUser2Reply.time_update.desc())
     return tt
Exemple #21
0
 def __init__(self):
     try:
         CabUser2Reply.create_table()
     except:
         pass
Exemple #22
0
 def query_cat_recent(self, cat_id, num=8):
     return CabUser2Reply.select().join(CabPost2Catalog).where(
         CabPost2Catalog.catalog == cat_id).order_by(
             CabUser2Reply.time_update.desc()).limit(num)
Exemple #23
0
 def query_most(self, num=8):
     return CabUser2Reply.select().order_by(
         CabUser2Reply.view_count.desc()).limit(num)
Exemple #24
0
 def update_keywords(self, uid, inkeywords):
     entry = CabUser2Reply.update(keywords=inkeywords).where(
         CabUser2Reply.uid == uid)
     entry.execute()
Exemple #25
0
 def update_view_count_by_uid(self, uid):
     entry = CabUser2Reply.update(view_count=CabUser2Reply.view_count +
                                  1).where(CabUser2Reply.uid == uid)
     entry.execute()
Exemple #26
0
 def update_view_count(self, citiao):
     entry = CabUser2Reply.update(view_count=CabUser2Reply.view_count +
                                  1).where(CabUser2Reply.title == citiao)
     entry.execute()
Exemple #27
0
 def query_by_spec(self, spec_id):
     tt = CabUser2Reply.select().where(CabUser2Reply.id_spec == spec_id).order_by(
         CabUser2Reply.time_update.desc())
     return tt
Exemple #28
0
 def get_by_keyword(self, par2):
     return CabUser2Reply.select().where(
         CabUser2Reply.title.contains(par2)).order_by(
             CabUser2Reply.time_update.desc()).limit(20)
Exemple #29
0
 def query_dated(self, num=8):
     return CabUser2Reply.select().order_by(
         CabUser2Reply.time_update).limit(num)
Exemple #30
0
 def query_keywords_empty(self):
     return CabUser2Reply.select().where(CabUser2Reply.keywords == '')
Exemple #31
0
 def query_recent(self, num=8):
     return CabUser2Reply.select().order_by(
         CabUser2Reply.time_update.desc()).limit(num)
Exemple #32
0
 def query_dated(self, num=8):
     return CabUser2Reply.select().order_by(CabUser2Reply.time_update).limit(num)
Exemple #33
0
 def query_keywords_empty(self):
     return CabUser2Reply.select().where(CabUser2Reply.keywords == '')
Exemple #34
0
 def query_most(self, num=8):
     return CabUser2Reply.select().order_by(CabUser2Reply.view_count.desc()).limit(num)
Exemple #35
0
 def query_random(self, num=6):
     if config.dbtype == 1 or config.dbtype == 3:
         return CabUser2Reply.select().order_by(
             peewee.fn.Random()).limit(num)
     elif config.dbtype == 2:
         return CabUser2Reply.select().order_by(peewee.fn.Rand()).limit(num)
Exemple #36
0
 def query_cat_by_pager(self, cat_str, cureent):
     tt = CabUser2Reply.select().where(CabUser2Reply.id_cats.contains(str(cat_str))).order_by(
         CabUser2Reply.time_update.desc()).paginate(cureent, config.page_num)
     return tt
Exemple #37
0
 def query_random(self, num=6):
     if config.dbtype == 1 or config.dbtype == 3:
         return CabUser2Reply.select().order_by(peewee.fn.Random()).limit(num)
     elif config.dbtype == 2:
         return CabUser2Reply.select().order_by(peewee.fn.Rand()).limit(num)
Exemple #38
0
 def update_view_count_by_uid(self, uid):
     entry = CabUser2Reply.update(view_count=CabUser2Reply.view_count + 1).where(CabUser2Reply.uid == uid)
     entry.execute()
Exemple #39
0
 def query_all(self):
     return CabUser2Reply.select()
Exemple #40
0
 def get_num_by_cat(self, cat_str):
     return CabUser2Reply.select().where(
         CabUser2Reply.id_cats.contains(',{0},'.format(cat_str))).count()
Exemple #41
0
 def get_by_id(self, in_uid):
     recs = CabUser2Reply.select().where(CabUser2Reply.post_id == in_uid).order_by(
         CabUser2Reply.timestamp.desc())
     return recs
Exemple #42
0
 def __init__(self):
     try:
         CabUser2Reply.create_table()
     except:
         pass
Exemple #43
0
 def get_num_by_cat(self, cat_str):
     return CabUser2Reply.select().where(CabUser2Reply.id_cats.contains(',{0},'.format(cat_str))).count()
Exemple #44
0
 def get_by_keyword(self, par2):
     return CabUser2Reply.select().where(CabUser2Reply.title.contains(par2)).order_by(
         CabUser2Reply.time_update.desc()).limit(20)
Exemple #45
0
 def query_all(self):
     return CabUser2Reply.select()
Exemple #46
0
 def query_old(self):
     return CabUser2Reply.select().order_by('time_update').limit(10)
Exemple #47
0
 def query_recent_most(self, num=8, recent=30):
     time_that = int(time.time()) - recent * 24 * 3600
     return CabUser2Reply.select().where(
         CabUser2Reply.time_update > time_that).order_by(
             CabUser2Reply.view_count.desc()).limit(num)
Exemple #48
0
 def get_by_zan(self, reply_id):
     return CabUser2Reply.select().where(
         CabUser2Reply.reply_id == reply_id).count()
Exemple #49
0
 def query_old(self):
     return CabUser2Reply.select().order_by('time_update').limit(10)