-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
126 lines (67 loc) · 2.3 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
const express = require('express');
const app = express();
const axios = require('axios');
const { parse } = require("node-html-parser");
var instagramPostLink = "https://www.instagram.com/p/CF2sWwVHxbx/";
let link = "";
async function getPostLink(url) {
url = url + 'embed' + '/captioned';
let res = axios.get(url).then(async (response) => {
const root = parse(response.data);
if (response.data.search("video_url") != -1)
link = getVideoLinkFromHtml(response.data);
else
link = root.querySelector('img.EmbeddedMediaImage').getAttribute("src");
while (link.search("&") != -1) {
link = link.replace("&", "&");
}
let caption =await getCaptionFromHtml(response.data);
link=link.replace('"',"")
return {link,caption};
});
return res;
}
async function getCaption(url) {
url = url + 'embed' + '/captioned';
let res = axios.get(url).then((response) => {
let caption= getCaptionFromHtml(response.data);
return caption;
});
return res;
}
async function getCaptionFromHtml(html) {
const root = parse(html);
let caption=root.querySelector('.Caption')?.text;
if(caption == undefined)
caption="No caption";
caption=caption.replace("view all comments","");
return caption;
}
function getVideoLinkFromHtml(html) {
let crop = "{\"" + html.substring(html.search("video_url"), html.search("video_url") + 1000);
crop = crop.substring(0, crop.search(",")) + "}";
return JSON.parse(crop).video_url;
}
(async ()=>{
await getPostLink(instagramPostLink);
})();
// use the express-static middleware
app.use(express.static('public'));
// define the first route
app.get('/', function (req, res) {
respp = '';
res.setHeader('Content-Type', 'application/json');
var query = require('url').parse(req.url, true).query;
twUrl = String(query.url)
instagramPostLink =twUrl;
if (twUrl.includes('instagram')) {
getPostLink(instagramPostLink).then(Result=>{
res.send(link);
res.end();
})
}else{
res.end("INVALD URL");
}
});
// start the server listening for requests
app.listen(process.env.PORT || 3001, () => console.log('Server is running...'));