deno.land / x / google_play_scraper@v10.0.0 / lib / similar.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
import * as R from 'ramda';import url from 'url';import request from './utils/request.js';import queryString from 'querystring';import scriptData from './utils/scriptData.js';import { BASE_URL } from './constants.js';import { processFullDetailApps, checkFinished } from './utils/processPages.js';import createDebug from 'debug';
const debug = createDebug('google-play-scraper:similar');
function similar (opts) { return new Promise(function (resolve, reject) { validateSimilarParameters(opts);
const mergedOpts = Object.assign({}, { appId: encodeURIComponent(opts.appId), lang: opts.lang || 'en', country: opts.country || 'us', fullDetail: opts.fullDetail });
const qs = queryString.stringify({ id: mergedOpts.appId, hl: 'en', gl: mergedOpts.country });
const similarUrl = `${BASE_URL}/store/apps/details?${qs}`; const options = Object.assign({ url: similarUrl, followRedirect: true }, opts.requestOptions);
debug('Similar Request URL: %s', similarUrl);
request(options, opts.throttle) .then(scriptData.parse) .then(parsedObject => parseSimilarApps(parsedObject, mergedOpts)) .then(resolve) .catch(reject); });}
function validateSimilarParameters (opts) { if (!opts || !opts.appId) { throw Error('appId missing'); }}
const INITIAL_MAPPINGS = { clusters: { path: [1, 1], useServiceRequestId: 'ag2B9c' }, apps: ['ds:3', 0, 1, 0, 21, 0], token: ['ds:3', 0, 1, 0, 21, 1, 3, 1]};
const CLUSTER_MAPPING = { title: [21, 1, 0], url: [21, 1, 2, 4, 2]};
const SIMILAR_APPS = 'Similar apps';const SIMILAR_GAMES = 'Similar games';
function parseSimilarApps (similarObject, opts) { const clusters = scriptData.extractDataWithServiceRequestId(similarObject, INITIAL_MAPPINGS.clusters);
if (clusters.length === 0) { throw Error('Similar apps not found'); }
let similarAppsCluster = clusters.filter(cluster => { return R.path(CLUSTER_MAPPING.title, cluster) === SIMILAR_APPS || R.path(CLUSTER_MAPPING.title, cluster) === SIMILAR_GAMES || clusters; });
if (similarAppsCluster.length === 0) { similarAppsCluster = clusters; }
const clusterUrl = getParsedCluster(similarAppsCluster[0]);
const fullClusterUrl = `${BASE_URL}${clusterUrl}&gl=${opts.country}&hl=${opts.lang}`; debug('Cluster Request URL: %s', fullClusterUrl);
const options = Object.assign({ url: fullClusterUrl, followRedirect: true }, opts.requestOptions);
return request(options, opts.throttle) .then(scriptData.parse) .then((htmlParsed) => processFirstPage(htmlParsed, opts, [], INITIAL_MAPPINGS));}
async function processFirstPage (html, opts, savedApps, mappings) { if (R.is(String, html)) { html = scriptData.parse(html); }
const mapping = { title: [3], appId: [0, 0], url: { path: [10, 4, 2], fun: (path) => new url.URL(path, BASE_URL).toString() }, icon: [1, 3, 2], developer: [14], currency: [8, 1, 0, 1], price: { path: [8, 1, 0, 0], fun: (price) => price / 1000000 }, free: { path: [8, 1, 0, 0], fun: (price) => price === 0 }, summary: [13, 1], scoreText: [4, 0], score: [4, 1] };
const processedApps = R.map(scriptData.extractor(mapping), R.path(mappings.apps, html));
const apps = opts.fullDetail ? await processFullDetailApps(processedApps, opts) : processedApps; const token = R.path(mappings.token, html);
return checkFinished(opts, [...savedApps, ...apps], token);}
function getParsedCluster (similarObject) { const clusterUrl = R.path(CLUSTER_MAPPING.url, similarObject); return clusterUrl;}
export default similar;
google_play_scraper

Version Info

Tagged at
9 months ago