deno.land / x / google_play_scraper@v10.0.0 / lib / developer.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
import qs from 'querystring';import url from 'url';import scriptData from './utils/scriptData.js';import { BASE_URL } from './constants.js';import request from './utils/request.js';import * as R from 'ramda';import { checkFinished, processFullDetailApps } from './utils/processPages.js';import createDebug from 'debug';
const debug = createDebug('google-play-scraper:developer');
function buildUrl (opts) { const { lang, devId, country } = opts; const url = `${BASE_URL}/store/apps`; const path = isNaN(opts.devId) ? '/developer' : '/dev';
const queryString = { id: devId, hl: lang, gl: country };
const fullURL = `${url}${path}?${qs.stringify(queryString)}`;
debug('Initial request: %s', fullURL);
return fullURL;}
function developer (opts) { return new Promise(function (resolve, reject) { if (!opts.devId) { throw Error('devId missing'); }
opts = Object.assign({ num: 60, lang: 'en', country: 'us' }, opts);
const options = Object.assign({ url: buildUrl(opts), method: 'GET', followRedirect: true }, opts.requestOptions);
request(options, opts.throttle) .then(scriptData.parse) .then(parsedObject => parseDeveloperApps(parsedObject, opts)) .then(resolve) .catch(reject); });}
async function parseDeveloperApps (html, opts) { if (R.is(String, html)) { html = scriptData.parse(html); }
const initialMappings = isNaN(opts.devId) ? { apps: ['ds:3', 0, 1, 0, 22, 0], token: ['ds:3', 0, 1, 0, 22, 1, 3, 1] } : { apps: ['ds:3', 0, 1, 0, 21, 0], token: ['ds:3', 0, 1, 0, 21, 1, 3, 1] };
const appsMappings = isNaN(opts.devId) ? { title: [0, 3], appId: [0, 0, 0], url: { path: [0, 10, 4, 2], fun: (path) => new url.URL(path, BASE_URL).toString() }, icon: [0, 1, 3, 2], developer: [0, 14], currency: [0, 8, 1, 0, 1], price: { path: [0, 8, 1, 0, 0], fun: (price) => price / 1000000 }, free: { path: [0, 8, 1, 0, 0], fun: (price) => price === 0 }, summary: [0, 13, 1], scoreText: [0, 4, 0], score: [0, 4, 1] } : { 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(appsMappings), R.path(initialMappings.apps, html)); const apps = opts.fullDetail ? await processFullDetailApps(processedApps, opts) : processedApps;
const token = R.path(initialMappings.token, html);
return checkFinished(opts, apps, token);}
export default developer;
google_play_scraper

Version Info

Tagged at
9 months ago