2014-05-04 17:26:43 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
2014-09-02 22:32:44 +00:00
|
|
|
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-08-12 08:16:57 +00:00
|
|
|
from datetime import datetime
|
2014-05-04 17:26:43 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
2014-05-28 15:42:19 +00:00
|
|
|
import time
|
2014-05-04 17:26:43 +00:00
|
|
|
|
|
|
|
import ox
|
|
|
|
|
|
|
|
from changelog import Changelog
|
2015-03-07 16:24:07 +00:00
|
|
|
from item.models import File, Scrape
|
2014-08-12 08:16:57 +00:00
|
|
|
from user.models import List
|
|
|
|
from utils import remove_empty_folders
|
2014-05-04 17:26:43 +00:00
|
|
|
from websocket import trigger_event
|
2014-08-12 08:16:57 +00:00
|
|
|
import db
|
|
|
|
import media
|
|
|
|
import settings
|
2014-05-17 00:14:15 +00:00
|
|
|
import state
|
2014-05-18 23:24:04 +00:00
|
|
|
|
|
|
|
import logging
|
2015-11-29 14:56:38 +00:00
|
|
|
logger = logging.getLogger(__name__)
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2015-03-14 07:35:15 +00:00
|
|
|
extensions = ['epub', 'pdf', 'txt', 'cbr', 'cbz']
|
2014-05-16 14:30:16 +00:00
|
|
|
|
2014-05-04 17:26:43 +00:00
|
|
|
def remove_missing():
|
|
|
|
dirty = False
|
2014-08-09 16:14:14 +00:00
|
|
|
with db.session():
|
2014-05-04 17:26:43 +00:00
|
|
|
prefs = settings.preferences
|
2016-01-04 09:49:14 +00:00
|
|
|
prefix = os.path.join(os.path.expanduser(prefs['libraryPath']), 'Books' + os.sep)
|
2014-05-20 10:30:53 +00:00
|
|
|
if os.path.exists(prefix):
|
|
|
|
for f in File.query:
|
2015-11-18 00:27:53 +00:00
|
|
|
if not state.tasks.connected:
|
|
|
|
return
|
2014-05-20 10:30:53 +00:00
|
|
|
path = f.item.get_path()
|
|
|
|
if not os.path.exists(path):
|
|
|
|
dirty = True
|
|
|
|
f.item.remove_file()
|
|
|
|
if dirty:
|
2014-08-09 16:14:14 +00:00
|
|
|
state.db.session.commit()
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-05-27 14:08:14 +00:00
|
|
|
def add_file(id, f, prefix, from_=None):
|
2014-05-18 23:24:04 +00:00
|
|
|
user = state.user()
|
|
|
|
path = f[len(prefix):]
|
2014-05-27 14:08:14 +00:00
|
|
|
data = media.metadata(f, from_)
|
2014-05-18 23:24:04 +00:00
|
|
|
file = File.get_or_create(id, data, path)
|
|
|
|
item = file.item
|
2014-05-21 00:02:21 +00:00
|
|
|
if 'primaryid' in file.info:
|
|
|
|
del file.info['primaryid']
|
2014-08-09 16:14:14 +00:00
|
|
|
state.db.session.add(file)
|
2014-05-21 00:02:21 +00:00
|
|
|
if 'primaryid' in item.info:
|
|
|
|
item.meta['primaryid'] = item.info.pop('primaryid')
|
2014-08-09 16:14:14 +00:00
|
|
|
state.db.session.add(item)
|
2016-01-06 18:06:48 +00:00
|
|
|
item.add_user(user)
|
2014-05-25 20:09:55 +00:00
|
|
|
Changelog.record(user, 'additem', item.id, file.info)
|
2014-05-20 00:43:54 +00:00
|
|
|
item.added = datetime.utcnow()
|
2016-01-05 16:16:50 +00:00
|
|
|
if state.online:
|
|
|
|
item.scrape()
|
|
|
|
#Changelog.record(user, 'edititem', item.id, dict([item.meta['primaryid']]))
|
|
|
|
Changelog.record(user, 'edititem', item.id, item.meta)
|
2014-05-21 00:02:21 +00:00
|
|
|
item.update_icons()
|
2015-03-07 16:24:07 +00:00
|
|
|
item.modified = datetime.utcnow()
|
|
|
|
item.update()
|
2016-01-05 16:16:50 +00:00
|
|
|
#Scrape.get_or_create(item.id)
|
2014-05-18 23:24:04 +00:00
|
|
|
return file
|
|
|
|
|
2014-05-04 17:26:43 +00:00
|
|
|
def run_scan():
|
|
|
|
remove_missing()
|
2015-12-24 15:11:47 +00:00
|
|
|
prefs = settings.preferences
|
2016-01-04 09:49:14 +00:00
|
|
|
prefix = os.path.join(os.path.expanduser(prefs['libraryPath']), 'Books' + os.sep)
|
|
|
|
if not prefix[-1] == os.sep:
|
|
|
|
prefix += os.sep
|
2015-12-24 15:11:47 +00:00
|
|
|
assert isinstance(prefix, str)
|
|
|
|
books = []
|
|
|
|
for root, folders, files in os.walk(prefix):
|
|
|
|
for f in files:
|
2015-11-18 00:27:53 +00:00
|
|
|
if not state.tasks.connected:
|
|
|
|
return
|
2015-12-24 15:11:47 +00:00
|
|
|
#if f.startswith('._') or f == '.DS_Store':
|
|
|
|
if f.startswith('.'):
|
|
|
|
continue
|
|
|
|
f = os.path.join(root, f)
|
|
|
|
ext = f.split('.')[-1]
|
|
|
|
if ext in extensions:
|
|
|
|
books.append(f)
|
|
|
|
|
|
|
|
position = 0
|
|
|
|
added = 0
|
|
|
|
for f in ox.sorted_strings(books):
|
|
|
|
if not state.tasks.connected:
|
|
|
|
return
|
|
|
|
position += 1
|
|
|
|
with db.session():
|
2014-05-04 17:26:43 +00:00
|
|
|
id = media.get_id(f)
|
|
|
|
file = File.get(id)
|
|
|
|
if not file:
|
2014-05-27 14:08:14 +00:00
|
|
|
file = add_file(id, f, prefix, f)
|
2014-05-04 17:26:43 +00:00
|
|
|
added += 1
|
2014-05-17 00:14:15 +00:00
|
|
|
trigger_event('change', {})
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-05-16 14:30:16 +00:00
|
|
|
def run_import(options=None):
|
|
|
|
options = options or {}
|
|
|
|
|
2015-12-24 15:11:47 +00:00
|
|
|
logger.debug('run_import')
|
|
|
|
prefs = settings.preferences
|
|
|
|
prefix = os.path.expanduser(options.get('path', prefs['importPath']))
|
|
|
|
if os.path.islink(prefix):
|
|
|
|
prefix = os.path.realpath(prefix)
|
2016-01-04 09:49:14 +00:00
|
|
|
if not prefix[-1] == os.sep:
|
|
|
|
prefix += os.sep
|
|
|
|
prefix_books = os.path.join(os.path.expanduser(prefs['libraryPath']), 'Books' + os.sep)
|
|
|
|
prefix_imported = os.path.join(prefix_books, 'Imported' + os.sep)
|
2015-12-24 15:11:47 +00:00
|
|
|
if prefix_books.startswith(prefix) or prefix.startswith(prefix_books):
|
|
|
|
error = 'invalid path'
|
|
|
|
elif not os.path.exists(prefix):
|
|
|
|
error = 'path not found'
|
|
|
|
elif not os.path.isdir(prefix):
|
|
|
|
error = 'path must be a folder'
|
|
|
|
else:
|
|
|
|
error = None
|
|
|
|
if error:
|
|
|
|
trigger_event('activity', {
|
2014-05-17 00:14:15 +00:00
|
|
|
'activity': 'import',
|
2015-12-24 15:11:47 +00:00
|
|
|
'progress': [0, 0],
|
|
|
|
'status': {'code': 404, 'text': error}
|
|
|
|
})
|
|
|
|
state.activity = {}
|
|
|
|
return
|
|
|
|
listname = options.get('list')
|
|
|
|
if listname:
|
|
|
|
listitems = []
|
|
|
|
assert isinstance(prefix, str)
|
|
|
|
books = []
|
|
|
|
count = 0
|
|
|
|
for root, folders, files in os.walk(prefix):
|
|
|
|
for f in files:
|
|
|
|
if not state.tasks.connected:
|
|
|
|
return
|
|
|
|
#if f.startswith('._') or f == '.DS_Store':
|
|
|
|
if f.startswith('.'):
|
2014-05-17 00:14:15 +00:00
|
|
|
continue
|
2015-12-24 15:11:47 +00:00
|
|
|
f = os.path.join(root, f)
|
|
|
|
ext = f.split('.')[-1]
|
|
|
|
if ext in extensions:
|
|
|
|
books.append(f)
|
|
|
|
count += 1
|
|
|
|
if state.activity.get('cancel'):
|
|
|
|
state.activity = {}
|
|
|
|
return
|
|
|
|
if count % 1000 == 0:
|
|
|
|
state.activity = {
|
|
|
|
'activity': 'import',
|
|
|
|
'path': prefix,
|
|
|
|
'progress': [0, count],
|
|
|
|
}
|
|
|
|
trigger_event('activity', state.activity)
|
|
|
|
state.activity = {
|
|
|
|
'activity': 'import',
|
|
|
|
'path': prefix,
|
|
|
|
'progress': [0, len(books)],
|
|
|
|
}
|
|
|
|
trigger_event('activity', state.activity)
|
|
|
|
position = 0
|
|
|
|
added = 0
|
|
|
|
last = 0
|
|
|
|
for f in ox.sorted_strings(books):
|
|
|
|
position += 1
|
|
|
|
if not os.path.exists(f):
|
|
|
|
continue
|
|
|
|
with db.session():
|
2014-05-04 17:26:43 +00:00
|
|
|
id = media.get_id(f)
|
|
|
|
file = File.get(id)
|
|
|
|
if not file:
|
|
|
|
f_import = f
|
|
|
|
f = f.replace(prefix, prefix_imported)
|
|
|
|
ox.makedirs(os.path.dirname(f))
|
2014-05-16 14:30:16 +00:00
|
|
|
if options.get('mode') == 'move':
|
|
|
|
shutil.move(f_import, f)
|
|
|
|
else:
|
|
|
|
shutil.copy(f_import, f)
|
2014-05-27 14:08:14 +00:00
|
|
|
file = add_file(id, f, prefix_books, f_import)
|
2014-05-17 11:45:57 +00:00
|
|
|
file.move()
|
2014-05-04 17:26:43 +00:00
|
|
|
added += 1
|
2015-12-24 15:11:47 +00:00
|
|
|
if listname:
|
|
|
|
listitems.append(file.item.id)
|
|
|
|
if time.time() - last > 5:
|
|
|
|
last = time.time()
|
|
|
|
state.activity = {
|
|
|
|
'activity': 'import',
|
|
|
|
'progress': [position, len(books)],
|
|
|
|
'path': prefix,
|
|
|
|
'added': added,
|
|
|
|
}
|
|
|
|
trigger_event('activity', state.activity)
|
2014-05-26 10:41:01 +00:00
|
|
|
|
2015-12-24 15:11:47 +00:00
|
|
|
if state.activity.get('cancel'):
|
|
|
|
state.activity = {}
|
|
|
|
return
|
|
|
|
with db.session():
|
2014-05-18 23:24:04 +00:00
|
|
|
if listname and listitems:
|
|
|
|
l = List.get(settings.USER_ID, listname)
|
|
|
|
if l:
|
|
|
|
l.add_items(listitems)
|
2015-12-24 15:11:47 +00:00
|
|
|
trigger_event('activity', {
|
|
|
|
'activity': 'import',
|
|
|
|
'progress': [position, len(books)],
|
|
|
|
'path': prefix,
|
|
|
|
'status': {'code': 200, 'text': ''},
|
|
|
|
'added': added,
|
|
|
|
})
|
|
|
|
state.activity = {}
|
|
|
|
remove_empty_folders(prefix_books)
|
|
|
|
if options.get('mode') == 'move':
|
|
|
|
remove_empty_folders(prefix)
|