Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
douban-api-proxy
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
douban-api-proxy
Commits
0ee46e4b
Commit
0ee46e4b
authored
Apr 17, 2016
by
Cervinko Cera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
custom columns unfinished
parent
6c40bfdd
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
64 additions
and
0 deletions
+64
-0
db.py
cps/db.py
+57
-0
helper.py
cps/helper.py
+6
-0
web.py
cps/web.py
+1
-0
No files found.
cps/db.py
View file @
0ee46e4b
...
@@ -49,6 +49,17 @@ books_languages_link = Table('books_languages_link', Base.metadata,
...
@@ -49,6 +49,17 @@ books_languages_link = Table('books_languages_link', Base.metadata,
Column
(
'lang_code'
,
Integer
,
ForeignKey
(
'languages.id'
),
primary_key
=
True
)
Column
(
'lang_code'
,
Integer
,
ForeignKey
(
'languages.id'
),
primary_key
=
True
)
)
)
#cc = conn.execute("SELECT id FROM custom_columns")
#cc_ids = []
#books_custom_column_links = {}
#for row in cc:
# cc_link=Table('books_custom_column_' + str(row.id) + '_link', Base.metadata,
# Column('book', Integer, ForeignKey('books.id'), primary_key=True),
# Column('custom_column', Integer, ForeignKey('custom_column_' + str(row.id) + '.id'), primary_key=True)
# )
# books_custom_column_links[row.id] = cc_link
# cc_ids.append(row.id)
class
Comments
(
Base
):
class
Comments
(
Base
):
__tablename__
=
'comments'
__tablename__
=
'comments'
...
@@ -170,6 +181,16 @@ class Books(Base):
...
@@ -170,6 +181,16 @@ class Books(Base):
series
=
relationship
(
'Series'
,
secondary
=
books_series_link
,
backref
=
'books'
)
series
=
relationship
(
'Series'
,
secondary
=
books_series_link
,
backref
=
'books'
)
ratings
=
relationship
(
'Ratings'
,
secondary
=
books_ratings_link
,
backref
=
'books'
)
ratings
=
relationship
(
'Ratings'
,
secondary
=
books_ratings_link
,
backref
=
'books'
)
languages
=
relationship
(
'Languages'
,
secondary
=
books_languages_link
,
backref
=
'books'
)
languages
=
relationship
(
'Languages'
,
secondary
=
books_languages_link
,
backref
=
'books'
)
#custom_columns = {}
#for id in cc_ids:
# print id
# custom_columns[id] = relationship(cc_classes[id], secondary=books_custom_column_links[id], backref='books')
#custom_columns[1] = relationship(cc_classes[1], secondary=books_custom_column_links[1], backref='books')
#custom_columns[2] = relationship(cc_classes[2], secondary=books_custom_column_links[2], backref='books')
#custom_columns[3] = relationship(cc_classes[3], secondary=books_custom_column_links[3], backref='books')
def
__init__
(
self
,
title
,
sort
,
author_sort
,
timestamp
,
pubdate
,
series_index
,
last_modified
,
path
,
has_cover
,
authors
,
tags
):
def
__init__
(
self
,
title
,
sort
,
author_sort
,
timestamp
,
pubdate
,
series_index
,
last_modified
,
path
,
has_cover
,
authors
,
tags
):
self
.
title
=
title
self
.
title
=
title
...
@@ -184,8 +205,44 @@ class Books(Base):
...
@@ -184,8 +205,44 @@ class Books(Base):
def
__repr__
(
self
):
def
__repr__
(
self
):
return
u"<Books('{0},{1}{2}{3}{4}{5}{6}{7}{8}')>"
.
format
(
self
.
title
,
self
.
sort
,
self
.
author_sort
,
self
.
timestamp
,
self
.
pubdate
,
self
.
series_index
,
self
.
last_modified
,
self
.
path
,
self
.
has_cover
)
return
u"<Books('{0},{1}{2}{3}{4}{5}{6}{7}{8}')>"
.
format
(
self
.
title
,
self
.
sort
,
self
.
author_sort
,
self
.
timestamp
,
self
.
pubdate
,
self
.
series_index
,
self
.
last_modified
,
self
.
path
,
self
.
has_cover
)
class
Custom_Columns
(
Base
):
__tablename__
=
'custom_columns'
id
=
Column
(
Integer
,
primary_key
=
True
)
label
=
Column
(
String
)
name
=
Column
(
String
)
datatype
=
Column
(
String
)
mark_for_delete
=
Column
(
Boolean
)
editable
=
Column
(
Boolean
)
display
=
Column
(
String
)
is_multiple
=
Column
(
Boolean
)
normalized
=
Column
(
Boolean
)
#class Custom_Column(object):
# def __init__(self, value):
# self.value = value
#def get_cc_table(id):
# custom_column = Custom_Column
# table_name = 'custom_column_' + str(id)
# table_object = Table(table_name, Base.metadata,
# Column('id', Integer, primary_key=True, autoincrement=True),
# Column('value', String)
# )
# clear_mappers()
# mapper(custom_column, table_object, properties={'books' + str(id): relationship(Books, secondary=books_custom_column_links[id] , backref='custom_column_' + str(id))})
# return custom_column
#cc_classes={}
#for id in cc_ids:
# cc_classes[id] = get_cc_table(id)
#print cc_classes
Base
.
metadata
.
create_all
(
engine
)
Base
.
metadata
.
create_all
(
engine
)
Session
=
sessionmaker
()
Session
=
sessionmaker
()
Session
.
configure
(
bind
=
engine
)
Session
.
configure
(
bind
=
engine
)
session
=
Session
()
session
=
Session
()
cps/helper.py
View file @
0ee46e4b
...
@@ -199,3 +199,9 @@ def update_dir_stucture(book_id):
...
@@ -199,3 +199,9 @@ def update_dir_stucture(book_id):
os
.
renames
(
path
,
new_author_path
)
os
.
renames
(
path
,
new_author_path
)
book
.
path
=
new_authordir
+
"/"
+
book
.
path
.
split
(
"/"
)[
1
]
book
.
path
=
new_authordir
+
"/"
+
book
.
path
.
split
(
"/"
)[
1
]
db
.
session
.
commit
()
db
.
session
.
commit
()
def
get_custom_columns
(
id
):
cc
=
db
.
session
.
query
(
db
.
Custom_Columns
)
.
all
()
for
c
in
cc
:
print
c
.
name
cps/web.py
View file @
0ee46e4b
...
@@ -316,6 +316,7 @@ def discover(page):
...
@@ -316,6 +316,7 @@ def discover(page):
@
app
.
route
(
"/book/<int:id>"
)
@
app
.
route
(
"/book/<int:id>"
)
def
show_book
(
id
):
def
show_book
(
id
):
entries
=
db
.
session
.
query
(
db
.
Books
)
.
filter
(
db
.
Books
.
id
==
id
)
.
first
()
entries
=
db
.
session
.
query
(
db
.
Books
)
.
filter
(
db
.
Books
.
id
==
id
)
.
first
()
helper
.
get_custom_columns
(
entries
.
id
)
book_in_shelfs
=
[]
book_in_shelfs
=
[]
shelfs
=
ub
.
session
.
query
(
ub
.
BookShelf
)
.
filter
(
ub
.
BookShelf
.
book_id
==
id
)
.
all
()
shelfs
=
ub
.
session
.
query
(
ub
.
BookShelf
)
.
filter
(
ub
.
BookShelf
.
book_id
==
id
)
.
all
()
for
entry
in
shelfs
:
for
entry
in
shelfs
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment