Esempio n. 1
0
    def get(self):
        page_size = 30
        count = Book.get_count()["count"]
        page = self._get_page()
        books = Book.get_all_books(page, page_size)
        if not books and page != 1:
            raise HTTPError(404)

        pagination = Pagination(page, page_size, count)

        self.render("finish.html", pagination=pagination, books=books)
Esempio n. 2
0
    def get(self):
        page_size = 30
        count = Book.get_count()["count"]
        page = self._get_page()
        books = Book.get_all_books(page, page_size)
        if not books and page != 1:
            raise HTTPError(404)

        pagination = Pagination(page, page_size, count)

        self.render("finish.html",
            pagination=pagination,
            books=books
        )
Esempio n. 3
0
    def get(self):
        key = self.get_argument('key', '')

        page = self._get_page()
        page_size = 30

        count = Book.get_search_books_count(key)
        books = Book.get_search_books(key, page, page_size)

        pagination = Pagination(page, page_size, count['count'])

        self.render("search.html",
            pagination=pagination,
            books=books,
            searchKey=key,
        )
Esempio n. 4
0
    def get(self):
        key = self.get_argument('key', '')

        page = self._get_page()
        page_size = 30

        count = Book.get_search_books_count(key)
        books = Book.get_search_books(key, page, page_size)

        pagination = Pagination(page, page_size, count['count'])

        self.render(
            "search.html",
            pagination=pagination,
            books=books,
            searchKey=key,
        )
Esempio n. 5
0
    def get(self, id):
        author = Author.get_author_by_id(id)

        if not author:
            raise HTTPError(404)

        books = Book.get_books_by_author(id)

        self.render("author.html", author=author, books=books)
Esempio n. 6
0
    def get(self, id):
        author = Author.get_author_by_id(id)

        if not author:
            raise HTTPError(404)

        books = Book.get_books_by_author(id)

        self.render("author.html", author=author, books=books)
Esempio n. 7
0
    def get(self, id):
        cate = Category.get_cat_by_id(id)
        page = self._get_page()
        books = Book.get_page_books_by_cate(id, page)
        if not books and page != 1:
            raise HTTPError(404)

        pagination = Pagination(page, 30, cate["count"])

        self.render("cate.html", cate=cate, pagination=pagination, books=books)
Esempio n. 8
0
    def get(self, id):
        book = Book.get_book_by_id(id)
        if not book:
            raise HTTPError(404)

        cate = Category.get_cat_by_id(book["category_id"])
        author = Author.get_author_by_id(book["author_id"])

        cover = get_cover(book['id'], book['cover']);

        self.render("book.html", book=book, cover=cover, cate=cate, author=author)
Esempio n. 9
0
    def get(self, id):
        cate = Category.get_cat_by_id(id)
        page = self._get_page()
        books = Book.get_page_books_by_cate(id, page)
        if not books and page != 1:
            raise HTTPError(404)

        pagination = Pagination(page, 30, cate["count"])

        self.render("cate.html",
            cate=cate,
            pagination=pagination,
            books=books
        )
Esempio n. 10
0
    def get(self, id):
        book = Book.get_book_by_id(id)
        if not book:
            raise HTTPError(404)

        cate = Category.get_cat_by_id(book["category_id"])
        author = Author.get_author_by_id(book["author_id"])

        cover = get_cover(book['id'], book['cover'])

        self.render("book.html",
                    book=book,
                    cover=cover,
                    cate=cate,
                    author=author)
Esempio n. 11
0
    def get(self, book_id, id):
        chapter = Chapter.get_chapter_by_id(id)
        if not chapter:
            raise HTTPError(404)

        book = Book.get_book_by_id(chapter.book_id)
        author = Author.get_author_by_id(book["author_id"])
        text = ""
        from tornado.options import options
        filepath = os.path.join(options.txt_path, str(int(book_id) / 1000),
                                book_id, id)
        if os.path.exists(filepath):
            obj_file = open(filepath)
            try:
                text = obj_file.read()
            finally:
                obj_file.close()
        else:
            row = Chapter.get_text_by_id(id)
            if row is not None:
                text = row['text']
                #text = htmlremove(text)
            else:
                text = '正在努力的加载数据...'
        #text = htmlremove(text)

        previous = Chapter.get_previous(book_id, chapter["sort_num"])
        if not previous:
            previous = 'index'
        else:
            previous = previous["id"]
        next = Chapter.get_next(book_id, chapter["sort_num"])
        if not next:
            next = 'index'
        else:
            next = next["id"]

        self.render(
            "chapter.html",
            book=book,
            chapter=chapter,
            text=text,
            author=author,
            previous=previous,
            next=next,
        )
Esempio n. 12
0
 def get(self, id):
     book = Book.get_book_by_id(id)
     if not book:
         raise HTTPError(404)
     a = []
     author = Author.get_author_by_id(book["author_id"])
     volumes = Volume.get_volumes_by_book_id(id)
     chapters = Chapter.get_chapters_by_book_id(id)
     for i, item in enumerate(volumes):
         var = {}
         var['id'] = item.id
         var['title'] = item.title
         var['chs'] = []
         for ch in chapters:
             if ch.volume_id == item.id:
                 var['chs'].append(ch)
         a.append(var)
     self.render("chapters.html", book=book, volumes=a, author=author)
Esempio n. 13
0
 def get(self, id):
     book = Book.get_book_by_id(id)
     if not book:
         raise HTTPError(404)
     a = []
     author = Author.get_author_by_id(book["author_id"])
     volumes = Volume.get_volumes_by_book_id(id)
     chapters = Chapter.get_chapters_by_book_id(id)
     for i,item in enumerate(volumes):
         var ={}
         var['id'] = item.id
         var['title'] = item.title
         var['chs'] = []
         for ch in chapters:
             if ch.volume_id == item.id:
                 var['chs'].append(ch)
         a.append(var)
     self.render("chapters.html", book=book, volumes=a, author=author)
Esempio n. 14
0
    def get(self, book_id, id):
        chapter = Chapter.get_chapter_by_id(id)
        if not chapter:
            raise HTTPError(404)

        book = Book.get_book_by_id(chapter.book_id)
        author = Author.get_author_by_id(book["author_id"])
        text = ""
        from tornado.options import options
        filepath = os.path.join(options.txt_path, str(int(book_id)/1000), book_id, id)
        if os.path.exists(filepath):
            obj_file = open(filepath)
            try:
                text = obj_file.read()
            finally:
                obj_file.close()
        else:
            row = Chapter.get_text_by_id(id)
            if row is not None:
                text = row['text']
                #text = htmlremove(text)
            else:
                text = '正在努力的加载数据...'
        #text = htmlremove(text)

        previous = Chapter.get_previous(book_id, chapter["sort_num"])
        if not previous:
            previous = 'index'
        else:
            previous = previous["id"]
        next = Chapter.get_next(book_id, chapter["sort_num"])
        if not next:
            next = 'index'
        else:
            next = next["id"]

        self.render("chapter.html",
            book=book,
            chapter=chapter,
            text=text,
            author=author,
            previous=previous,
            next=next,
        )
Esempio n. 15
0
    def get(self):
        news = Book.get_all_books()
        recommends = Book.get_recommend_books()
        hots = Book.get_hot_books()

        _hot = Book.get_books_by_ids(options.hot)
        _recommend = Book.get_books_by_ids(options.recommend)
        _finish = Book.get_books_by_ids(options.finish)

        self.render("index.html",
            news=news,
            recommends=recommends,
            hots=hots,
            hot = _hot,
            recommend = _recommend,
            finish = _finish,
        )
Esempio n. 16
0
    def get(self):
        news = Book.get_all_books()
        recommends = Book.get_recommend_books()
        hots = Book.get_hot_books()

        _hot = Book.get_books_by_ids(options.hot)
        _recommend = Book.get_books_by_ids(options.recommend)
        _finish = Book.get_books_by_ids(options.finish)

        self.render(
            "index.html",
            news=news,
            recommends=recommends,
            hots=hots,
            hot=_hot,
            recommend=_recommend,
            finish=_finish,
        )