2022-04-07 07:01:09 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
import re
|
|
|
|
import json
|
|
|
|
|
|
|
|
"""
|
|
|
|
Examples:
|
|
|
|
1. - /r/place
|
|
|
|
- r/place
|
|
|
|
2. /rplace
|
|
|
|
3. - https://www.reddit.com/r/place
|
|
|
|
- www.reddit.com/r/place
|
|
|
|
- reddit.com/r/place
|
|
|
|
4. - [https://www.reddit.com/r/place](https://www.reddit.com/r/place)
|
|
|
|
- [www.reddit.com/r/place](www.reddit.com/r/place)
|
|
|
|
- [reddit.com/r/place](reddit.com/r/place)
|
|
|
|
UNUSED AND FAULTY
|
|
|
|
5. - https://place.reddit.com
|
|
|
|
- place.reddit.com
|
|
|
|
6. - [https://place.reddit.com](https://place.reddit.com)
|
|
|
|
- [place.reddit.com](https://place.reddit.com)
|
|
|
|
"""
|
|
|
|
format_subreddit_regex = {
|
|
|
|
# r/... to /r/...
|
|
|
|
"template": r"/r/\1",
|
2022-04-07 09:36:29 +02:00
|
|
|
"commatization": r',*(?: +and)? +',
|
2022-04-07 07:01:09 +02:00
|
|
|
"pattern1": r'\/?[rR]\/([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/$)?',
|
|
|
|
"pattern2": r'^\/?[rR](?!\/)([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/$)?',
|
|
|
|
"pattern3": r'(?:(?:https?:\/\/)?(?:(?:www|old|new|np)\.)?)?reddit\.com\/r\/([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/[^" ]*)*',
|
|
|
|
"pattern4": r'\[[A-Za-z0-9][A-Za-z0-9_]{1,20}\]\((?:(?:https:\/\/)?(?:(?:www|old|new|np)\.)?)?reddit\.com\/r\/([A-Za-z0-9][A-Za-z0-9_]{1,20})(?:\/[^" ]*)*\)',
|
|
|
|
# "pattern5": r'(?:https?:\/\/)?(?!^www\.)(.+)\.reddit\.com(?:\/[^"]*)*',
|
|
|
|
# "pattern6": r'\[(?:https?:\/\/)?(?!^www\.)(.+)\.reddit\.com(?:\/[^"]*)*\]\((?:https:\/\/)?(?!^www\.)(.+)\.reddit\.com(?:\/[^"]*)*\)"',
|
|
|
|
}
|
|
|
|
|
2022-04-07 09:36:29 +02:00
|
|
|
collapse_links_regex = r'\[(.+?)\]\((.+?)\)'
|
2022-04-07 07:01:09 +02:00
|
|
|
|
|
|
|
def format_subreddit(entry: dict):
|
2022-04-07 09:36:29 +02:00
|
|
|
if not "subreddit" in entry or not entry['subreddit']:
|
2022-04-07 07:01:09 +02:00
|
|
|
return entry
|
|
|
|
|
|
|
|
subredditLink = entry["subreddit"]
|
|
|
|
subredditLink = re.sub(format_subreddit_regex["commatization"], ', ', subredditLink)
|
|
|
|
subredditLink = re.sub(format_subreddit_regex["pattern4"], format_subreddit_regex["template"], subredditLink)
|
|
|
|
subredditLink = re.sub(format_subreddit_regex["pattern3"], format_subreddit_regex["template"], subredditLink)
|
|
|
|
subredditLink = re.sub(format_subreddit_regex["pattern1"], format_subreddit_regex["template"], subredditLink)
|
|
|
|
subredditLink = re.sub(format_subreddit_regex["pattern2"], format_subreddit_regex["template"], subredditLink)
|
|
|
|
|
|
|
|
if not subredditLink:
|
|
|
|
return entry
|
|
|
|
|
|
|
|
entry["subreddit"] = subredditLink
|
|
|
|
return entry
|
|
|
|
|
|
|
|
def collapse_links(entry: dict):
|
2022-04-07 09:36:29 +02:00
|
|
|
if not "website" in entry or not entry['website']:
|
2022-04-07 07:01:09 +02:00
|
|
|
return entry
|
2022-04-07 09:36:29 +02:00
|
|
|
|
2022-04-07 07:01:09 +02:00
|
|
|
website = entry["website"];
|
2022-04-07 09:36:29 +02:00
|
|
|
if re.search(collapse_links_regex, website):
|
|
|
|
match = re.search(collapse_links_regex, website)
|
2022-04-07 07:01:09 +02:00
|
|
|
if match.group(1) == match.group(2):
|
|
|
|
website = match.group(2)
|
|
|
|
|
|
|
|
entry["website"] = website
|
|
|
|
return entry
|
|
|
|
|
|
|
|
def remove_extras(entry: dict):
|
|
|
|
for key in entry:
|
|
|
|
if not entry[key] or not isinstance(entry[key], str):
|
|
|
|
continue
|
|
|
|
# Leading and trailing spaces
|
|
|
|
entry[key] = re.sub(r'^(\s+)', r'', entry[key])
|
|
|
|
entry[key] = re.sub(r'(\s+)$', r'', entry[key])
|
|
|
|
# Double spaces and commas
|
|
|
|
entry[key] = re.sub(r' {2,}', r' ', entry[key])
|
2022-04-07 09:36:29 +02:00
|
|
|
entry[key] = re.sub(r'\n{2,}', r'\n', entry[key])
|
2022-04-07 07:01:09 +02:00
|
|
|
entry[key] = re.sub(r',{2,}', r',', entry[key])
|
|
|
|
# Psuedo-empty strings
|
|
|
|
if entry[key] in ["n/a", "N/A", "-", "null", "none", "None"]:
|
|
|
|
entry[key] = ""
|
|
|
|
|
|
|
|
return entry
|
|
|
|
|
|
|
|
def fix_r_caps(entry: dict):
|
2022-04-07 09:36:29 +02:00
|
|
|
if not "description" in entry or not entry['description']:
|
2022-04-07 07:01:09 +02:00
|
|
|
return entry
|
|
|
|
|
|
|
|
entry["description"] = re.sub(r'R\/', 'r/', entry["description"])
|
|
|
|
|
|
|
|
return entry
|
|
|
|
|
2022-04-07 09:10:08 +02:00
|
|
|
def fix_no_protocol_urls(entry: dict):
|
2022-04-07 09:36:29 +02:00
|
|
|
if not "website" in entry or not entry['website']:
|
2022-04-07 09:10:08 +02:00
|
|
|
return entry
|
|
|
|
|
2022-04-07 09:36:29 +02:00
|
|
|
if not entry["website"].startswith("http"):
|
2022-04-07 09:10:08 +02:00
|
|
|
entry["website"] = "https://" + entry["website"]
|
|
|
|
|
|
|
|
return entry
|
|
|
|
|
2022-04-07 07:01:09 +02:00
|
|
|
def per_line_entries(entries: list):
|
|
|
|
out = "[\n"
|
|
|
|
for entry in entries:
|
|
|
|
out += json.dumps(entry) + ",\n"
|
|
|
|
out = out[:-2] + "\n]"
|
|
|
|
return out
|
|
|
|
|
|
|
|
def format_all(entry: dict, silent=False):
|
|
|
|
def print_(*args, **kwargs):
|
|
|
|
if not silent:
|
|
|
|
print(*args, **kwargs)
|
|
|
|
print_("Removing extras...")
|
|
|
|
entry = remove_extras(entry)
|
|
|
|
print_("Fixing r/ capitalization...")
|
|
|
|
entry = fix_r_caps(entry)
|
2022-04-07 09:10:08 +02:00
|
|
|
print_("Fixing links without protocol...")
|
|
|
|
entry = fix_no_protocol_urls(entry)
|
2022-04-07 07:01:09 +02:00
|
|
|
print_("Collapsing Markdown links...")
|
|
|
|
entry = collapse_links(entry)
|
|
|
|
print_("Fix formatting of subreddit...")
|
|
|
|
entry = format_subreddit(entry)
|
|
|
|
print_("Completed!")
|
|
|
|
return entry
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
def go(path):
|
|
|
|
|
|
|
|
print(f"Formatting {path}...")
|
|
|
|
|
|
|
|
with open(path, "r+", encoding='UTF-8') as f1:
|
|
|
|
entries = json.loads(f1.read())
|
|
|
|
|
|
|
|
for i in range(len(entries)):
|
|
|
|
entries[i] = format_all(entries[i], True)
|
|
|
|
if not (i % 500):
|
|
|
|
print(f"{i} checked.")
|
|
|
|
|
|
|
|
print(f"{len(entries)} checked.")
|
|
|
|
|
|
|
|
with open(path, "w", encoding='UTF-8') as f2:
|
|
|
|
f2.write(per_line_entries(entries))
|
|
|
|
|
|
|
|
print("Writing completed. All done.")
|
|
|
|
|
|
|
|
go("../web/atlas.json")
|
|
|
|
go("../web/atlas-before-ids-migration.json")
|