2022-12-22 16:19:52 +00:00
|
|
|
from dataclasses import dataclass
|
|
|
|
from enforce_typing import enforce_types
|
|
|
|
from typing import List, Set, Optional, Union
|
2023-07-22 19:56:31 +00:00
|
|
|
import enum
|
2022-12-22 16:19:52 +00:00
|
|
|
import datetime
|
|
|
|
import re
|
|
|
|
import urllib.parse
|
|
|
|
|
2023-07-22 19:56:31 +00:00
|
|
|
class SocialSiteId(enum.Enum):
|
2023-03-06 22:34:30 +00:00
|
|
|
REDDIT = 1 # Should have been named REDDIT_SUBREDDIT
|
|
|
|
REDDIT_USER = 22
|
|
|
|
REDDIT_SUBREDDIT = REDDIT
|
|
|
|
|
2022-12-22 16:19:52 +00:00
|
|
|
TWITTER = 2
|
|
|
|
RSS_FEED = 3
|
|
|
|
PAGE_WATCH = 4
|
|
|
|
LINKTREE_PAGE = 5
|
|
|
|
TWITCH = 6
|
|
|
|
WIKIDATA = 7
|
|
|
|
SONGKICK_ARTIST = 8
|
|
|
|
TUMBLR = 9
|
|
|
|
MASTODON_PAGE = 10
|
|
|
|
INSTAGRAM_PAGE = 11
|
|
|
|
PATREON_PAGE = 12
|
|
|
|
ARTSTATION_PAGE = 13
|
|
|
|
INPRNT_PAGE = 14
|
|
|
|
FACEBOOK_PAGE = 15
|
|
|
|
EMAIL = 16
|
2023-01-02 22:47:03 +00:00
|
|
|
JSON_LD = 17 # Similar to PAGE_WATCH, but focused on embedded microdata
|
|
|
|
SUBSTACK = 18
|
2023-03-06 22:34:30 +00:00
|
|
|
ETSY_SHOP = 19
|
|
|
|
KO_FI = 20
|
|
|
|
BEHANCE_PAGE = 21
|
2023-07-22 19:56:31 +00:00
|
|
|
TIKTOK_USER = 7085
|
2023-05-21 20:07:17 +00:00
|
|
|
PIXIV_USER = 23
|
|
|
|
CARRD_PAGE = 24
|
|
|
|
HENTAI_FOUNDRY = 25
|
|
|
|
YOUTUBE_CHANNEL_HANDLE = 26
|
|
|
|
VIMEO_CHANNEL = 27
|
|
|
|
NEWGROUNDS_PAGE = 28
|
2023-07-22 19:56:31 +00:00
|
|
|
ARTSY_ARTIST = 2042
|
2023-01-02 22:47:03 +00:00
|
|
|
|
|
|
|
def wikidata_property(self, client):
|
|
|
|
return client.get(WIKIDATA_PROPERTIES[self])
|
2022-12-22 16:19:52 +00:00
|
|
|
|
2023-05-21 20:07:17 +00:00
|
|
|
def is_aggregator(self):
|
|
|
|
return self in AGGERAGOR_SOCIALS
|
|
|
|
|
|
|
|
AGGERAGOR_SOCIALS = {SocialSiteId.LINKTREE_PAGE, SocialSiteId.WIKIDATA}
|
|
|
|
|
2022-12-22 16:19:52 +00:00
|
|
|
@enforce_types
|
|
|
|
@dataclass(frozen = True)
|
|
|
|
class SocialLink(object):
|
|
|
|
url: urllib.parse.ParseResult
|
|
|
|
social_site_id: SocialSiteId
|
|
|
|
social_id: Optional[str]
|
|
|
|
|
2023-05-21 20:07:17 +00:00
|
|
|
@enforce_types
|
|
|
|
@dataclass(frozen = True)
|
|
|
|
class WikidataInfo(object):
|
|
|
|
property_id: Optional[int]
|
|
|
|
issuer_id: Optional[int]
|
|
|
|
|
2023-01-02 22:47:03 +00:00
|
|
|
WIKIDATA_PROPERTIES = {
|
2023-05-21 20:07:17 +00:00
|
|
|
SocialSiteId.EMAIL: WikidataInfo(968, None),
|
2023-07-22 19:56:31 +00:00
|
|
|
SocialSiteId.RSS_FEED: WikidataInfo(1079, None),
|
|
|
|
|
2023-05-21 20:07:17 +00:00
|
|
|
SocialSiteId.FACEBOOK_PAGE: WikidataInfo(2013, None),
|
|
|
|
SocialSiteId.INSTAGRAM_PAGE: WikidataInfo(2003, None),
|
|
|
|
SocialSiteId.LINKTREE_PAGE: WikidataInfo(11079, None),
|
|
|
|
SocialSiteId.REDDIT_SUBREDDIT: WikidataInfo(3984, None),
|
|
|
|
SocialSiteId.REDDIT_USER: WikidataInfo(4265, None),
|
|
|
|
SocialSiteId.RSS_FEED: WikidataInfo(1019, None),
|
|
|
|
SocialSiteId.SONGKICK_ARTIST: WikidataInfo(3478, None),
|
|
|
|
SocialSiteId.TWITCH: WikidataInfo(5797, None),
|
|
|
|
SocialSiteId.TWITTER: WikidataInfo(2002, None),
|
2023-07-22 19:56:31 +00:00
|
|
|
SocialSiteId.WIKIDATA: WikidataInfo(None, 2013),
|
2023-05-21 20:07:17 +00:00
|
|
|
|
|
|
|
SocialSiteId.TUMBLR: WikidataInfo(3943, None),
|
|
|
|
SocialSiteId.TIKTOK_USER: WikidataInfo(7085, None),
|
|
|
|
|
|
|
|
SocialSiteId.PIXIV_USER: WikidataInfo(None, 306956),
|
2023-01-02 22:47:03 +00:00
|
|
|
#SocialSiteId.MASTODON_PAGE: 2000 + 10,
|
2023-05-21 20:07:17 +00:00
|
|
|
SocialSiteId.PATREON_PAGE: WikidataInfo(4175, 15861362),
|
|
|
|
SocialSiteId.ARTSTATION_PAGE: WikidataInfo(None, 65551500),
|
|
|
|
#SocialSiteId.INPRNT_PAGE: WikidataInfo(None, None),
|
|
|
|
|
|
|
|
SocialSiteId.CARRD_PAGE: WikidataInfo(None, 106036503),
|
|
|
|
SocialSiteId.HENTAI_FOUNDRY: WikidataInfo(None, 115903301),
|
|
|
|
SocialSiteId.YOUTUBE_CHANNEL_HANDLE: WikidataInfo(11245, 866),
|
|
|
|
SocialSiteId.VIMEO_CHANNEL: WikidataInfo(4015, 156376),
|
|
|
|
SocialSiteId.NEWGROUNDS_PAGE: WikidataInfo(None, 263655),
|
2023-07-22 19:56:31 +00:00
|
|
|
SocialSiteId.ARTSY_ARTIST: WikidataInfo(2042, 4796642),
|
2023-01-02 22:47:03 +00:00
|
|
|
}
|
|
|
|
|
2023-05-21 20:07:17 +00:00
|
|
|
def re_social_subdomain(main_domain):
|
|
|
|
#return r'^(?:https?:\/\/)?([\w_-]+)\.'+re.escape(main_domain)+'\/?$'
|
|
|
|
return r'^(?:https?:\/\/)?([\w_-]+)\.'+re.escape(main_domain)+'(\/.*)?$'
|
|
|
|
|
2023-07-22 19:56:31 +00:00
|
|
|
RE_ID = r'@?([^/]+)'
|
2023-05-21 20:07:17 +00:00
|
|
|
|
|
|
|
def re_social_path(main_domain):
|
|
|
|
#return r'^(?:https?:\/\/)?(?:www\.)?'+re.escape(main_domain)+'\/'+RE_ID+'\/?$'
|
|
|
|
return re_social_path_adv(main_domain, RE_ID)
|
|
|
|
|
|
|
|
def re_social_path_adv(main_domain, *path):
|
|
|
|
l = [r'^', '(?:https?:\/\/)?', r'(?:www\.)?', re.escape(main_domain)]
|
|
|
|
|
|
|
|
for p in path:
|
|
|
|
l.append(r'\/')
|
|
|
|
l.append(RE_ID if p == RE_ID else re.escape(p))
|
|
|
|
l.append(r'\/?$')
|
|
|
|
return ''.join(l)
|
|
|
|
|
2023-01-02 22:47:03 +00:00
|
|
|
MAILTO_URL = r'^mailto:(?:[\w._.]+@[\w._.]+)$'
|
2023-05-21 20:07:17 +00:00
|
|
|
|
|
|
|
REDDIT_SUBREDDIT_URL = r'^(?:https?:\/\/)?(?:old\.)?reddit\.com\/r\/([\w-]+)\/?$'
|
|
|
|
REDDIT_USER_URL = r'^(?:https?:\/\/)?(?:old\.)?reddit\.com\/user\/([\w-]+)(?:|\/submitted)\/?$'
|
|
|
|
TWITTER_HANDLE_URL =re_social_path('twitter.com')
|
|
|
|
LINKTREE_PAGE_URL = re_social_path('linktr.ee')
|
|
|
|
TWITCH_STREAM_URL = re_social_path('twitch.tv')
|
|
|
|
WIKIDATA_ITEM_URL = re_social_path_adv('wikidata.org', 'wiki', RE_ID)
|
|
|
|
SONGKICK_ARTIST_URL = r'^(?:https?:\/\/)?(?:www\.)?songkick\.com\/artists\/(\d+)([\w-]*)\/?$'
|
|
|
|
TUMBLR_PAGE_URL = re_social_path('tumblr.com')
|
|
|
|
TUMBLR_PAGE_URL_2 = re_social_subdomain('tumblr.com')
|
|
|
|
INSTAGRAM_URL = re_social_path('instagram.com')
|
|
|
|
PATREON_URL = re_social_path('patreon.com')
|
|
|
|
ARTSTATION_URL = re_social_path('artstation.com')
|
|
|
|
INPRNT_URL = re_social_path_adv('inprnt.com', 'gallery', RE_ID)
|
|
|
|
FACEBOOK_PAGE_URL = re_social_path('facebook.com')
|
|
|
|
SUBSTACK_PREFIX_URL = re_social_subdomain('substack.com')
|
|
|
|
ETSY_SHOP_URL = re_social_path_adv('etsy.com', 'shop', RE_ID)
|
|
|
|
BEHANCE_PAGE_URL = re_social_path('behance.net')
|
|
|
|
TIKTOK_USER_URL = re_social_path('tiktok.com')
|
|
|
|
PIXIV_USER_URL = r'^(?:https?:\/\/)?(?:www\.)?pixiv\.net(?:\/en)?\/users/(\d+)\/?$'
|
|
|
|
PIXIV_USER_URL_2 = r'^(?:https?:\/\/)?(?:www\.)?pixiv\.net(?:\/en)?\/member\.php\/?[?]id=(\d+)$'
|
|
|
|
|
|
|
|
URL_PARSE_CARRD_PAGE = re_social_subdomain('carrd.co')
|
|
|
|
URL_PARSE_HENTAI_FOUNDRY= re_social_path_adv('hentai-foundry.com', 'user', RE_ID, 'profile')
|
|
|
|
URL_PARSE_YOUTUBE_CHANNEL_HANDLE_1= re_social_path_adv('youtube.com', RE_ID)
|
|
|
|
URL_PARSE_YOUTUBE_CHANNEL_HANDLE_2= re_social_path_adv('youtube.com', 'c', RE_ID)
|
|
|
|
URL_PARSE_VIMEO_CHANNEL= re_social_path_adv('vimeo.com', RE_ID)
|
2023-07-22 19:56:31 +00:00
|
|
|
URL_PARSE_NEWGROUNDS_PAGE = re_social_subdomain('newgrounds.com')
|
|
|
|
URL_PARSE_ARTSY_ARTIST = re_social_path_adv('artsy.net', 'artist', RE_ID)
|
2022-12-22 16:19:52 +00:00
|
|
|
|
|
|
|
REGEXES = [
|
2023-03-06 22:34:30 +00:00
|
|
|
# Reddit
|
|
|
|
(REDDIT_SUBREDDIT_URL, SocialSiteId.REDDIT_SUBREDDIT),
|
|
|
|
(REDDIT_USER_URL, SocialSiteId.REDDIT_USER),
|
2022-12-22 16:19:52 +00:00
|
|
|
|
|
|
|
# Twitter
|
|
|
|
(TWITTER_HANDLE_URL, SocialSiteId.TWITTER),
|
|
|
|
|
|
|
|
# Facebook
|
|
|
|
(FACEBOOK_PAGE_URL, SocialSiteId.FACEBOOK_PAGE),
|
|
|
|
|
|
|
|
# Linktr.ee
|
|
|
|
(LINKTREE_PAGE_URL, SocialSiteId.LINKTREE_PAGE),
|
|
|
|
|
|
|
|
# Twitch.tv
|
|
|
|
(TWITCH_STREAM_URL, SocialSiteId.TWITCH),
|
|
|
|
|
|
|
|
# Wikidata
|
|
|
|
(WIKIDATA_ITEM_URL, SocialSiteId.WIKIDATA),
|
|
|
|
|
|
|
|
# Songkick
|
|
|
|
(SONGKICK_ARTIST_URL, SocialSiteId.SONGKICK_ARTIST),
|
|
|
|
|
|
|
|
# Tumblr
|
|
|
|
(TUMBLR_PAGE_URL, SocialSiteId.TUMBLR),
|
|
|
|
(TUMBLR_PAGE_URL_2, SocialSiteId.TUMBLR),
|
|
|
|
|
|
|
|
# Instagram
|
|
|
|
(INSTAGRAM_URL, SocialSiteId.INSTAGRAM_PAGE),
|
|
|
|
|
2023-05-21 20:07:17 +00:00
|
|
|
# Tiktok
|
|
|
|
(TIKTOK_USER_URL, SocialSiteId.TIKTOK_USER),
|
|
|
|
|
|
|
|
# Pixiv
|
|
|
|
(PIXIV_USER_URL, SocialSiteId.PIXIV_USER),
|
|
|
|
(PIXIV_USER_URL_2, SocialSiteId.PIXIV_USER),
|
|
|
|
|
2022-12-22 16:19:52 +00:00
|
|
|
# Patreon
|
|
|
|
(PATREON_URL, SocialSiteId.PATREON_PAGE),
|
|
|
|
|
|
|
|
# Artstation
|
|
|
|
(ARTSTATION_URL, SocialSiteId.ARTSTATION_PAGE),
|
|
|
|
|
|
|
|
# Inprnt
|
|
|
|
(INPRNT_URL, SocialSiteId.INPRNT_PAGE),
|
|
|
|
|
|
|
|
# Email
|
|
|
|
(MAILTO_URL, SocialSiteId.EMAIL),
|
2023-01-02 22:47:03 +00:00
|
|
|
|
|
|
|
# Substack
|
|
|
|
(SUBSTACK_PREFIX_URL, SocialSiteId.SUBSTACK),
|
2023-03-06 22:34:30 +00:00
|
|
|
|
|
|
|
# Etsy shop
|
|
|
|
(ETSY_SHOP_URL, SocialSiteId.ETSY_SHOP),
|
|
|
|
|
|
|
|
# Ko-fi
|
2023-05-21 20:07:17 +00:00
|
|
|
(re_social_path_adv('ko-fi.com', RE_ID), SocialSiteId.KO_FI),
|
|
|
|
(re_social_path_adv('ko-fi.com', RE_ID, 'shop'), SocialSiteId.KO_FI),
|
2023-03-06 22:34:30 +00:00
|
|
|
|
|
|
|
# Behance
|
|
|
|
(BEHANCE_PAGE_URL, SocialSiteId.BEHANCE_PAGE),
|
2023-05-21 20:07:17 +00:00
|
|
|
|
|
|
|
# Carrd
|
|
|
|
(URL_PARSE_CARRD_PAGE, SocialSiteId.CARRD_PAGE),
|
|
|
|
|
|
|
|
# Hentai-Foundry
|
|
|
|
(URL_PARSE_HENTAI_FOUNDRY, SocialSiteId.HENTAI_FOUNDRY),
|
|
|
|
|
|
|
|
# Youtube
|
|
|
|
(URL_PARSE_YOUTUBE_CHANNEL_HANDLE_1, SocialSiteId.YOUTUBE_CHANNEL_HANDLE),
|
|
|
|
(URL_PARSE_YOUTUBE_CHANNEL_HANDLE_2, SocialSiteId.YOUTUBE_CHANNEL_HANDLE),
|
|
|
|
|
|
|
|
# Vimeo
|
|
|
|
(URL_PARSE_VIMEO_CHANNEL, SocialSiteId.VIMEO_CHANNEL),
|
|
|
|
|
|
|
|
# Newgrounds
|
|
|
|
(URL_PARSE_NEWGROUNDS_PAGE, SocialSiteId.NEWGROUNDS_PAGE),
|
2023-07-22 19:56:31 +00:00
|
|
|
|
|
|
|
# Artsy
|
|
|
|
(URL_PARSE_ARTSY_ARTIST, SocialSiteId.ARTSY_ARTIST),
|
2022-12-22 16:19:52 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
def determine_social_from_url_internally(url):
|
2023-07-22 19:56:31 +00:00
|
|
|
assert isinstance(url, str)
|
2022-12-22 16:19:52 +00:00
|
|
|
|
|
|
|
# Regexes
|
|
|
|
for (social_site_url_regex, social_site_id) in REGEXES:
|
2023-03-06 22:34:30 +00:00
|
|
|
if m := re.match(social_site_url_regex, url, re.I):
|
2023-01-02 22:47:03 +00:00
|
|
|
groups = m.groups()
|
|
|
|
return (social_site_id, groups[0] if len(groups) > 0 else None)
|
2022-12-22 16:19:52 +00:00
|
|
|
|
|
|
|
# Mastodon
|
|
|
|
if 'mastodon' in url:
|
|
|
|
return (SocialSiteId.MASTODON_PAGE, None)
|
|
|
|
|
|
|
|
# Feed (?)
|
|
|
|
elif 'feed' in url or 'xml' in url or 'rss' in url or 'atom' in url:
|
|
|
|
return (SocialSiteId.RSS_FEED, None)
|
|
|
|
|
|
|
|
return (None, None)
|
|
|
|
|
|
|
|
def determine_social_from_url(url):
|
2023-01-02 22:47:03 +00:00
|
|
|
if isinstance(url, str):
|
|
|
|
url = urllib.parse.urlparse(url)
|
2023-05-21 20:07:17 +00:00
|
|
|
(social_site_id, social_id) = determine_social_from_url_internally(url._replace(query = '', fragment = '').geturl())
|
|
|
|
if not social_site_id:
|
|
|
|
(social_site_id, social_id) = determine_social_from_url_internally(url._replace(fragment = '').geturl())
|
2022-12-22 16:19:52 +00:00
|
|
|
|
|
|
|
if not social_site_id:
|
|
|
|
return None
|
2023-01-02 22:47:03 +00:00
|
|
|
return SocialLink(url, social_site_id, social_id)
|
2022-12-22 16:19:52 +00:00
|
|
|
|
2023-05-21 20:07:17 +00:00
|
|
|
def run_tests():
|
2023-03-06 22:34:30 +00:00
|
|
|
assert determine_social_from_url('http://www.twitter.com/dril').social_id == 'dril'
|
|
|
|
assert determine_social_from_url('http://worstdril.tumblr.com/')
|
|
|
|
assert determine_social_from_url('https://deep-dark-fears.tumblr.com').social_id == 'deep-dark-fears'
|
|
|
|
assert determine_social_from_url('https://www.etsy.com/shop/aleksiremesart').social_id == 'aleksiremesart'
|
|
|
|
assert determine_social_from_url('https://ko-fi.com/A627LI1/shop').social_id == 'A627LI1'
|
|
|
|
assert determine_social_from_url('https://ko-fi.com/A627LI1/').social_id == 'A627LI1'
|
2023-05-21 20:07:17 +00:00
|
|
|
assert determine_social_from_url('https://www.facebook.com/fredagscafeen.dk/').social_id == 'fredagscafeen.dk'
|
|
|
|
assert determine_social_from_url('https://www.tiktok.com/@depthsofwikipedia?lang=en').social_id == 'depthsofwikipedia'
|
|
|
|
assert determine_social_from_url('https://www.pixiv.net/users/14866303').social_id == '14866303'
|
|
|
|
assert determine_social_from_url('https://www.pixiv.net/member.php?id=109710').social_id == '109710'
|
|
|
|
|
|
|
|
INSTAGRAMS = [
|
|
|
|
'https://instagram.com/_richardparry_',
|
|
|
|
'https://instagram.com/j_kmor/',
|
|
|
|
'https://instagram.com/cullensartbox/',
|
|
|
|
'https://www.instagram.com/timkongart/',
|
|
|
|
'https://www.instagram.com/kcn.wu/',
|
|
|
|
'https://www.instagram.com/itsbettyjiang',
|
|
|
|
]
|
|
|
|
|
|
|
|
for ig in INSTAGRAMS:
|
|
|
|
assert determine_social_from_url(ig).social_site_id == SocialSiteId.INSTAGRAM_PAGE
|
|
|
|
|
|
|
|
TEST = True
|
|
|
|
if TEST:
|
|
|
|
run_tests()
|