Initial commit
This commit is contained in:
commit
8311391ba2
6 changed files with 615 additions and 0 deletions
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
|||
# Python
|
||||
/venv/
|
||||
/__pycache__/
|
||||
|
||||
# Project-specific
|
||||
/config.json
|
||||
/out/
|
201
LICENSE
Normal file
201
LICENSE
Normal file
|
@ -0,0 +1,201 @@
|
|||
Apache License
|
||||
Version 2.0, January 2004
|
||||
http://www.apache.org/licenses/
|
||||
|
||||
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||
|
||||
1. Definitions.
|
||||
|
||||
"License" shall mean the terms and conditions for use, reproduction,
|
||||
and distribution as defined by Sections 1 through 9 of this document.
|
||||
|
||||
"Licensor" shall mean the copyright owner or entity authorized by
|
||||
the copyright owner that is granting the License.
|
||||
|
||||
"Legal Entity" shall mean the union of the acting entity and all
|
||||
other entities that control, are controlled by, or are under common
|
||||
control with that entity. For the purposes of this definition,
|
||||
"control" means (i) the power, direct or indirect, to cause the
|
||||
direction or management of such entity, whether by contract or
|
||||
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||
|
||||
"You" (or "Your") shall mean an individual or Legal Entity
|
||||
exercising permissions granted by this License.
|
||||
|
||||
"Source" form shall mean the preferred form for making modifications,
|
||||
including but not limited to software source code, documentation
|
||||
source, and configuration files.
|
||||
|
||||
"Object" form shall mean any form resulting from mechanical
|
||||
transformation or translation of a Source form, including but
|
||||
not limited to compiled object code, generated documentation,
|
||||
and conversions to other media types.
|
||||
|
||||
"Work" shall mean the work of authorship, whether in Source or
|
||||
Object form, made available under the License, as indicated by a
|
||||
copyright notice that is included in or attached to the work
|
||||
(an example is provided in the Appendix below).
|
||||
|
||||
"Derivative Works" shall mean any work, whether in Source or Object
|
||||
form, that is based on (or derived from) the Work and for which the
|
||||
editorial revisions, annotations, elaborations, or other modifications
|
||||
represent, as a whole, an original work of authorship. For the purposes
|
||||
of this License, Derivative Works shall not include works that remain
|
||||
separable from, or merely link (or bind by name) to the interfaces of,
|
||||
the Work and Derivative Works thereof.
|
||||
|
||||
"Contribution" shall mean any work of authorship, including
|
||||
the original version of the Work and any modifications or additions
|
||||
to that Work or Derivative Works thereof, that is intentionally
|
||||
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||
or by an individual or Legal Entity authorized to submit on behalf of
|
||||
the copyright owner. For the purposes of this definition, "submitted"
|
||||
means any form of electronic, verbal, or written communication sent
|
||||
to the Licensor or its representatives, including but not limited to
|
||||
communication on electronic mailing lists, source code control systems,
|
||||
and issue tracking systems that are managed by, or on behalf of, the
|
||||
Licensor for the purpose of discussing and improving the Work, but
|
||||
excluding communication that is conspicuously marked or otherwise
|
||||
designated in writing by the copyright owner as "Not a Contribution."
|
||||
|
||||
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||
on behalf of whom a Contribution has been received by Licensor and
|
||||
subsequently incorporated within the Work.
|
||||
|
||||
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
copyright license to reproduce, prepare Derivative Works of,
|
||||
publicly display, publicly perform, sublicense, and distribute the
|
||||
Work and such Derivative Works in Source or Object form.
|
||||
|
||||
3. Grant of Patent License. Subject to the terms and conditions of
|
||||
this License, each Contributor hereby grants to You a perpetual,
|
||||
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||
(except as stated in this section) patent license to make, have made,
|
||||
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||
where such license applies only to those patent claims licensable
|
||||
by such Contributor that are necessarily infringed by their
|
||||
Contribution(s) alone or by combination of their Contribution(s)
|
||||
with the Work to which such Contribution(s) was submitted. If You
|
||||
institute patent litigation against any entity (including a
|
||||
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||
or a Contribution incorporated within the Work constitutes direct
|
||||
or contributory patent infringement, then any patent licenses
|
||||
granted to You under this License for that Work shall terminate
|
||||
as of the date such litigation is filed.
|
||||
|
||||
4. Redistribution. You may reproduce and distribute copies of the
|
||||
Work or Derivative Works thereof in any medium, with or without
|
||||
modifications, and in Source or Object form, provided that You
|
||||
meet the following conditions:
|
||||
|
||||
(a) You must give any other recipients of the Work or
|
||||
Derivative Works a copy of this License; and
|
||||
|
||||
(b) You must cause any modified files to carry prominent notices
|
||||
stating that You changed the files; and
|
||||
|
||||
(c) You must retain, in the Source form of any Derivative Works
|
||||
that You distribute, all copyright, patent, trademark, and
|
||||
attribution notices from the Source form of the Work,
|
||||
excluding those notices that do not pertain to any part of
|
||||
the Derivative Works; and
|
||||
|
||||
(d) If the Work includes a "NOTICE" text file as part of its
|
||||
distribution, then any Derivative Works that You distribute must
|
||||
include a readable copy of the attribution notices contained
|
||||
within such NOTICE file, excluding those notices that do not
|
||||
pertain to any part of the Derivative Works, in at least one
|
||||
of the following places: within a NOTICE text file distributed
|
||||
as part of the Derivative Works; within the Source form or
|
||||
documentation, if provided along with the Derivative Works; or,
|
||||
within a display generated by the Derivative Works, if and
|
||||
wherever such third-party notices normally appear. The contents
|
||||
of the NOTICE file are for informational purposes only and
|
||||
do not modify the License. You may add Your own attribution
|
||||
notices within Derivative Works that You distribute, alongside
|
||||
or as an addendum to the NOTICE text from the Work, provided
|
||||
that such additional attribution notices cannot be construed
|
||||
as modifying the License.
|
||||
|
||||
You may add Your own copyright statement to Your modifications and
|
||||
may provide additional or different license terms and conditions
|
||||
for use, reproduction, or distribution of Your modifications, or
|
||||
for any such Derivative Works as a whole, provided Your use,
|
||||
reproduction, and distribution of the Work otherwise complies with
|
||||
the conditions stated in this License.
|
||||
|
||||
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||
any Contribution intentionally submitted for inclusion in the Work
|
||||
by You to the Licensor shall be under the terms and conditions of
|
||||
this License, without any additional terms or conditions.
|
||||
Notwithstanding the above, nothing herein shall supersede or modify
|
||||
the terms of any separate license agreement you may have executed
|
||||
with Licensor regarding such Contributions.
|
||||
|
||||
6. Trademarks. This License does not grant permission to use the trade
|
||||
names, trademarks, service marks, or product names of the Licensor,
|
||||
except as required for reasonable and customary use in describing the
|
||||
origin of the Work and reproducing the content of the NOTICE file.
|
||||
|
||||
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||
agreed to in writing, Licensor provides the Work (and each
|
||||
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||
implied, including, without limitation, any warranties or conditions
|
||||
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||
appropriateness of using or redistributing the Work and assume any
|
||||
risks associated with Your exercise of permissions under this License.
|
||||
|
||||
8. Limitation of Liability. In no event and under no legal theory,
|
||||
whether in tort (including negligence), contract, or otherwise,
|
||||
unless required by applicable law (such as deliberate and grossly
|
||||
negligent acts) or agreed to in writing, shall any Contributor be
|
||||
liable to You for damages, including any direct, indirect, special,
|
||||
incidental, or consequential damages of any character arising as a
|
||||
result of this License or out of the use or inability to use the
|
||||
Work (including but not limited to damages for loss of goodwill,
|
||||
work stoppage, computer failure or malfunction, or any and all
|
||||
other commercial damages or losses), even if such Contributor
|
||||
has been advised of the possibility of such damages.
|
||||
|
||||
9. Accepting Warranty or Additional Liability. While redistributing
|
||||
the Work or Derivative Works thereof, You may choose to offer,
|
||||
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||
or other liability obligations and/or rights consistent with this
|
||||
License. However, in accepting such obligations, You may act only
|
||||
on Your own behalf and on Your sole responsibility, not on behalf
|
||||
of any other Contributor, and only if You agree to indemnify,
|
||||
defend, and hold each Contributor harmless for any liability
|
||||
incurred by, or claims asserted against, such Contributor by reason
|
||||
of your accepting any such warranty or additional liability.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
APPENDIX: How to apply the Apache License to your work.
|
||||
|
||||
To apply the Apache License to your work, attach the following
|
||||
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||
replaced with your own identifying information. (Don't include
|
||||
the brackets!) The text should be enclosed in the appropriate
|
||||
comment syntax for the file format. We also recommend that a
|
||||
file or class name and description of purpose be included on the
|
||||
same "printed page" as the copyright notice for easier
|
||||
identification within third-party archives.
|
||||
|
||||
Copyright [yyyy] [name of copyright owner]
|
||||
|
||||
Licensed under the Apache License, Version 2.0 (the "License");
|
||||
you may not use this file except in compliance with the License.
|
||||
You may obtain a copy of the License at
|
||||
|
||||
http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
Unless required by applicable law or agreed to in writing, software
|
||||
distributed under the License is distributed on an "AS IS" BASIS,
|
||||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
See the License for the specific language governing permissions and
|
||||
limitations under the License.
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# upload-generator
|
||||
|
||||
Script to help with generating gallery uploads.
|
127
main.py
Normal file
127
main.py
Normal file
|
@ -0,0 +1,127 @@
|
|||
import argparse
|
||||
import io
|
||||
import os
|
||||
import re
|
||||
import subprocess
|
||||
import tempfile
|
||||
|
||||
from parse import parse_description
|
||||
|
||||
OUT_DIR = './out'
|
||||
|
||||
|
||||
def get_rtf_styles(rtf_source: str):
|
||||
match_list = re.findall(r'\\s(\d+)(?:\\sbasedon\d+)?\\snext\d+((?:\\[a-z0-9]+ ?)+)(?: ([A-Z][a-zA-Z ]*));', rtf_source)
|
||||
if not match_list:
|
||||
raise ValueError(f'Couldn\'t find valid RTF styles')
|
||||
rtf_styles = {}
|
||||
for (style_number, partial_rtf_style, style_name) in match_list:
|
||||
rtf_style = r'\s' + style_number + partial_rtf_style
|
||||
rtf_styles[int(style_number)] = rtf_style
|
||||
rtf_styles[style_name] = rtf_style
|
||||
return rtf_styles
|
||||
|
||||
def main(story_path=None, description_path=None, keep_out_dir=False, ignore_empty_files=False):
|
||||
remove_out_dir = not keep_out_dir and os.path.isdir(OUT_DIR)
|
||||
with tempfile.TemporaryDirectory() as tdir:
|
||||
# Clear OUT_DIR if it exists and shouldn't be kept
|
||||
if remove_out_dir:
|
||||
os.rename(OUT_DIR, os.path.join(tdir, 'old_out'))
|
||||
if not os.path.isdir(OUT_DIR):
|
||||
os.mkdir(OUT_DIR)
|
||||
|
||||
try:
|
||||
# Convert original file to .rtf (Aryion) and .txt (all others)
|
||||
if story_path:
|
||||
story_filename = os.path.split(story_path)[1].rsplit('.')[0]
|
||||
txt_out_path = os.path.join(OUT_DIR, f'{story_filename}.txt')
|
||||
txt_tmp_path = os.path.join(tdir, f'{story_filename}.txt')
|
||||
rtf_out_path = os.path.join(OUT_DIR, f'{story_filename}.rtf')
|
||||
RE_EMPTY_LINE = re.compile('^$')
|
||||
is_only_empty_lines = True
|
||||
ps = subprocess.Popen(('libreoffice', '--cat', story_path), stdout=subprocess.PIPE)
|
||||
with open(txt_out_path, 'w', newline='\r\n') as txt_out, open(txt_tmp_path, 'w') as txt_tmp:
|
||||
needs_empty_line = False
|
||||
for line in io.TextIOWrapper(ps.stdout, encoding='utf-8-sig'):
|
||||
# Remove empty lines
|
||||
line = line.strip()
|
||||
if RE_EMPTY_LINE.search(line) and not is_only_empty_lines:
|
||||
needs_empty_line = True
|
||||
else:
|
||||
if is_only_empty_lines:
|
||||
txt_out.writelines((line,))
|
||||
txt_tmp.writelines((line,))
|
||||
is_only_empty_lines = False
|
||||
else:
|
||||
if needs_empty_line:
|
||||
txt_out.writelines(('\n\n', line))
|
||||
needs_empty_line = False
|
||||
else:
|
||||
txt_out.writelines(('\n', line))
|
||||
txt_tmp.writelines(('\n', line))
|
||||
txt_out.writelines(('\n'))
|
||||
if is_only_empty_lines:
|
||||
error = f'Story processing returned empty file: libreoffice --cat {story_path}'
|
||||
if ignore_empty_files:
|
||||
print(f'Ignoring error ({error})')
|
||||
else:
|
||||
raise RuntimeError(error)
|
||||
# Convert temporary .txt to .rtf
|
||||
subprocess.run(['libreoffice', '--convert-to', 'rtf:Rich Text Format', '--outdir', OUT_DIR, txt_tmp_path], check=True, capture_output=True)
|
||||
# Convert monospace font ('Preformatted Text') to serif ('Normal')
|
||||
with open(rtf_out_path, 'r+') as f:
|
||||
rtf = f.read()
|
||||
rtf_styles = get_rtf_styles(rtf)
|
||||
monospace_style = rtf_styles['Preformatted Text'] # rtf_styles[20]
|
||||
serif_style = rtf_styles['Normal'] # rtf_styles[0]
|
||||
f.seek(0)
|
||||
f.write(rtf.replace(monospace_style, serif_style))
|
||||
f.truncate()
|
||||
|
||||
# Parse FA description and convert for each website
|
||||
if description_path:
|
||||
ps = subprocess.Popen(('libreoffice', '--cat', description_path), stdout=subprocess.PIPE)
|
||||
desc = '\n'.join(line.strip() for line in io.TextIOWrapper(ps.stdout, encoding='utf-8-sig'))
|
||||
if not desc or re.match(r'^\s+$', desc):
|
||||
error = f'Description processing returned empty file: libreoffice --cat {description_path}'
|
||||
if ignore_empty_files:
|
||||
print(f'Ignoring error ({error})')
|
||||
else:
|
||||
raise RuntimeError(error)
|
||||
parse_description(desc, OUT_DIR)
|
||||
|
||||
except subprocess.CalledProcessError as e:
|
||||
if remove_out_dir:
|
||||
# Revert directory removal on error
|
||||
os.rename(OUT_DIR, os.path.join(tdir, 'get_rid_of_this'))
|
||||
os.rename(os.path.join(tdir, 'old_out'), OUT_DIR)
|
||||
print(f'Command exited with code {e.returncode}: {e.stderr.decode("utf-8-sig")}')
|
||||
exit(1)
|
||||
except Exception as e:
|
||||
if remove_out_dir:
|
||||
# Revert directory removal on error
|
||||
os.rename(OUT_DIR, os.path.join(tdir, 'get_rid_of_this'))
|
||||
os.rename(os.path.join(tdir, 'old_out'), OUT_DIR)
|
||||
raise e
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
parser = argparse.ArgumentParser(description='generate multi-gallery upload-ready files')
|
||||
parser.add_argument('-s', '--story', dest='story_path',
|
||||
help='path of LibreOffice-readable story file')
|
||||
parser.add_argument('-d', '--description', dest='description_path',
|
||||
help='path of LibreOffice-readable description file')
|
||||
parser.add_argument('-k', '--keep-out-dir', dest='keep_out_dir', action='store_true',
|
||||
help='whether output directory contents should be kept')
|
||||
parser.add_argument('-i', '--ignore-empty-files', dest='ignore_empty_files', action='store_true',
|
||||
help='do not raise an error if any input file is empty or whitespace-only')
|
||||
args = parser.parse_args()
|
||||
|
||||
if not any([args.story_path, args.description_path]):
|
||||
parser.error('at least one of ( --story | --description ) must be set')
|
||||
if args.story_path and not os.path.isfile(args.story_path):
|
||||
parser.error('--story must be a valid file')
|
||||
if args.description_path and not os.path.isfile(args.description_path):
|
||||
parser.error('--description must be a valid file')
|
||||
|
||||
main(**vars(args))
|
276
parse.py
Normal file
276
parse.py
Normal file
|
@ -0,0 +1,276 @@
|
|||
import json
|
||||
import lark
|
||||
import os
|
||||
|
||||
DESCRIPTION_GRAMMAR = r"""
|
||||
?start: document_list
|
||||
|
||||
document_list: document+
|
||||
|
||||
document: b_tag
|
||||
| i_tag
|
||||
| url_tag
|
||||
| self_tag
|
||||
| user_tag_root
|
||||
| TEXT
|
||||
|
||||
b_tag: "[b]" [document_list] "[/b]"
|
||||
i_tag: "[i]" [document_list] "[/i]"
|
||||
url_tag: "[url" ["=" [URL]] "]" [document_list] "[/url]"
|
||||
self_tag: "[self]" [WS] "[/self]"
|
||||
|
||||
user_tag_root: user_tag
|
||||
user_tag: eka_tag
|
||||
| fa_tag
|
||||
| weasyl_tag
|
||||
| ib_tag
|
||||
| sf_tag
|
||||
|
||||
eka_tag: "[eka" ["=" USERNAME] "]" USERNAME "[/eka]"
|
||||
| "[eka" "=" USERNAME "]" [user_tag] "[/eka]"
|
||||
fa_tag: "[fa" ["=" USERNAME] "]" USERNAME "[/fa]"
|
||||
| "[fa" "=" USERNAME "]" [user_tag] "[/fa]"
|
||||
weasyl_tag: "[weasyl" ["=" USERNAME] "]" USERNAME "[/weasyl]"
|
||||
| "[weasyl" "=" USERNAME "]" [user_tag] "[/weasyl]"
|
||||
ib_tag: "[ib" ["=" USERNAME] "]" USERNAME "[/ib]"
|
||||
| "[ib" "=" USERNAME "]" [user_tag] "[/ib]"
|
||||
sf_tag: "[sf" ["=" USERNAME] "]" USERNAME "[/sf]"
|
||||
| "[sf" "=" USERNAME "]" [user_tag] "[/sf]"
|
||||
|
||||
USERNAME: /[a-zA-Z0-9][a-zA-Z0-9 _-]*/
|
||||
URL: /(https?:\/\/)?[^\]]+/
|
||||
TEXT: /([^\[:]|[ \t\r\n]|:(?!icon))+/
|
||||
|
||||
%import common.WS
|
||||
"""
|
||||
|
||||
DESCRIPTION_PARSER = lark.Lark(DESCRIPTION_GRAMMAR, parser='lalr')
|
||||
|
||||
|
||||
class UserTag:
|
||||
def __init__(self, default=None, eka=None, fa=None, weasyl=None, ib=None, sf=None):
|
||||
self.default = default
|
||||
self.eka = eka
|
||||
self.fa = fa
|
||||
self.weasyl = weasyl
|
||||
self.ib = ib
|
||||
self.sf = sf
|
||||
|
||||
class UploadTransformer(lark.Transformer):
|
||||
def document_list(self, data):
|
||||
return ''.join(data)
|
||||
|
||||
def document(self, data):
|
||||
return data[0]
|
||||
|
||||
def b_tag(self, _):
|
||||
raise NotImplementedError('UploadTransformer.b_tag is abstract')
|
||||
|
||||
def i_tag(self, _):
|
||||
raise NotImplementedError('UploadTransformer.i_tag is abstract')
|
||||
|
||||
def url_tag(self, _):
|
||||
raise NotImplementedError('UploadTransformer.url_tag is abstract')
|
||||
|
||||
def self_tag(self, _):
|
||||
raise NotImplementedError('UploadTransformer.self_tag is abstract')
|
||||
|
||||
def user_tag_root(self, data):
|
||||
user_data: UserTag = data[0]
|
||||
if user_data.fa:
|
||||
return self.url_tag((f'https://furaffinity.net/user/{user_data.fa.replace("_", "")}', user_data.default or user_data.fa))
|
||||
if user_data.eka:
|
||||
return self.url_tag((f'https://aryion.com/g4/user/{user_data.eka}', user_data.default or user_data.eka))
|
||||
if user_data.ib:
|
||||
return self.url_tag((f'https://inkbunny.net/{user_data.ib}', user_data.default or user_data.ib))
|
||||
if user_data.sf:
|
||||
return self.url_tag((f'https://{user_data.sf.replace(" ", "-").lower()}.sofurry.com', user_data.default or user_data.sf))
|
||||
if user_data.weasyl:
|
||||
self.url_tag((f'https://www.weasyl.com/~{user_data.weasyl}', user_data.default or user_data.weasyl))
|
||||
raise TypeError('Invalid UserTag data')
|
||||
|
||||
def user_tag(self, data):
|
||||
return data[0]
|
||||
|
||||
def eka_tag(self, data):
|
||||
attribute, inner = data[0], data[1]
|
||||
if attribute and attribute.strip():
|
||||
if isinstance(inner, UserTag):
|
||||
inner.eka = attribute.strip()
|
||||
return inner
|
||||
return UserTag(eka=attribute.strip(), default=inner and inner.strip())
|
||||
return UserTag(eka=inner.strip())
|
||||
|
||||
def fa_tag(self, data):
|
||||
attribute, inner = data[0], data[1]
|
||||
if attribute and attribute.strip():
|
||||
if isinstance(inner, UserTag):
|
||||
inner.fa = attribute.strip()
|
||||
return inner
|
||||
return UserTag(fa=attribute.strip(), default=inner and inner.strip())
|
||||
return UserTag(fa=inner.strip())
|
||||
|
||||
def weasyl_tag(self, data):
|
||||
attribute, inner = data[0], data[1]
|
||||
if attribute and attribute.strip():
|
||||
if isinstance(inner, UserTag):
|
||||
inner.weasyl = attribute.strip()
|
||||
return inner
|
||||
return UserTag(weasyl=attribute.strip(), default=inner and inner.strip())
|
||||
return UserTag(weasyl=inner.strip())
|
||||
|
||||
def ib_tag(self, data):
|
||||
attribute, inner = data[0], data[1]
|
||||
if attribute and attribute.strip():
|
||||
if isinstance(inner, UserTag):
|
||||
inner.ib = attribute.strip()
|
||||
return inner
|
||||
return UserTag(ib=attribute.strip(), default=inner and inner.strip())
|
||||
return UserTag(ib=inner.strip())
|
||||
|
||||
def sf_tag(self, data):
|
||||
attribute, inner = data[0], data[1]
|
||||
if attribute and attribute.strip():
|
||||
if isinstance(inner, UserTag):
|
||||
inner.sf = attribute.strip()
|
||||
return inner
|
||||
return UserTag(sf=attribute.strip(), default=inner and inner.strip())
|
||||
return UserTag(sf=inner.strip())
|
||||
|
||||
class BbcodeTransformer(UploadTransformer):
|
||||
def b_tag(self, data):
|
||||
if data[0] is None or not data[0].strip():
|
||||
return ''
|
||||
return f'[b]{data[0]}[/b]'
|
||||
|
||||
def i_tag(self, data):
|
||||
if data[0] is None or not data[0].strip():
|
||||
return ''
|
||||
return f'[i]{data[0]}[/i]'
|
||||
|
||||
def url_tag(self, data):
|
||||
return f'[url={data[0] or ""}]{data[1] or ""}[/url]'
|
||||
|
||||
class MarkdownTransformer(UploadTransformer):
|
||||
def b_tag(self, data):
|
||||
if data[0] is None or not data[0].strip():
|
||||
return ''
|
||||
return f'**{data[0]}**'
|
||||
|
||||
def i_tag(self, data):
|
||||
if data[0] is None or not data[0].strip():
|
||||
return ''
|
||||
return f'*{data[0]}*'
|
||||
|
||||
def url_tag(self, data):
|
||||
return f'[{data[1] or ""}]({data[0] or ""})'
|
||||
|
||||
class AryionTransformer(BbcodeTransformer):
|
||||
def __init__(self, this_user, *args, **kwargs):
|
||||
super(AryionTransformer, self).__init__(*args, **kwargs)
|
||||
self.self_tag = lambda _: self.user_tag_root((UserTag(eka=this_user),))
|
||||
|
||||
def user_tag_root(self, data):
|
||||
user_data = data[0]
|
||||
if user_data.eka:
|
||||
return f':icon{user_data.eka}:'
|
||||
return super(AryionTransformer, self).user_tag_root(data)
|
||||
|
||||
class FuraffinityTransformer(BbcodeTransformer):
|
||||
def __init__(self, this_user, *args, **kwargs):
|
||||
super(FuraffinityTransformer, self).__init__(*args, **kwargs)
|
||||
self.self_tag = lambda _: self.user_tag_root((UserTag(fa=this_user),))
|
||||
|
||||
def user_tag_root(self, data):
|
||||
user_data = data[0]
|
||||
if user_data.fa:
|
||||
return f':icon{user_data.fa}:'
|
||||
return super(FuraffinityTransformer, self).user_tag_root(data)
|
||||
|
||||
class WeasylTransformer(MarkdownTransformer):
|
||||
def __init__(self, this_user, *args, **kwargs):
|
||||
super(WeasylTransformer, self).__init__(*args, **kwargs)
|
||||
self.self_tag = lambda _: self.user_tag_root((UserTag(weasyl=this_user),))
|
||||
|
||||
def user_tag_root(self, data):
|
||||
user_data = data[0]
|
||||
if user_data.weasyl:
|
||||
return f'<!~{user_data.weasyl}>'
|
||||
if user_data.default is None:
|
||||
if user_data.fa:
|
||||
return f'<fa:{user_data.fa}>'
|
||||
if user_data.ib:
|
||||
return f'<ib:{user_data.ib}>'
|
||||
if user_data.sf:
|
||||
return f'<sf:{user_data.sf}>'
|
||||
return super(WeasylTransformer, self).user_tag_root(data)
|
||||
|
||||
class InkbunnyTransformer(BbcodeTransformer):
|
||||
def __init__(self, this_user, *args, **kwargs):
|
||||
super(InkbunnyTransformer, self).__init__(*args, **kwargs)
|
||||
self.self_tag = lambda _: self.user_tag_root((UserTag(ib=this_user),))
|
||||
|
||||
def user_tag_root(self, data):
|
||||
user_data = data[0]
|
||||
if user_data.ib:
|
||||
return f'[iconname]{user_data.ib}[/iconname]'
|
||||
if user_data.default is None:
|
||||
if user_data.fa:
|
||||
return f'[fa]{user_data.fa}[/fa]'
|
||||
if user_data.sf:
|
||||
return f'[sf]{user_data.sf}[/sf]'
|
||||
if user_data.weasyl:
|
||||
return f'[weasyl]{user_data.weasyl}[/weasyl]'
|
||||
return super(InkbunnyTransformer, self).user_tag_root(data)
|
||||
|
||||
class SoFurryTransformer(BbcodeTransformer):
|
||||
def __init__(self, this_user, *args, **kwargs):
|
||||
super(SoFurryTransformer, self).__init__(*args, **kwargs)
|
||||
self.self_tag = lambda _: self.user_tag_root((UserTag(sf=this_user),))
|
||||
|
||||
def user_tag_root(self, data):
|
||||
user_data = data[0]
|
||||
if user_data.sf:
|
||||
return f':icon{user_data.sf}:'
|
||||
if user_data.default is None:
|
||||
if user_data.fa:
|
||||
return f'fa!{user_data.fa}'
|
||||
if user_data.ib:
|
||||
return f'ib!{user_data.ib}'
|
||||
return super(SoFurryTransformer, self).user_tag_root(data)
|
||||
|
||||
TRANSFORMATIONS = {
|
||||
'furaffinity': ('desc_furaffinity.txt', FuraffinityTransformer),
|
||||
'aryion': ('desc_aryion.txt', AryionTransformer),
|
||||
'weasyl': ('desc_weasyl.md', WeasylTransformer),
|
||||
'inkbunny': ('desc_inkbunny.txt', InkbunnyTransformer),
|
||||
'sofurry': ('desc_sofurry.txt', SoFurryTransformer),
|
||||
}
|
||||
|
||||
|
||||
def parse_description(description, out_dir):
|
||||
parsed_description = DESCRIPTION_PARSER.parse(description)
|
||||
with open('config.json', 'r') as f:
|
||||
config = json.load(f)
|
||||
# Validate JSON
|
||||
errors = []
|
||||
if type(config) is not dict:
|
||||
errors.append(ValueError('Configuration must be a JSON object'))
|
||||
else:
|
||||
for (website, username) in config.items():
|
||||
if website not in TRANSFORMATIONS:
|
||||
errors.append(ValueError(f'Website \'{website}\' is unsupported'))
|
||||
elif type(username) is not str:
|
||||
errors.append(ValueError(f'Website \'{website}\' has invalid username \'{json.dumps(username)}\''))
|
||||
elif username.strip() == '':
|
||||
errors.append(ValueError(f'Website \'{website}\' has empty username'))
|
||||
if errors:
|
||||
raise ExceptionGroup('Invalid configuration for description parsing', errors)
|
||||
# Create descriptions
|
||||
for (website, username) in config.items():
|
||||
(filepath, transformer) = TRANSFORMATIONS[website]
|
||||
with open(os.path.join(out_dir, filepath), 'w') as f:
|
||||
if description:
|
||||
f.write(transformer(username).transform(parsed_description))
|
||||
else:
|
||||
f.write('')
|
1
requirements.txt
Normal file
1
requirements.txt
Normal file
|
@ -0,0 +1 @@
|
|||
lark==1.1.5
|
Reference in a new issue