You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
special-issue-11-wiki2html/upload_imgs_dir.py

101 lines
3.9 KiB
Python

4 years ago
import os, argparse, sys, re
from mwclient import Site
4 years ago
from functions import (print_colormsg,
reorder_imgs)
4 years ago
p = argparse.ArgumentParser(description='Upload files from a directory, with metadata values to the wiki.\n'
4 years ago
'Note that any VALUES CONTAINING '
'SPACES SHOULD BE BETWEEN QUOTATION MARKS',
formatter_class=argparse.ArgumentDefaultsHelpFormatter)
4 years ago
# TODO: Add example of command to description
p.add_argument('--host', default='hub.xpub.nl/sandbox', help='wiki host')
p.add_argument('--path', default='/itchwiki/', help='Wiki path. Should end with /')
p.add_argument('--scheme', default='https', help='http or https')
p.add_argument('--dry', '-d', action='store_true',
help='dry-run: will only print the metadata of each file that will be upload, but does NOT upload')
4 years ago
p.add_argument('--title', required=True, help='Metadata **Title** value of publication. Must not exist yet in the wiki.')
p.add_argument('--date', required=True, help='Metadata **Date** value of publication. Format yyyy/mm/dd '
'For dates without day or date use 01 ie. 1986 --date "1986/01/01" March 1985: --date "1984/05/01"')
p.add_argument('--creator', required=True, action='append', help='Metadata **Creator** value(s) of publication.'
'Multiple values should be SEPARATED BY COMMA')
4 years ago
p.add_argument('--dir', required=True, help='Full path of the image directory, '
'that you wish to upload')
args = p.parse_args()
4 years ago
# login
site = Site(host=args.host, path=args.path, scheme=args.scheme)
4 years ago
wd =os.path.dirname(os.path.abspath(__file__)) # parent working directory
with open(os.path.join(wd, 'login.txt'), 'r') as login: # read login user & pwd
loginlines = login.read()
user, pwd = loginlines.split('\n')
site.login(username=user, password=pwd) # login to wiki
4 years ago
# metadata checks
4 years ago
if os.path.isdir(args.dir) is False:
4 years ago
print_colormsg(f'Error: --dir {args.dir} absolute path cannot be found', level='fail')
4 years ago
sys.exit()
elif not re.match(r'\d{4}\/\d{2}\/\d{2}', args.date):
4 years ago
print_colormsg(f'Error: --date {args.date} format should be --date "yyyy/mm/dd"', level='fail')
4 years ago
sys.exit()
elif len(list(site.ask(f'[[Title::{args.title}]]'))) > 0:
4 years ago
print_colormsg(f'Error: --title "{args.title}" already exists in wiki. Provide a different one', level='fail')
4 years ago
sys.exit()
4 years ago
4 years ago
lsimgs = reorder_imgs(dir=args.dir, dry=args.dry)
4 years ago
print('lsimgs:', lsimgs)
4 years ago
sys.exit() ## STOP HERE
4 years ago
# TODO PartOf from os.listdir(args.dir) that fit on to condition
# TODO Part base on os.lisdir order!
4 years ago
# todo creator value comma-seperated
smw_prop_val = '''{{ImageMetadata
|Title={title}
|Date={date}
|Part={part}
|Partof={partof}
|Creator={creator}
}}
[[Template:ImageMetadata]]
'''
4 years ago
if args.dry == True:
print(args)
sys.exit()
4 years ago
for n, _file in enumerate(lsimgs):
4 years ago
print_colormsg(_file, level='ok')
page = site.pages[_file]
if page.exists:
url = page.imageinfo['descriptionurl']
print_colormsg(
f'Already exists in {url} Will be uploaded as new version',
level='warning')
img_smw_prop_val = smw_prop_val.format(title='cat from hell', date='2020/02/13', part='1', partof='1', creator='test')
print(img_smw_prop_val)
filename = 'cat2.jpg'
page = site.images[filename]
img_url = f'https://{args.host}{args.path}/index.php/File:{filename}'
if page.exists is True:
print(f'{filename} is already upload it, you can see it at {img_url}' )
print('The upload process wont proceed. Please upload all images in folder by hand')
else:
with open(filename, 'rb') as _file:
4 years ago
dirname = (os.path.split(dir)[-1])
site.upload(file=_file, filename=f'{dirname}_{filename}',
description='img_smw_prop_val', ignore=True)