UNPKG

app-info-parser

Version:

Exact info from apk or ipa file.

45 lines (44 loc) 2.7 kB
"use strict"; function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; } function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); } function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); } var ApkParser = require('./apk'); var IpaParser = require('./ipa'); var supportFileTypes = ['ipa', 'apk']; var AppInfoParser = /*#__PURE__*/function () { /** * parser for parsing .ipa or .apk file * @param {String | File | Blob} file // file's path in Node, instance of File or Blob in Browser */ function AppInfoParser(file) { _classCallCheck(this, AppInfoParser); if (!file) { throw new Error('Param miss: file(file\'s path in Node, instance of File or Blob in browser).'); } var splits = (file.name || file).split('.'); var fileType = splits[splits.length - 1].toLowerCase(); if (!supportFileTypes.includes(fileType)) { throw new Error('Unsupported file type, only support .ipa or .apk file.'); } this.file = file; switch (fileType) { case 'ipa': this.parser = new IpaParser(this.file); break; case 'apk': this.parser = new ApkParser(this.file); break; } } _createClass(AppInfoParser, [{ key: "parse", value: function parse() { return this.parser.parse(); } }]); return AppInfoParser; }(); module.exports = AppInfoParser;