social-link-parser
Version:
Extract usernames, IDs, and metadata from social media URLs across 100+ platforms
57 lines • 1.94 kB
JavaScript
import { Platforms } from '../../core/types.js';
import { normalize } from '../../utils/url.js';
import { createDomainPattern } from '../../utils/url.js';
import { QUERY_HASH } from '../../utils/constants.js';
const domains = ['triller.co'];
const subdomains = [];
const DOMAIN_PATTERN = createDomainPattern(domains, subdomains);
export const triller = {
id: Platforms.Triller,
name: 'Triller',
color: '#FF006E',
domains: domains,
subdomains: subdomains,
patterns: {
profile: new RegExp(`^https?://${DOMAIN_PATTERN}/@([A-Za-z0-9_.]{3,30})/?${QUERY_HASH}$`, 'i'),
handle: /^@?[A-Za-z0-9_.]{3,30}$/,
content: {
video: new RegExp(`^https?://${DOMAIN_PATTERN}/watch\\?v=([A-Za-z0-9_-]{8,})${QUERY_HASH}`, 'i'),
},
},
detect(url) {
if (!this.domains.some(domain => url.includes(domain)))
return false;
return this.patterns.profile.test(url) || !!(this.patterns.content?.video?.test(url));
},
extract(url, res) {
const video = this.patterns.content?.video?.exec(url);
if (video) {
res.ids.videoId = video[1];
res.metadata.isVideo = true;
res.metadata.contentType = 'video';
return;
}
const prof = this.patterns.profile.exec(url);
if (prof) {
res.username = prof[1];
res.metadata.isProfile = true;
res.metadata.contentType = 'profile';
}
},
validateHandle(handle) {
return this.patterns.handle.test(handle);
},
buildProfileUrl(username) {
return `https://triller.co/@${username.replace(/^@/, '')}`;
},
buildContentUrl(contentType, id) {
if (contentType === 'video') {
return `https://triller.co/watch?v=${id}`;
}
return '';
},
normalizeUrl(url) {
return normalize(url);
},
};
//# sourceMappingURL=index.js.map