This repository was archived by the owner on Nov 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathmethods.js
111 lines (104 loc) · 3.23 KB
/
methods.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
'use strict';
/*
* pastebin-js
* https://github.com/j3lte/pastebin-js
*
* Copyright (c) 2013-2019 Jelte Lagendijk
* Licensed under the MIT license.
*/
var request = require('request');
var config = require('./config');
var pkg = require('../package.json');
var Q = require('q');
var TIMEOUT = 4000;
var HEADERS = [
{
name: 'User-Agent',
value: 'Pastebin-js/' + pkg.version,
},
{
name: 'Cache-Control',
value: 'no-cache'
}
];
var methods = module.exports = {
get : function (path, params) {
var deferred = Q.defer();
if (!path) {
deferred.reject(new Error('No path provided'));
return deferred.promise;
}
if (!params) {
params = {};
}
request({
uri : path,
qs : params,
method : 'GET',
headers : HEADERS,
timeout : TIMEOUT,
followRedirect : true
}, function (error, response, body) {
var status = response ? response.statusCode : null;
if (error || status === null) {
deferred.reject({status : status, error : error});
}
if (status === 404) {
deferred.reject(new Error('Error 404, paste not found!'));
}
if (status !== 200) {
deferred.reject(new Error('Unknown error, status: ' + status));
}
if (!body || body === null || body.length === 0) {
deferred.reject(new Error('Empty response'));
return;
}
if (body.indexOf('Bad API request') !== -1) {
deferred.reject(new Error(body));
}
deferred.resolve(body);
});
return deferred.promise;
},
post : function (path, params) {
var deferred = Q.defer();
if (!path) {
deferred.reject(new Error('No path provided'));
return deferred.promise;
}
if (!params) {
params = {};
}
request({
uri : path,
method : 'POST',
form : params,
headers : HEADERS,
timeout : TIMEOUT,
followRedirect : true
}, function (error, response, body) {
var status = response ? response.statusCode : null;
if (error || status === null) {
deferred.reject({status : status, error : error});
}
if (status !== 200) {
deferred.reject(new Error('Unknown error, status: ' + status));
}
if (!body || body === null || body.length === 0) {
deferred.reject(new Error('Empty response'));
}
if (body.indexOf('Bad API request') !== -1) {
deferred.reject(new Error('Error: ' + body));
}
if (body.indexOf('Post limit') !== -1) {
deferred.reject(new Error('Error: ' + body));
}
if (body.indexOf('http') === 0) {
// return an ID instead of the url
body = body.replace('http://pastebin.com/','');
}
deferred.resolve(body);
});
return deferred.promise;
}
};