123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269 |
- const chalk = require('chalk');
- const common = require('../lib/common');
- const inquirer = require('../lib/inquirer');
- const shellExec = require('shell-exec')
- const files = require('../lib/files')
- const fs = require('fs')
- const {
- DownloaderHelper
- } = require('node-downloader-helper');
- const getFilesIn = require('get-files-in')
- const http = require('http')
- var shell = require('shelljs');
- module.exports = {
- removeCompatibleApps: async () => {
- common.header('Remove Compatible Apps')
- let compatibleApps
- let url = "http://kithub.cf/Karl/MiWatchKleaner-APKs/raw/master/compatibleApps.json";
- http.get(url, (res) => {
- let body = "";
- res.on("data", (chunk) => {
- body += chunk;
- });
- res.on("end", () => {
- try {
- compatibleApps = JSON.parse(body);
- // do something with JSON
- } catch (error) {
- console.error(error.message);
- };
- });
- }).on("error", (error) => {
- console.error(error.message);
- });
- const value = await inquirer.compatibleApps();
- for (let element of value.removeAppsList) {
- console.log('Installing ' + element)
- if (process.platform === 'win32' || process.platform === 'win64') {
- await shellExec('adb install -r ' + element).then(async function (result) {
- console.log(element + ' - ' + result.stdout);
- if (element === "data\\apps\\MoreLocale.apk") {
- await shellExec('adb shell pm grant jp.co.c_lis.ccl.morelocale android.permission.CHANGE_CONFIGURATION').then(function (result) {
- console.log('moreLocale Activated On Watch');
- });
- }
- });
- } else {
- await shellExec('./adb install -r ' + element).then(async function (result) {
- console.log(element + ' - ' + result.stdout);
- if (element === "data\\apps\\MoreLocale.apk") {
- await shellExec('./adb shell pm grant jp.co.c_lis.ccl.morelocale android.permission.CHANGE_CONFIGURATION').then(function (result) {
- console.log('moreLocale Activated On Watch');
- });
- }
- });
- }
- }
- console.log(chalk.green('Compatible Apps Installed'))
- await common.pause(2000)
- module.exports.mainMenu()
- },
- compatibleApps: async () => {
- common.header('Install Compatible Apps')
- let compatibleApps
- let url = "http://kithub.cf/Karl/MiWatchKleaner-APKs/raw/master/compatibleApps.json";
- http.get(url, (res) => {
- let body = "";
- res.on("data", (chunk) => {
- body += chunk;
- });
- res.on("end", () => {
- try {
- compatibleApps = JSON.parse(body);
- // do something with JSON
- } catch (error) {
- console.error(error.message);
- };
- });
- }).on("error", (error) => {
- console.error(error.message);
- });
- const value = await inquirer.compatibleApps();
- await shell.rm('-rf', './data/apps/*.apk');
- for (let element of value.removeAppsList) {
- for (let element2 of compatibleApps) {
- if (element === element2.name) {
- const options = {
- override: true,
- }
- const dl = new DownloaderHelper(element2.url, './data/apps/', options);
- dl.on('end', () => console.log('Downloading Latest ' + element2.name + ' Complete'))
- await dl.start();
- }
- }
- }
- const apkList = await getFilesIn('./data/apps', matchFiletypes = ['apk'], checkSubDirectories = false)
- for (let element of apkList) {
- console.log('Installing ' + element)
- if (process.platform === 'win32' || process.platform === 'win64') {
- await shellExec('adb install -r ' + element).then(async function (result) {
- console.log(element + ' - ' + result.stdout);
- if (element === "data\\apps\\MoreLocale.apk") {
- await shellExec('adb shell pm grant jp.co.c_lis.ccl.morelocale android.permission.CHANGE_CONFIGURATION').then(function (result) {
- console.log('moreLocale Activated On Watch');
- });
- }
- });
- } else {
- await shellExec('./adb install -r ' + element).then(async function (result) {
- console.log(element + ' - ' + result.stdout);
- if (element === "data\\apps\\MoreLocale.apk") {
- await shellExec('./adb shell pm grant jp.co.c_lis.ccl.morelocale android.permission.CHANGE_CONFIGURATION').then(function (result) {
- console.log('moreLocale Activated On Watch');
- });
- }
- });
- }
- }
- console.log(chalk.green('Compatible Apps Installed'))
- await common.pause(2000)
- module.exports.mainMenu()
- },
- removeApps: async () => {
- common.header('Remove Apps')
- const value = await inquirer.removeAppsList();
- for (let element of value.removeAppsList) {
- if (process.platform === 'win32' || process.platform === 'win64') {
- await shellExec('adb shell pm uninstall -k --user 0 ' + element).then(function (result) {
- console.log('Removing ' + element + ' - ' + result.stdout);
- });
- } else {
- await shellExec('./adb shell pm uninstall -k --user 0 ' + element).then(function (result) {
- console.log('Removing ' + element + ' - ' + result.stdout);
- });
- }
- }
- console.log(chalk.green('Removal Complete'))
- await common.pause(2000)
- module.exports.mainMenu()
- },
- restoreApps: async () => {
- common.header('Restore Apps')
- const value = await inquirer.removeAppsList();
- for (let element of value.removeAppsList) {
- if (process.platform === 'win32' || process.platform === 'win64') {
- await shellExec('adb shell cmd package install-existing ' + element).then(function (result) {
- console.log('Restoring ' + element + ' - ' + result.stdout);
- });
- } else {
- await shellExec('./adb shell cmd package install-existing ' + element).then(function (result) {
- console.log('Restoring ' + element + ' - ' + result.stdout);
- });
- }
- }
- console.log(chalk.green('Restore Complete'))
- await common.pause(2000)
- module.exports.mainMenu()
- },
- connectWifi: async () => {
- const miwatchData = JSON.parse(fs.readFileSync('./data/MiWatch.json', 'utf8'));
- common.header('Connect Wifi')
- if (miwatchData.ipAddress !== "") {
- console.log('Trying to connect with stored ipAddress')
- if (process.platform === 'win32' || process.platform === 'win64') {
- shellExec('adb connect ' + miwatchData.ipAddress).then(async function (result) {
- if (result.stdout.includes('already connected') || result.stdout.includes('connected to ')) {
- console.log(chalk.green('MiWatch Connected'))
- await common.pause(3000)
- module.exports.mainMenu()
- } else {
- console.log(chalk.red('MiWatch not found'))
- await common.pause(2000)
- console.log(chalk.white('Try Again'))
- await common.pause(1000)
- module.exports.connectWifi()
- }
- }).catch()
- } else {
- shellExec('./adb connect ' + miwatchData.ipAddress).then(async function (result) {
- if (result.stdout.includes('already connected') || result.stdout.includes('connected to ')) {
- console.log(chalk.green('MiWatch Connected'))
- files.writeIpAddress(miWatchIpaddress)
- await common.pause(3000)
- module.exports.mainMenu()
- } else {
- console.log(chalk.red('MiWatch not found'))
- await common.pause(2000)
- console.log(chalk.white('Try Again'))
- await common.pause(1000)
- module.exports.connectWifi()
- }
- }).catch()
- }
- } else {
- const value = await inquirer.connectWifi();
- const miWatchIpaddress = value.connectWifi
- if (process.platform === 'win32' || process.platform === 'win64') {
- shellExec('adb connect ' + miWatchIpaddress).then(async function (result) {
- if (result.stdout.includes('already connected') || result.stdout.includes('connected to ')) {
- console.log(chalk.green('MiWatch Connected'))
- files.writeIpAddress(miWatchIpaddress)
- await common.pause(3000)
- module.exports.mainMenu()
- } else {
- console.log(chalk.red('MiWatch not found'))
- await common.pause(2000)
- console.log(chalk.white('Try Again'))
- await common.pause(1000)
- module.exports.connectWifi()
- }
- }).catch()
- } else {
- shellExec('./adb connect ' + miWatchIpaddress).then(async function (result) {
- if (result.stdout.includes('already connected') || result.stdout.includes('connected to ')) {
- console.log(chalk.green('MiWatch Connected'))
- files.writeIpAddress(miWatchIpaddress)
- await common.pause(3000)
- module.exports.mainMenu()
- } else {
- console.log(chalk.red('MiWatch not found'))
- await common.pause(2000)
- console.log(chalk.white('Try Again'))
- await common.pause(1000)
- module.exports.connectWifi()
- }
- }).catch()
- }
- }
- },
- mainMenu: async () => {
- common.header('Main Menu')
- const mainMenuSelection = await inquirer.mainMenu();
- switch (mainMenuSelection.mainMenu) {
- case 'connect to miwatch via wifi':
- module.exports.connectWifi()
- break;
- case 'remove xiaomi apps':
- module.exports.removeApps()
- break;
- case 'restore xiaomi apps':
- module.exports.restoreApps()
- break;
- case 'install compatible apps':
- module.exports.compatibleApps()
- break;
- case 'remove compatible apps' :
- module.exports.removeCompatibleApps()
- break;
- case 'quit':
- break;
- default:
- // code block
- }
- }
- };
|