{"version":3,"sources":["./src/app/pages/oauth-callback/oauth-callback.page.ts","./src/app/pages/oauth-callback/oauth-callback.page.html","./src/app/pages/oauth-callback/oauth-callback.module.ts"],"names":["OauthCallbackPage","route","storageService","router","loadingController","platform","apiService","observerService","code","site_name","spinner","this","snapshot","queryParamMap","get","presentSpinner","then","params","getAccessToken","response","set","getAccount","account","id","publish","dismiss","navigate","replaceUrl","catch","error","message","create","showBackdrop","present","routes","path","component","OauthCallbackPageModule","forChild"],"mappings":"yQAaO,Y,MAAMA,EAKT,YACYC,EACAC,EACAC,EACAC,EACAC,EACAC,EACAC,GANA,KAAAN,QACA,KAAAC,iBACA,KAAAC,SACA,KAAAC,oBACA,KAAAC,WACA,KAAAC,aACA,KAAAC,kBAXZ,KAAAC,KAAO,KACP,KAAAC,UAAY,KACZ,KAAAC,QAAU,KAYV,WACIC,KAAKH,KAAOG,KAAKV,MAAMW,SAASC,cAAcC,IAAI,QAC9CH,KAAKH,KACLG,KAAKI,eAAe,cAAcC,KAAK,KACnC,IAAIC,EAAS,CACb,WAAuB,sBACvBA,EAAa,KAAIN,KAAKH,KACtBG,KAAKL,WAAWY,eAAeD,GAAQD,KAAMG,IACzCR,KAAKT,eAAekB,IAAI,eAAgBD,EAAuB,cAC/DR,KAAKT,eAAekB,IAAI,gBAAiBD,EAAwB,eACjER,KAAKL,WAAWe,aAAaL,KAAMM,IAC/BX,KAAKT,eAAekB,IAAI,cAAeE,EAAQC,IAAIP,KAAK,KACpDL,KAAKJ,gBAAgBiB,QAAQ,YAAa,IAC1Cb,KAAKD,QAAQe,UACbd,KAAKR,OAAOuB,SAAS,CAAC,iBAAkB,CAAEC,YAAY,QAG3DC,MAAOC,IACNlB,KAAKD,QAAQe,UACbd,KAAKR,OAAOuB,SAAS,CAAC,UAAW,CAAEC,YAAY,QAEpDC,MAAOC,IACNlB,KAAKD,QAAQe,UACbd,KAAKR,OAAOuB,SAAS,CAAC,UAAW,CAAEC,YAAY,QAKvDhB,KAAKR,OAAOuB,SAAS,CAAC,UAAW,CAAEC,YAAY,IAIjD,eAAeG,G,kDACjBnB,KAAKD,cAAgBC,KAAKP,kBAAkB2B,OAAO,CAC/CD,QAASA,EACTE,cAAc,UAEZrB,KAAKD,QAAQuB,a,6CApDdjC,GAAiB,wE,uBAAjBA,EAAiB,8ECb9B,uB,sHDaO,G,gBELP,MAAMkC,EAAiB,CACrB,CACEC,KAAM,GACNC,UAAW,IAcR,Y,MAAMC,G,6CAAAA,I,uBAAAA,I,2BATF,CACP,IACA,IACA,IACA,IACA,IAAaC,SAASJ,O,GAInB","file":"66.f87102f578e30ab00063.js","sourcesContent":["import { Component, OnInit } from '@angular/core';\nimport { Router, ActivatedRoute } from '@angular/router';\nimport { StorageService } from '../../services/storage.service';\nimport { Platform, LoadingController } from '@ionic/angular';\nimport { APIService } from '../../services/api.service';\nimport { ObserverService } from '../../services/observer.service';\n\n@Component({\n selector: 'app-oauth-callback',\n templateUrl: './oauth-callback.page.html',\n styleUrls: ['./oauth-callback.page.scss'],\n})\n\nexport class OauthCallbackPage implements OnInit {\n code = null;\n site_name = null;\n spinner = null;\n\n constructor(\n private route: ActivatedRoute,\n private storageService: StorageService,\n private router: Router,\n private loadingController: LoadingController,\n private platform: Platform,\n private apiService: APIService,\n private observerService: ObserverService\n ) { }\n\n ngOnInit() {\n this.code = this.route.snapshot.queryParamMap.get('code');\n if (this.code) {\n this.presentSpinner('Connecting').then(() => {\n let params = {};\n params['grant_type'] = 'authorization_code';\n params['code'] = this.code;\n this.apiService.getAccessToken(params).then((response) => {\n this.storageService.set('access_token', response['access_token']);\n this.storageService.set('refresh_token', response['refresh_token']);\n this.apiService.getAccount().then((account: any) => {\n this.storageService.set('merchant_id', account.id).then(() => {\n this.observerService.publish('logged_in', {});\n this.spinner.dismiss();\n this.router.navigate(['/secure/setup'], { replaceUrl: true });\n });\n\n }).catch((error) => {\n this.spinner.dismiss();\n this.router.navigate(['logout'], { replaceUrl: true });\n });\n }).catch((error) => {\n this.spinner.dismiss();\n this.router.navigate(['logout'], { replaceUrl: true });\n });\n });\n }\n else {\n this.router.navigate(['logout'], { replaceUrl: true });\n }\n }\n\n async presentSpinner(message) {\n this.spinner = await this.loadingController.create({\n message: message,\n showBackdrop: false,\n });\n await this.spinner.present();\n }\n\n}\n","\n\n\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { Routes, RouterModule } from '@angular/router';\nimport { IonicModule } from '@ionic/angular';\nimport { OauthCallbackPage } from './oauth-callback.page';\nimport { FontAwesomeModule } from '@fortawesome/angular-fontawesome';\n\nconst routes: Routes = [\n {\n path: '',\n component: OauthCallbackPage\n }\n];\n\n@NgModule({\n imports: [\n CommonModule,\n FormsModule,\n IonicModule,\n FontAwesomeModule,\n RouterModule.forChild(routes)\n ],\n declarations: [OauthCallbackPage]\n})\nexport class OauthCallbackPageModule {}\n"],"sourceRoot":"webpack:///"}