-
-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathindex.js
184 lines (150 loc) · 4.55 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
/**
* @providesModule react-native-link-preview
*/
const cheerio = require('cheerio-without-node-native');
const urlObj = require('url');
import { REGEX_VALID_URL } from './constants';
export default class LinkPreview {
static getPreview(text) {
return new Promise((resolve, reject) => {
if (!text) {
reject({ error: 'React-Native-Link-Preview did not receive either a url or text' });
}
let detectedUrl = null;
text.split(' ').forEach(token => {
if (REGEX_VALID_URL.test(token) && !detectedUrl) {
detectedUrl = token;
}
});
if (detectedUrl) {
fetch(detectedUrl)
.then(response => response.text())
.then(text => {
resolve(this._parseResponse(text, detectedUrl));
})
.catch(error => reject({ error }));
} else {
reject({ error: 'React-Native-Preview-Link did not find a link in the text' });
}
});
}
static _parseResponse(body, url) {
const doc = cheerio.load(body);
return {
url,
title: this._getTitle(doc),
description: this._getDescription(doc),
mediaType: this._getMediaType(doc) || 'website',
images: this._getImages(doc, url),
videos: this._getVideos(doc)
};
}
static _getTitle(doc) {
let title = doc('meta[property=\'og:title\']').attr('content');
if (!title) {
title = doc('title').text();
}
return title;
}
static _getDescription(doc) {
let description = doc('meta[name=description]').attr('content');
if (description === undefined) {
description = doc('meta[name=Description]').attr('content');
}
if (description === undefined) {
description = doc('meta[property=\'og:description\']').attr('content');
}
return description;
}
static _getMediaType(doc) {
const node = doc('meta[name=medium]');
if (node.length) {
const content = node.attr('content');
return content === 'image' ? 'photo' : content;
} else {
return doc('meta[property=\'og:type\']').attr('content');
}
}
static _getImages(doc, rootUrl) {
let images = [],
nodes,
src,
dic;
nodes = doc('meta[property=\'og:image\']');
if (nodes.length) {
nodes.each((index, node) => {
src = node.attribs.content;
if (src) {
src = urlObj.resolve(rootUrl, src);
images.push(src);
}
});
}
if (images.length <= 0) {
src = doc('link[rel=image_src]').attr('href');
if (src) {
src = urlObj.resolve(rootUrl, src);
images = [src];
} else {
nodes = doc('img');
if (nodes.length) {
dic = {};
images = [];
nodes.each((index, node) => {
src = node.attribs.src;
if (src && !dic[src]) {
dic[src] = 1;
// width = node.attribs.width;
// height = node.attribs.height;
images.push(urlObj.resolve(rootUrl, src));
}
});
}
}
}
return images;
}
static _getVideos(doc) {
const videos = [];
let nodeTypes;
let nodeSecureUrls;
let nodeType;
let nodeSecureUrl;
let video;
let videoType;
let videoSecureUrl;
let width;
let height;
let videoObj;
let index;
const nodes = doc('meta[property=\'og:video\']');
const length = nodes.length;
if (length) {
nodeTypes = doc('meta[property=\'og:video:type\']');
nodeSecureUrls = doc('meta[property=\'og:video:secure_url\']');
width = doc('meta[property=\'og:video:width\']').attr('content');
height = doc('meta[property=\'og:video:height\']').attr('content');
for (index = 0; index < length; index++) {
video = nodes[index].attribs.content;
nodeType = nodeTypes[index];
videoType = nodeType ? nodeType.attribs.content : null;
nodeSecureUrl = nodeSecureUrls[index];
videoSecureUrl = nodeSecureUrl ? nodeSecureUrl.attribs.content : null;
videoObj = { url: video, secureUrl: videoSecureUrl, type: videoType, width, height };
if (videoType.indexOf('video/') === 0) {
videos.splice(0, 0, videoObj);
} else {
videos.push(videoObj);
}
}
}
return videos;
}
// static _parseMediaResponse(res, contentType, url) {
// if (contentType.indexOf('image/') === 0) {
// return createResponseData(url, false, '', '', contentType, 'photo', [url]);
// } else {
// return createResponseData(url, false, '', '', contentType);
// }
// }
}