-
Notifications
You must be signed in to change notification settings - Fork 17
/
api.js
138 lines (136 loc) · 3.31 KB
/
api.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
import api from 'wordpress-rest-api-oauth-2';
export default api;
// import querystring from 'query-string'
// import oauth from 'oauth-1.0a'
// import fetchBlob from 'react-native-fetch-blob'
//
// export default class {
// constructor( config ) {
// this.url = config.rest_url ? config.rest_url : ( config.url + 'wp-json' )
// this.url = this.url.replace( /\/$/, '' )
// this.credentials = config.credentials
// this.oauth = new oauth({
// consumer: config.credentials.client,
// signature_method: 'HMAC-SHA1'
// })
// }
//
// get( url, data, callback ) {
//
// return this.request( 'GET', url, data, callback )
// }
//
// post( url, data, callback ) {
//
// return this.request( 'POST', url, data, callback )
// }
//
// _delete( url, data, callback ) {
// return this.request( 'DELETE', url, data, callback )
// }
//
// upload( url, data, type, filename ) {
//
// url = this.url + url
//
// method = 'POST'
//
// var oauthData = this.oauth.authorize( {
// method: method,
// url: url
// }, this.credentials.token )
//
// return fetchBlob.fetch( 'POST', url, {
// Accept: 'application/json',
// 'Content-Type': 'application/octet-stream',
// 'Content-Disposition': 'attachment; filename="' + filename + '"',
// ...this.oauth.toHeader( oauthData )
// }, data )
// .then( response => {
// var text = response.text()
// try {
// var json = JSON.parse( text )
// } catch( e ) {
// throw { message: text, code: response.status }
// }
//
// if ( response.status >= 300) {
// throw json
// } else {
// return json
// }
// } )
// .then( function( data ) {
// return data
// })
// .catch( error => {
// throw error
// })
// }
//
// request( method, url, data, callback ) {
//
// if ( method === 'GET' && data ) {
// url += '?' + querystring.stringify( data )
// data = null
// }
//
// if ( url.indexOf( 'http' ) !== 0 ) {
// url = this.url + url
// }
//
// var oauthData = this.oauth.authorize( {
// method: method,
// url: url,
// data: data
// }, this.credentials.token ? this.credentials.token : null )
//
// console.log( url, method, this.oauth.toHeader( oauthData ), data )
// return fetch( url, {
// method: method,
// headers: {
// Accept: 'application/json',
// 'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
// ...this.oauth.toHeader( oauthData )
// },
// body: querystring.stringify( data )
// } )
// .then( response => {
//
// if ( response.headers.get( 'Content-Type' ).indexOf( 'x-www-form-urlencoded' ) > -1 ) {
// return response.text().then( text => {
// return querystring.parse( text )
// })
// }
// return response.text().then( text => {
//
// try {
// var json = JSON.parse( text )
// } catch( e ) {
// throw { message: text, code: response.status }
// }
//
// if ( response.status >= 300) {
// throw json
// } else {
// return json
// }
// })
//
// } )
// .then( function( data ) {
// if ( callback ) {
// setTimeout( callback.bind( null, data ), 1 )
// }
// return data
// })
// .catch( error => {
// console.warn( error.message )
// if ( callback ) {
// setTimeout( callback.bind( null, null, error ), 1 )
// } else {
// throw error
// }
// })
// }
// }