request.js 13 KB
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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
import md5 from '../vendors/md5';
import Promise from '../vendors/es6-promise';
import objectAssign from '../vendors/object-assign';
import trimObject from '../utils/trimObject';
import queryString from '../vendors/query-string';
import { getYHStorageSync } from '../utils/util';
import {API_HOST,APP_VERSION, CLIENT_TYPE, PRIVATE_KEY} from '../libs/config';
import appReport from './appReport';

let crypto =  require('./cryptojs/cryptojs.js').Crypto
let p1SecretKey = "yoho9646yoho9646"
let ClientInitConfigMehtod = "resources.simple.pice"
let ClientConfigHasRequested = 0

function getPrivateKey(){
  return new Promise(function(resolve,reject){
    let app = getApp()
    let p2SecretKey = app && app.globalData && app.globalData.p2SecretKey;
    if (!p2SecretKey){
      p2SecretKey = getYHStorageSync("p2SecretKey","request")
    }

    if (p2SecretKey){
      resolve(p2SecretKey)
    }else{

      let data = {
        "udid": app.globalData.udid,
        "method": 'resources.simple.pice'
      }
      let method = "GET"
      let header = {
        'Content-Type': 'application/x-www-form-urlencoded'
      }

      wx.request({
        url: API_HOST,
        data,
        method,
        header: header,
        success: function (res) {
          if (res && res.data && res.data.data && res.data.data.sk) {
            app.globalData.p2SecretKey = res.data.data.sk;
            wx.setStorage({
              key: "p2SecretKey",
              data: res.data.data.sk
            });
            resolve(app.globalData.p2SecretKey)
          }
        },
        fail: function (err) {
          let code = err.code ? err.code : 800;
          let message = err.message ? err.message : '';
          let isPrivatekeyError = true
          reject({ code, message, isPrivatekeyError});
        }
      });

    }
  })
}

function request(method = 'GET') {
    return function(url, params = {}) {
        return getPrivateKey()
          .then(key => {
            return new Promise(function (resolve, reject) {
              let app = getApp();
              if (params && !params.hasOwnProperty('uid')) {
                let uid = app && app.globalData && app.globalData.userInfo && app.globalData.userInfo.uid ? app.globalData.userInfo.uid : 0;
                params.uid = uid;
              }
              let sessionkey = app && app.globalData && app.globalData.sessionkey ? app.globalData.sessionkey : '';
              params.session_key = sessionkey;
              params.source_type = "wechat";
              params.client_type = "miniapp";
              if (!params.business_line) {
                params.business_line = "minappLuck";
              }
              params.user_source = "wechat"

              if (params && !params.hasOwnProperty('udid')) {
                let udid = app && app.globalData && app.globalData.udid ? app.globalData.udid : "";
                if (udid.length == 0) {
                  udid = getYHStorageSync('udid','request');
                }
                params.udid = udid;
              }

              let body = _createBody(params);
              let queryStrigPair = _signParam(body, true);
              let data = '';

              if (method === 'GET' || method === 'HEAD' || method === 'DELETE') {
                url = url + '?' + queryStrigPair;
              }

              if (method !== 'GET' && method !== 'HEAD') {
                data = queryStrigPair;
              }

              //加签
              let resultString = "";
              if ((params.hasOwnProperty("method") && params["method"] === ClientInitConfigMehtod)) {
              } else {
                let p2SecretKey = app && app.globalData && app.globalData.p2SecretKey ? app.globalData.p2SecretKey : '';
                if (p2SecretKey == '') {
                  p2SecretKey = getYHStorageSync("p2SecretKey",'request')
                }
                resultString = crypto.HMAC(crypto.SHA256, _signParam(body, false), p2SecretKey, "")
              }
              let header = {
                'Content-Type': 'application/x-www-form-urlencoded',
                'x-yoho-verify': resultString,
                'Cookies': 'JSESSIONID=' + sessionkey,
              }

              wx.request({
                url,
                data,
                method,
                header: header,
                success: function (res) {
                  let statusCode = res.statusCode,
                    errMsg = res.errMsg,
                    data = res.data;

                  if (statusCode !== 200) {
                    appReport({
                      pt: 'NETWORK', 
                      pn: 'NETWORK_API_CODE_ERR',
                      param: {
                        url: url,
                        ec: statusCode
                      }
                    });
                  }  

                  if (statusCode == 200) {
                    resolve(data);
                  } else {
                    let code = statusCode;
                    let message = res.errMsg ? res.errMsg : '';
                    if(statusCode === 503) {
                      wx.showToast({
                        title: '目前参与人数过多请下拉刷新',
                        icon: 'none',
                        duration: 2000
                      });
                    }
                    reject({ code, message });
                  }
                },
                fail: function (err) {
                  appReport({
                    pt: 'NETWORK', 
                    pn: 'NETWORK_API_CODE_ERR',
                    param: {
                      url: url,
                      st: JSON.stringify(err || {})
                    }
                  });
                }
              });
            })
          })
          .catch(error => {
            if (!error || !error.isPrivatekeyError) return
            return new Promise(function (resolve, reject) {
              let app = getApp();
              if (params && !params.hasOwnProperty('uid')) {
                let uid = app && app.globalData && app.globalData.userInfo && app.globalData.userInfo.uid ? app.globalData.userInfo.uid : 0;
                params.uid = uid;
              }
              let sessionkey = app && app.globalData && app.globalData.sessionkey ? app.globalData.sessionkey : '';
              params.session_key = sessionkey;
              params.source_type = "wechat";
              params.client_type = "miniapp";
              params.business_line = "minappLuck";
              params.user_source = "wechat"

              if (params && !params.hasOwnProperty('udid')) {
                let udid = app && app.globalData && app.globalData.udid ? app.globalData.udid : "";
                if (udid.length == 0) {
                  udid = getYHStorageSync('udid','request');
                }
                params.udid = udid;
              }

              let body = _createBody(params);
              let queryStrigPair = _signParam(body, true);
              let data = '';

              if (method === 'GET' || method === 'HEAD' || method === 'DELETE') {
                url = url + '?' + queryStrigPair;
              }

              if (method !== 'GET' && method !== 'HEAD') {
                data = queryStrigPair;
              }

              //加签
              let resultString = "";
              if ((params.hasOwnProperty("method") && params["method"] === ClientInitConfigMehtod)) {
              } else {
                let p2SecretKey = app && app.globalData && app.globalData.p2SecretKey ? app.globalData.p2SecretKey : '';
                if (p2SecretKey == '') {
                  p2SecretKey = getYHStorageSync("p2SecretKey",'request')
                }
                resultString = crypto.HMAC(crypto.SHA256, _signParam(body, false), p2SecretKey, "")
              }
              let header = {
                'Content-Type': 'application/x-www-form-urlencoded',
                'x-yoho-verify': resultString,
                'Cookies': 'JSESSIONID=' + sessionkey,
              }

              wx.request({
                url,
                data,
                method,
                header: header,
                success: function (res) {
                  let statusCode = res.statusCode,
                    errMsg = res.errMsg,
                    data = res.data;
                  
                  if (statusCode !== 200) {
                    appReport({
                      pt: 'NETWORK', 
                      pn: 'NETWORK_API_CODE_ERR',
                      param: {
                        url: url,
                        ec: statusCode
                      }
                    });
                  }  

                  if (statusCode == 200) {
                    resolve(data);
                  } else {
                    let code = statusCode;
                    let message = res.errMsg ? res.errMsg : '';
                    if(statusCode === 503) {
                      wx.showToast({
                        title: '目前参与人数过多请下拉刷新',
                        icon: 'none',
                        duration: 2000
                      });
                    }
                    reject({ code, message });
                  }
                },
                fail: function (err) {
                  appReport({
                    pt: 'NETWORK', 
                    pn: 'NETWORK_API_CODE_ERR',
                    param: {
                      url: url,
                      st: JSON.stringify(err || {})
                    }
                  });
                }
              });
            })
          })
    }
}

function uploadLogData(method = 'POST') {
  return function (url, params = {}) {
    return new Promise(function (resolve, reject) {
      let app = getApp();
      let data = { '_mlogs': JSON.stringify(params) }
      let sid = app && app.globalData && app.globalData.sid ? app.globalData.sid : '';
      let header = {
        'content-type': "application/x-www-form-urlencoded",
        'x-yoho-sid': md5(sid),
      }
      wx.request({
        url,
        data,
        method,
        header,
      });
    })
  }
}

function _publicParams() {
    let app_version = APP_VERSION;
    let os_version = '';
    let client_type = CLIENT_TYPE;
    let screen_size = '';
    let privateKey = PRIVATE_KEY;
    let v = '7';

    try {
        let res = wx.getSystemInfoSync();
        screen_size = res.windowWidth + 'x' + res.windowHeight;
        os_version = res.version;
    } catch (e) {
        // Do something when catch error
    }

    return {
        app_version,
        os_version,
        client_type,
        screen_size,
        // physical_channel,
        // udid,
        v,
        // uid,
    };
}

function _createBody(body) {
    let defaultBody = _publicParams();
    let newBody = objectAssign(defaultBody, body);
    return newBody;
}

function _signParam(params,opt) {
    let private_key = PRIVATE_KEY;
    let allParams = objectAssign(params, {private_key});

    allParams = trimObject(allParams);	// 去除首尾空格
    let paramsPair = queryString.stringify(allParams, {encode: false});
    let client_secret = md5(paramsPair);

    delete allParams.private_key;

    let resultParams = objectAssign(allParams, {client_secret});
    let resultString;
    if (opt === true){
        resultString = queryString.stringify(resultParams,{encode: true});
    }else{
        resultString = queryString.stringify(resultParams,{encode: false});
    }
    return resultString;
}

function _signParam(params,opt) {
    let private_key = PRIVATE_KEY;
    let allParams = objectAssign(params, {private_key});

    allParams = trimObject(allParams);	// 去除首尾空格
    let paramsPair = queryString.stringify(allParams, {encode: false});
    let client_secret = md5(paramsPair);

    delete allParams.private_key;

    let resultParams = objectAssign(allParams, {client_secret});
    let resultString;
    if (opt === true){
        resultString = queryString.stringify(resultParams,{encode: true});
    }else{
        resultString = queryString.stringify(resultParams,{encode: false});
    }
    return resultString;
}

function sign_body(params,url){
  let app = getApp();
  let body = _createBody(params);
  let queryStrigPair = _signParam(body, true);
  let data = '';

  url = url.indexOf('?') >= 0 ? url + '&' + queryStrigPair : url + '?' + queryStrigPair;

  //加签
  let resultString = "";
  let p2SecretKey = app && app.globalData && app.globalData.p2SecretKey ? app.globalData.p2SecretKey : '';
  if (p2SecretKey == '') {
    p2SecretKey = getYHStorageSync("p2SecretKey",'request')
  }
  resultString = crypto.HMAC(crypto.SHA256, _signParam(body, false), p2SecretKey, "")

  // console.log('url',url)
  // console.log('resultString', resultString)

  let response = {}
  response.signString = resultString
  response.url = url
  return response
}

export const GET = request('GET');
export const POST = request('POST');
export const PUT = request('PUT');
export const DELETE = request('DELETE');
export const UPLOAD_LOG = uploadLogData('POST');

module.exports = {
  sign_body,
  UPLOAD_LOG,
  GET,
  POST,
}