| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import "MainViewController.h"
- #import <objc/runtime.h>
- #import <FirebaseCore/FIRApp.h>
- #import <FirebaseCore/FIRAppInternal.h>
- #import <FirebaseCore/FIRAppAssociationRegistration.h>
- #import "AppManager.h"
- #import "AuthCredentials.h"
- #import "FIRAdditionalUserInfo.h"
- #import "FIROAuthProvider.h"
- #import "FIRPhoneAuthCredential.h"
- #import "FIRPhoneAuthProvider.h"
- #import "FIRAuthTokenResult.h"
- #import "FirebaseAuth.h"
- #import "CustomTokenDataEntryViewController.h"
- #import "FacebookAuthProvider.h"
- #import "GoogleAuthProvider.h"
- #import "SettingsViewController.h"
- #import "StaticContentTableViewManager.h"
- #import "UIViewController+Alerts.h"
- #import "UserInfoViewController.h"
- #import "UserTableViewCell.h"
- NS_ASSUME_NONNULL_BEGIN
- /** @typedef textInputCompletionBlock
- @brief The type of callback used to report text input prompt results.
- */
- typedef void (^textInputCompletionBlock)(NSString *_Nullable userInput);
- /** @typedef testAutomationCallback
- @brief The type of callback used when automatically testing an API.
- */
- typedef void (^testAutomationCallback)(NSError *_Nullable error);
- /** @var kTokenGetButtonText
- @brief The text of the "Get Token" button.
- */
- static NSString *const kTokenGetButtonText = @"Get Token";
- /** @var kGetTokenResultButtonText
- @brief The text of the "Get Token Result" button.
- */
- static NSString *const kGetTokenResultButtonText = @"Get Token Result";
- /** @var kGetTokenResultForceButtonText
- @brief The text of the "Force Token Result" button.
- */
- static NSString *const kGetTokenResultForceButtonText = @"Force Token Result";
- /** @var kTokenRefreshButtonText
- @brief The text of the "Refresh Token" button.
- */
- static NSString *const kTokenRefreshButtonText = @"Force Refresh Token";
- /** @var kTokenRefreshedAlertTitle
- @brief The title of the "Token Refreshed" alert.
- */
- static NSString *const kTokenRefreshedAlertTitle = @"Token";
- /** @var kTokenRefreshErrorAlertTitle
- @brief The title of the "Token Refresh error" alert.
- */
- static NSString *const kTokenRefreshErrorAlertTitle = @"Get Token Error";
- /** @var kSettingsButtonTextDesription
- @brief The description for the text of the "Settings" button.
- */
- static NSString *const kSettingsButtonTextDesription =
- @"The button text to open sample app settings";
- /** @var kUserInfoButtonText
- @brief The text of the "Show User Info" button.
- */
- static NSString *const kUserInfoButtonText = @"[Show User Info]";
- /** @var kSetImageURLText
- @brief The text of the "Set Photo url" button.
- */
- static NSString *const kSetPhotoURLText = @"Set Photo url";
- /** @var kSignInGoogleButtonText
- @brief The text of the "Google SignIn" button.
- */
- static NSString *const kSignInGoogleButtonText = @"Sign in with Google";
- /** @var kSignInWithEmailLink
- @brief The text of the "Sign in with Email Link" button.
- */
- static NSString *const kSignInWithEmailLink = @"Sign in with Email Link";
- /** @var kVerifyEmailLinkAccount
- @brief The text of the "Verify Email-link Account" button.
- */
- static NSString *const kVerifyEmailLinkAccount = @"Verify Email-link Account";
- /** @var kSendEmailSignInLink
- @brief The text of the "Send Email SignIn link" button
- */
- static NSString *const kSendEmailSignInLink = @"Send Email Sign in Link";
- /** @var kSignInAndRetrieveGoogleButtonText
- @brief The text of the "Sign in with Google and retrieve data" button.
- */
- static NSString *const kSignInGoogleAndRetrieveDataButtonText =
- @"Sign in with Google and retrieve data";
- /** @var kSignInFacebookButtonText
- @brief The text of the "Facebook SignIn" button.
- */
- static NSString *const kSignInFacebookButtonText = @"Sign in with Facebook";
- /** @var kSignInFacebookAndRetrieveDataButtonText
- @brief The text of the "Facebook SignIn and retrieve data" button.
- */
- static NSString *const kSignInFacebookAndRetrieveDataButtonText =
- @"Sign in with Facebook and retrieve data";
- /** @var kSignInEmailPasswordButtonText
- @brief The text of the "Email/Password SignIn" button.
- */
- static NSString *const kSignInEmailPasswordButtonText = @"Sign in with Email/Password";
- /** @var kSignInEmailPasswordAuthDataResultButtonText
- @brief The text of the "Email/Password SignIn (AuthDataResult)" button.
- */
- static NSString *const kSignInEmailPasswordAuthDataResultButtonText =
- @"Sign in with Email/Password (Deprecated)";
- /** @var kSignInWithCustomTokenButtonText
- @brief The text of the "Sign In (BYOAuth)" button.
- */
- static NSString *const kSignInWithCustomTokenButtonText = @"Sign In (BYOAuth)";
- /** @var kSignInWithCustomAuthResultTokenButtonText
- @brief The text of the "Sign In with Custom Token (Auth Result)" button.
- */
- static NSString *const kSignInWithCustomAuthResultTokenButtonText = @"Sign In with Custom Token"
- " (Deprecated)";
- /** @var kSignInAnonymouslyButtonText
- @brief The text of the "Sign In Anonymously" button.
- */
- static NSString *const kSignInAnonymouslyButtonText = @"Sign In Anonymously";
- /** @var kSignInAnonymouslyWithAuthResultButtonText
- @brief The text of the "Sign In Anonymously (AuthDataResult)" button.
- */
- static NSString *const kSignInAnonymouslyWithAuthResultButtonText =
- @"Sign In Anonymously (Deprecated)";
- /** @var kSignedInAlertTitle
- @brief The text of the "Sign In Succeeded" alert.
- */
- static NSString *const kSignedInAlertTitle = @"Signed In";
- /** @var kSignInErrorAlertTitle
- @brief The text of the "Sign In Encountered an Error" alert.
- */
- static NSString *const kSignInErrorAlertTitle = @"Sign-In Error";
- /** @var kSignOutButtonText
- @brief The text of the "Sign Out" button.
- */
- static NSString *const kSignOutButtonText = @"Sign Out";
- /** @var kDeleteAccountText
- @brief The text of the "Delete Account" button.
- */
- static NSString *const kDeleteUserText = @"Delete Account";
- /** @var kReauthenticateGoogleText
- @brief The text of the "Reathenticate Google" button.
- */
- static NSString *const kReauthenticateGoogleText = @"Reauthenticate Google";
- /** @var kReauthenticateGoogleAndRetrieveDataText
- @brief The text of the "Reathenticate Google and retrieve data" button.
- */
- static NSString *const kReauthenticateGoogleAndRetrieveDataText =
- @"Reauthenticate Google and retrieve data";
- /** @var kReauthenticateFBText
- @brief The text of the "Reathenticate Facebook" button.
- */
- static NSString *const kReauthenticateFBText = @"Reauthenticate FB";
- /** @var kReauthenticateFBAndRetrieveDataText
- @brief The text of the "Reathenticate Facebook and retrieve data" button.
- */
- static NSString *const kReauthenticateFBAndRetrieveDataText =
- @"Reauthenticate FB and retrieve data";
- /** @var kReAuthenticateEmail
- @brief The text of the "Reathenticate Email" button.
- */
- static NSString *const kReauthenticateEmailText = @"Reauthenticate Email/Password";
- /** @var kOKButtonText
- @brief The text of the "OK" button for the Sign In result dialogs.
- */
- static NSString *const kOKButtonText = @"OK";
- /** @var kSetDisplayNameTitle
- @brief The title of the "Set Display Name" error dialog.
- */
- static NSString *const kSetDisplayNameTitle = @"Set Display Name";
- /** @var kUpdateEmailText
- @brief The title of the "Update Email" button.
- */
- static NSString *const kUpdateEmailText = @"Update Email";
- /** @var kUpdatePasswordText
- @brief The title of the "Update Password" button.
- */
- static NSString *const kUpdatePasswordText = @"Update Password";
- /** @var kUpdatePhoneNumber
- @brief The title of the "Update Photo" button.
- */
- static NSString *const kUpdatePhoneNumber = @"Update Phone Number";
- /** @var kLinkPhoneNumber
- @brief The title of the "Link phone" button.
- */
- static NSString *const kLinkPhoneNumber = @"Link Phone Number";
- /** @var kUnlinkPhone
- @brief The title of the "Unlink Phone" button for unlinking phone auth provider.
- */
- static NSString *const kUnlinkPhoneNumber = @"Unlink Phone Number";
- /** @var kReloadText
- @brief The title of the "Reload User" button.
- */
- static NSString *const kReloadText = @"Reload User";
- /** @var kLinkWithGoogleText
- @brief The title of the "Link with Google" button.
- */
- static NSString *const kLinkWithGoogleText = @"Link with Google";
- /** @var kLinkWithGoogleAndRetrieveDataText
- @brief The title of the "Link with Google and retrieve data" button.
- */
- static NSString *const kLinkWithGoogleAndRetrieveDataText = @"Link with Google and retrieve data";
- /** @var kLinkWithFacebookText
- @brief The title of the "Link with Facebook Account" button.
- */
- static NSString *const kLinkWithFacebookText = @"Link with Facebook";
- /** @var kLinkWithFacebookAndRetrieveDataText
- @brief The title of the "Link with Facebook and retrieve data" button.
- */
- static NSString *const kLinkWithFacebookAndRetrieveDataText =
- @"Link with Facebook and retrieve data";
- /** @var kLinkWithEmailPasswordText
- @brief The title of the "Link with Email/Password Account" button.
- */
- static NSString *const kLinkWithEmailPasswordText = @"Link with Email/Password";
- /** @var kUnlinkTitle
- @brief The text of the "Unlink from Provider" error Dialog.
- */
- static NSString *const kUnlinkTitle = @"Unlink from Provider";
- /** @var kUnlinkFromGoogle
- @brief The text of the "Unlink from Google" button.
- */
- static NSString *const kUnlinkFromGoogle = @"Unlink from Google";
- /** @var kUnlinkFromFacebook
- @brief The text of the "Unlink from Facebook" button.
- */
- static NSString *const kUnlinkFromFacebook = @"Unlink from Facebook";
- /** @var kUnlinkFromEmailPassword
- @brief The text of the "Unlink from Google" button.
- */
- static NSString *const kUnlinkFromEmailPassword = @"Unlink from Email/Password";
- /** @var kGetProvidersForEmail
- @brief The text of the "Get Provider IDs for Email" button.
- */
- static NSString *const kGetProvidersForEmail = @"Get Provider IDs for Email";
- /** @var kGetAllSignInMethodsForEmail
- @brief The text of the "Get sign-in methods for Email" button.
- */
- static NSString *const kGetAllSignInMethodsForEmail = @"Get Sign-in methods for Email";
- /** @var kActionCodeTypeDescription
- @brief The description of the "Action Type" entry.
- */
- static NSString *const kActionCodeTypeDescription = @"Action Type";
- /** @var kContinueURLDescription
- @brief The description of the "Continue URL" entry.
- */
- static NSString *const kContinueURLDescription = @"Continue URL";
- /** @var kRequestVerifyEmail
- @brief The text of the "Request Verify Email Link" button.
- */
- static NSString *const kRequestVerifyEmail = @"Request Verify Email Link";
- /** @var kRequestPasswordReset
- @brief The text of the "Email Password Reset" button.
- */
- static NSString *const kRequestPasswordReset = @"Send Password Reset Email";
- /** @var kResetPassword
- @brief The text of the "Password Reset" button.
- */
- static NSString *const kResetPassword = @"Reset Password";
- /** @var kCheckActionCode
- @brief The text of the "Check action code" button.
- */
- static NSString *const kCheckActionCode = @"Check action code";
- /** @var kApplyActionCode
- @brief The text of the "Apply action code" button.
- */
- static NSString *const kApplyActionCode = @"Apply action code";
- /** @var kVerifyPasswordResetCode
- @brief The text of the "Verify password reset code" button.
- */
- static NSString *const kVerifyPasswordResetCode = @"Verify password reset code";
- /** @var kSectionTitleSettings
- @brief The text for the title of the "Settings" section.
- */
- static NSString *const kSectionTitleSettings = @"SETTINGS";
- /** @var kSectionTitleSignIn
- @brief The text for the title of the "Sign-In" section.
- */
- static NSString *const kSectionTitleSignIn = @"SIGN-IN";
- /** @var kSectionTitleReauthenticate
- @brief The text for the title of the "Reauthenticate" section.
- */
- static NSString *const kSectionTitleReauthenticate = @"REAUTHENTICATE";
- /** @var kSectionTitleTokenActions
- @brief The text for the title of the "Token Actions" section.
- */
- static NSString *const kSectionTitleTokenActions = @"TOKEN ACTIONS";
- /** @var kSectionTitleEditUser
- @brief The text for the title of the "Edit User" section.
- */
- static NSString *const kSectionTitleEditUser = @"EDIT USER";
- /** @var kSectionTitleLinkUnlinkAccount
- @brief The text for the title of the "Link/Unlink account" section.
- */
- static NSString *const kSectionTitleLinkUnlinkAccounts = @"LINK/UNLINK ACCOUNT";
- /** @var kSectionTitleUserActions
- @brief The text for the title of the "User Actions" section.
- */
- static NSString *const kSectionTitleUserActions = @"USER ACTIONS";
- /** @var kSectionTitleOOBAction
- @brief The text for the title of the "OOB Actions" section.
- */
- static NSString *const kSectionTitleOOBActions = @"OOB ACTIONS";
- /** @var kSectionTitleUserDetails
- @brief The text for the title of the "User Details" section.
- */
- static NSString *const kSectionTitleUserDetails = @"SIGNED-IN USER DETAILS";
- /** @var kSectionTitleListeners
- @brief The title for the table view section dedicated to auth state did change listeners.
- */
- static NSString *const kSectionTitleListeners = @"Listeners";
- /** @var kAddAuthStateListenerTitle
- @brief The title for the table view row which adds a block to the auth state did change
- listeners.
- */
- static NSString *const kAddAuthStateListenerTitle = @"Add Auth State Change Listener";
- /** @var kRemoveAuthStateListenerTitle
- @brief The title for the table view row which removes a block to the auth state did change
- listeners.
- */
- static NSString *const kRemoveAuthStateListenerTitle = @"Remove Last Auth State Change Listener";
- /** @var kAddIDTokenListenerTitle
- @brief The title for the table view row which adds a block to the ID token did change
- listeners.
- */
- static NSString *const kAddIDTokenListenerTitle = @"Add ID Token Change Listener";
- /** @var kRemoveIDTokenListenerTitle
- @brief The title for the table view row which removes a block to the ID token did change
- listeners.
- */
- static NSString *const kRemoveIDTokenListenerTitle = @"Remove Last ID Token Change Listener";
- /** @var kSectionTitleApp
- @brief The text for the title of the "App" section.
- */
- static NSString *const kSectionTitleApp = @"APP";
- /** @var kSwitchToInMemoryUserTitle
- @brief The text of the "Switch to in memory user" button.
- */
- static NSString *const kSwitchToInMemoryUserTitle = @"Switch to in memory user";
- /** @var kCreateUserTitle
- @brief The text of the "Create User" button.
- */
- static NSString *const kCreateUserTitle = @"Create User";
- /** @var kCreateUserAuthDataResultTitle
- @brief The text of the "Create User (AuthDataResult)" button.
- */
- static NSString *const kCreateUserAuthDataResultTitle = @"Create User (AuthDataResult)";
- /** @var kDeleteAppTitle
- @brief The text of the "Delete App" button.
- */
- static NSString *const kDeleteAppTitle = @"Delete App";
- /** @var kTimeAuthInitTitle
- @brief The text of the "Time Auth Initialization" button.
- */
- static NSString *const kTimeAuthInitTitle = @"Time Auth Initialization";
- /** @var kSectionTitleManualTests
- @brief The section title for automated manual tests.
- */
- static NSString *const kSectionTitleManualTests = @"Automated (Manual) Tests";
- /** @var kAutoBYOAuthTitle
- @brief The button title for automated BYOAuth operation.
- */
- static NSString *const kAutoBYOAuthTitle = @"BYOAuth";
- /** @var kAutoSignInGoogle
- @brief The button title for automated Google sign-in operation.
- */
- static NSString *const kAutoSignInGoogle = @"Sign In With Google";
- /** @var kAutoSignInFacebook
- @brief The button title for automated Facebook sign-in operation.
- */
- static NSString *const kAutoSignInFacebook = @"Sign In With Facebook";
- /** @var kAutoSignUpEmailPassword
- @brief The button title for automated sign-up with email/password.
- */
- static NSString *const kAutoSignUpEmailPassword = @"Sign Up With Email/Password";
- /** @var kAutoSignInAnonymously
- @brief The button title for automated sign-in anonymously.
- */
- static NSString *const kAutoSignInAnonymously = @"Sign In Anonymously";
- /** @var kAutoAccountLinking
- @brief The button title for automated account linking.
- */
- static NSString *const kAutoAccountLinking = @"Link with Google";
- /** @var kAutoPhoneNumberSignIn
- @brief The button title for automated Phone Number sign-in.
- */
- static NSString *const kAutoPhoneNumberSignIn = @"Sign in With Phone Number";
- /** @var kGitHubSignInButtonText
- @brief The button title for signing in with github.
- */
- static NSString *const kGitHubSignInButtonText = @"Sign In with GitHub";
- /** @var kExpiredCustomTokenUrl
- @brief The url for obtaining a valid custom token string used to test BYOAuth.
- */
- static NSString *const kCustomTokenUrl = @"https://fb-sa-1211.appspot.com/token";
- /** @var kCustomTokenUrl
- @brief The url for obtaining an expired custom token string used to test BYOAuth.
- */
- static NSString *const kExpiredCustomTokenUrl = @"https://fb-sa-1211.appspot.com/expired_token";
- /** @var kFakeDisplayPhotoUrl
- @brief The url for obtaining a display displayPhoto used for testing.
- */
- static NSString *const kFakeDisplayPhotoUrl =
- @"https://www.gstatic.com/images/branding/product/1x/play_apps_48dp.png";
- /** @var kFakeDisplayName
- @brief Fake display name for testing.
- */
- static NSString *const kFakeDisplayName = @"John GoogleSpeed";
- /** @var kFakeEmail
- @brief Fake email for testing.
- */
- static NSString *const kFakeEmail =@"firemail@example.com";
- /** @var kFakePassword
- @brief Fake password for testing.
- */
- static NSString *const kFakePassword =@"fakePassword";
- /** @var kInvalidCustomToken
- @brief The custom token string for testing BYOAuth.
- */
- static NSString *const kInvalidCustomToken = @"invalid custom token.";
- /** @var kSafariGoogleSignOutMessagePrompt
- @brief The message text informing user to sign-out from Google on safari before continuing.
- */
- static NSString *const kSafariGoogleSignOutMessagePrompt = @"This automated test assumes that no "
- "Google account is signed in on Safari, if your are not prompted for a password, sign out on "
- "Safari and rerun the test.";
- /** @var kSafariFacebookSignOutMessagePrompt
- @brief The message text informing user to sign-out from Facebook on safari before continuing.
- */
- static NSString *const kSafariFacebookSignOutMessagePrompt = @"This automated test assumes that no "
- "Facebook account is signed in on Safari, if your are not prompted for a password, sign out on "
- "Safari and rerun the test.";
- /** @var kUnlinkAccountMessagePrompt
- @brief The message text informing user to use an unlinked account for account linking.
- */
- static NSString *const kUnlinkAccountMessagePrompt = @"Sign into gmail with an email address "
- "that has not been linked to this sample application before. Delete account if necessary.";
- /** @var kPasswordResetAction
- @brief The value for password reset mode in the action code URL.
- */
- static NSString *const kPasswordResetAction = @"resetPassword";
- /** @var kVerifyEmailAction
- @brief The value for verify email mode in the action code URL.
- */
- static NSString *const kVerifyEmailAction = @"verifyEmail";
- // Declared extern in .h file.
- NSString *const kCreateUserAccessibilityID = @"CreateUserAccessibilityID";
- /** @var kPhoneAuthSectionTitle
- @brief The title for the phone auth section of the test app.
- */
- static NSString *const kPhoneAuthSectionTitle = @"Phone Auth";
- /** @var kPhoneNumberSignInTitle
- @brief The title for button to sign in with phone number using reCAPTCHA.
- */
- static NSString *const kPhoneNumberSignInReCaptchaTitle = @"Sign in With Phone Number";
- /** @var kIsNewUserToggleTitle
- @brief The title for button to enable new or existing user toggle.
- */
- static NSString *const kNewOrExistingUserToggleTitle = @"New or Existing User Toggle";
- /** @typedef showEmailPasswordDialogCompletion
- @brief The type of block which gets called to complete the Email/Password dialog flow.
- */
- typedef void (^ShowEmailPasswordDialogCompletion)(FIRAuthCredential *credential);
- /** @typedef FIRTokenCallback
- @brief The type of block which gets called when a token is ready.
- */
- typedef void (^FIRTokenCallback)(NSString *_Nullable token, NSError *_Nullable error);
- /** @brief The request type for OOB action codes.
- */
- typedef enum {
- /** No action code settings. */
- ActionCodeRequestTypeEmail,
- /** With continue URL but not handled in-app. */
- ActionCodeRequestTypeContinue,
- /** Handled in-app. */
- ActionCodeRequestTypeInApp,
- } ActionCodeRequestType;
- /** @category FIRAppAssociationRegistration(Deregistration)
- @brief The category for the deregistration method.
- */
- @interface FIRAppAssociationRegistration (Deregistration)
- /** @fn deregisteredObjectWithHost:key:
- @brief Removes the object that was registered with a particular host and key, if one exists.
- @param host The host object.
- @param key The key to specify the registered object on the host.
- */
- + (void)deregisterObjectWithHost:(id)host key:(NSString *)key;
- @end
- @implementation FIRAppAssociationRegistration (Deregistration)
- + (void)deregisterObjectWithHost:(id)host key:(NSString *)key {
- @synchronized(self) {
- SEL dictKey = @selector(registeredObjectWithHost:key:creationBlock:);
- NSMutableDictionary<NSString *, id> *objectsByKey = objc_getAssociatedObject(host, dictKey);
- [objectsByKey removeObjectForKey:key];
- }
- }
- @end
- @implementation MainViewController {
- NSMutableString *_consoleString;
- /** @var _authStateDidChangeListeners
- @brief An array of handles created during calls to @c FIRAuth.addAuthStateDidChangeListener:
- */
- NSMutableArray<FIRAuthStateDidChangeListenerHandle> *_authStateDidChangeListeners;
- /** @var _IDTokenDidChangeListeners
- @brief An array of handles created during calls to @c FIRAuth.addIDTokenDidChangeListener:
- */
- NSMutableArray<FIRAuthStateDidChangeListenerHandle> *_IDTokenDidChangeListeners;
- /** @var _userInMemory
- @brief Acts like the "memory" function of a calculator. An operation allows sample app users
- to assign this value based on @c FIRAuth.currentUser or clear this value.
- */
- FIRUser *_userInMemory;
- /** @var _useUserInMemory
- @brief Instructs the application to use _userInMemory instead of @c FIRAuth.currentUser for
- testing operations. This allows us to test if things still work with a user who is not
- the @c FIRAuth.currentUser, and also allows us to test those things while
- @c FIRAuth.currentUser remains nil (after a sign-out) and also when @c FIRAuth.currentUser
- is non-nil (do to a subsequent sign-in.)
- */
- BOOL _useUserInMemory;
- /** @var _newUserToggle
- @brief When enabled allows login popup alert determining new or existing user.
- */
- BOOL _isNewUserToggleOn;
- /** @var _actionCodeRequestType
- @brief The type for the next action code request.
- */
- ActionCodeRequestType _actionCodeRequestType;
- /** @var _actionCodeContinueURL
- @brief The continue URL to be used in the next action code request.
- */
- NSURL *_actionCodeContinueURL;
- }
- /** @fn initWithNibName:bundle:
- @brief Overridden default initializer.
- */
- - (id)initWithNibName:(nullable NSString *)nibNameOrNil bundle:(nullable NSBundle *)nibBundleOrNil {
- self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
- if (self) {
- _actionCodeRequestType = ActionCodeRequestTypeInApp;
- _actionCodeContinueURL = [NSURL URLWithString:KCONTINUE_URL];
- _authStateDidChangeListeners = [NSMutableArray array];
- _IDTokenDidChangeListeners = [NSMutableArray array];
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(authStateChangedForAuth:)
- name:FIRAuthStateDidChangeNotification
- object:nil];
- self.useStatusBarSpinner = YES;
- }
- return self;
- }
- - (void)viewDidLoad {
- // Give us a circle for the image view:
- _userInfoTableViewCell.userInfoProfileURLImageView.layer.cornerRadius =
- _userInfoTableViewCell.userInfoProfileURLImageView.frame.size.width / 2.0f;
- _userInfoTableViewCell.userInfoProfileURLImageView.layer.masksToBounds = YES;
- _userInMemoryInfoTableViewCell.userInfoProfileURLImageView.layer.cornerRadius =
- _userInMemoryInfoTableViewCell.userInfoProfileURLImageView.frame.size.width / 2.0f;
- _userInMemoryInfoTableViewCell.userInfoProfileURLImageView.layer.masksToBounds = YES;
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- [self updateTable];
- [self updateUserInfo];
- }
- - (void)updateTable {
- __weak typeof(self) weakSelf = self;
- _tableViewManager.contents =
- [StaticContentTableViewContent contentWithSections:@[
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleUserDetails cells:@[
- [StaticContentTableViewCell cellWithCustomCell:_userInfoTableViewCell action:^{
- [weakSelf presentUserInfo];
- }],
- [StaticContentTableViewCell cellWithCustomCell:_userToUseCell],
- [StaticContentTableViewCell cellWithCustomCell:_userInMemoryInfoTableViewCell action:^{
- [weakSelf presentUserInMemoryInfo];
- }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleSettings cells:@[
- [StaticContentTableViewCell cellWithTitle:NSLocalizedString(@"SETTINGSKEY",
- kSettingsButtonTextDesription)
- action:^{ [weakSelf presentSettings]; }],
- [StaticContentTableViewCell cellWithTitle:kNewOrExistingUserToggleTitle
- value:_isNewUserToggleOn ? @"Enabled" : @"Disabled"
- action:^{
- _isNewUserToggleOn = !_isNewUserToggleOn;
- [self updateTable]; }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kPhoneAuthSectionTitle cells:@[
- [StaticContentTableViewCell cellWithTitle:kPhoneNumberSignInReCaptchaTitle
- action:^{ [weakSelf signInWithPhoneNumberWithPrompt]; }],
- [StaticContentTableViewCell cellWithTitle:kUpdatePhoneNumber
- action:^{ [weakSelf updatePhoneNumberWithPrompt]; }],
- [StaticContentTableViewCell cellWithTitle:kLinkPhoneNumber
- action:^{ [weakSelf linkPhoneNumberWithPrompt]; }],
- [StaticContentTableViewCell cellWithTitle:kUnlinkPhoneNumber
- action:^{
- [weakSelf unlinkFromProvider:FIRPhoneAuthProviderID completion:nil];
- }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleSignIn cells:@[
- [StaticContentTableViewCell cellWithTitle:kSwitchToInMemoryUserTitle
- value:nil
- action:^{ [weakSelf updateToSavedUser]; }],
- [StaticContentTableViewCell cellWithTitle:kCreateUserTitle
- value:nil
- action:^{ [weakSelf createUser]; }
- accessibilityID:kCreateUserAccessibilityID],
- [StaticContentTableViewCell cellWithTitle:kCreateUserAuthDataResultTitle
- action:^{ [weakSelf createUserAuthDataResult]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInGoogleButtonText
- action:^{ [weakSelf signInGoogle]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInWithEmailLink
- action:^{ [weakSelf signInWithEmailLink]; }],
- [StaticContentTableViewCell cellWithTitle:kVerifyEmailLinkAccount
- action:^{ [weakSelf verifyEmailLinkAccount]; }],
- [StaticContentTableViewCell cellWithTitle:kSendEmailSignInLink
- action:^{ [weakSelf sendEmailSignInLink]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInGoogleAndRetrieveDataButtonText
- action:^{ [weakSelf signInGoogleAndRetrieveData]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInFacebookButtonText
- action:^{ [weakSelf signInFacebook]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInFacebookAndRetrieveDataButtonText
- action:^{ [weakSelf signInFacebookAndRetrieveData]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInEmailPasswordButtonText
- action:^{ [weakSelf signInEmailPassword]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInEmailPasswordAuthDataResultButtonText
- action:^{ [weakSelf signInEmailPasswordAuthDataResult]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInWithCustomTokenButtonText
- action:^{ [weakSelf signInWithCustomToken]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInWithCustomAuthResultTokenButtonText
- action:^{ [weakSelf signInWithCustomTokenAuthResult]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInAnonymouslyButtonText
- action:^{ [weakSelf signInAnonymously]; }],
- [StaticContentTableViewCell cellWithTitle:kSignInAnonymouslyWithAuthResultButtonText
- action:^{ [weakSelf signInAnonymouslyAuthDataResult]; }],
- [StaticContentTableViewCell cellWithTitle:kGitHubSignInButtonText
- action:^{ [weakSelf signInWithGitHub]; }],
- [StaticContentTableViewCell cellWithTitle:kSignOutButtonText
- action:^{ [weakSelf signOut]; }]
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleUserActions cells:@[
- [StaticContentTableViewCell cellWithTitle:kSetDisplayNameTitle
- action:^{ [weakSelf setDisplayName]; }],
- [StaticContentTableViewCell cellWithTitle:kSetPhotoURLText
- action:^{ [weakSelf setPhotoURL]; }],
- [StaticContentTableViewCell cellWithTitle:kReloadText
- action:^{ [weakSelf reloadUser]; }],
- [StaticContentTableViewCell cellWithTitle:kGetProvidersForEmail
- action:^{ [weakSelf getProvidersForEmail]; }],
- [StaticContentTableViewCell cellWithTitle:kGetAllSignInMethodsForEmail
- action:^{ [weakSelf getAllSignInMethodsForEmail]; }],
- [StaticContentTableViewCell cellWithTitle:kUpdateEmailText
- action:^{ [weakSelf updateEmail]; }],
- [StaticContentTableViewCell cellWithTitle:kUpdatePasswordText
- action:^{ [weakSelf updatePassword]; }],
- [StaticContentTableViewCell cellWithTitle:kDeleteUserText
- action:^{ [weakSelf deleteAccount]; }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleOOBActions cells:@[
- [StaticContentTableViewCell cellWithTitle:kActionCodeTypeDescription
- value:[self actionCodeRequestTypeString]
- action:^{ [weakSelf toggleActionCodeRequestType]; }],
- [StaticContentTableViewCell cellWithTitle:kContinueURLDescription
- value:_actionCodeContinueURL.absoluteString ?: @"(nil)"
- action:^{ [weakSelf changeActionCodeContinueURL]; }],
- [StaticContentTableViewCell cellWithTitle:kRequestVerifyEmail
- action:^{ [weakSelf requestVerifyEmail]; }],
- [StaticContentTableViewCell cellWithTitle:kRequestPasswordReset
- action:^{ [weakSelf requestPasswordReset]; }],
- [StaticContentTableViewCell cellWithTitle:kResetPassword
- action:^{ [weakSelf resetPassword]; }],
- [StaticContentTableViewCell cellWithTitle:kCheckActionCode
- action:^{ [weakSelf checkActionCode]; }],
- [StaticContentTableViewCell cellWithTitle:kApplyActionCode
- action:^{ [weakSelf applyActionCode]; }],
- [StaticContentTableViewCell cellWithTitle:kVerifyPasswordResetCode
- action:^{ [weakSelf verifyPasswordResetCode]; }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleReauthenticate cells:@[
- [StaticContentTableViewCell cellWithTitle:kReauthenticateGoogleText
- action:^{ [weakSelf reauthenticateGoogle]; }],
- [StaticContentTableViewCell
- cellWithTitle:kReauthenticateGoogleAndRetrieveDataText
- action:^{ [weakSelf reauthenticateGoogleAndRetrieveData]; }],
- [StaticContentTableViewCell cellWithTitle:kReauthenticateFBText
- action:^{ [weakSelf reauthenticateFB]; }],
- [StaticContentTableViewCell cellWithTitle:kReauthenticateFBAndRetrieveDataText
- action:^{ [weakSelf reauthenticateFBAndRetrieveData]; }],
- [StaticContentTableViewCell cellWithTitle:kReauthenticateEmailText
- action:^{ [weakSelf reauthenticateEmailPassword]; }]
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleTokenActions cells:@[
- [StaticContentTableViewCell cellWithTitle:kTokenGetButtonText
- action:^{ [weakSelf getUserTokenWithForce:NO]; }],
- [StaticContentTableViewCell cellWithTitle:kTokenRefreshButtonText
- action:^{ [weakSelf getUserTokenWithForce:YES]; }],
- [StaticContentTableViewCell cellWithTitle:kGetTokenResultButtonText
- action:^{ [weakSelf getUserTokenResultWithForce:NO]; }],
- [StaticContentTableViewCell cellWithTitle:kGetTokenResultForceButtonText
- action:^{ [weakSelf getUserTokenResultWithForce:YES]; }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleLinkUnlinkAccounts cells:@[
- [StaticContentTableViewCell cellWithTitle:kLinkWithGoogleText
- action:^{ [weakSelf linkWithGoogle]; }],
- [StaticContentTableViewCell cellWithTitle:kLinkWithGoogleAndRetrieveDataText
- action:^{ [weakSelf linkWithGoogleAndRetrieveData]; }],
- [StaticContentTableViewCell cellWithTitle:kLinkWithFacebookText
- action:^{ [weakSelf linkWithFacebook]; }],
- [StaticContentTableViewCell cellWithTitle:kLinkWithFacebookAndRetrieveDataText
- action:^{ [weakSelf linkWithFacebookAndRetrieveData]; }],
- [StaticContentTableViewCell cellWithTitle:kLinkWithEmailPasswordText
- action:^{ [weakSelf linkWithEmailPassword]; }],
- [StaticContentTableViewCell cellWithTitle:kUnlinkFromGoogle
- action:^{
- [weakSelf unlinkFromProvider:FIRGoogleAuthProviderID completion:nil];
- }],
- [StaticContentTableViewCell cellWithTitle:kUnlinkFromFacebook
- action:^{
- [weakSelf unlinkFromProvider:FIRFacebookAuthProviderID completion:nil];
- }],
- [StaticContentTableViewCell cellWithTitle:kUnlinkFromEmailPassword
- action:^{
- [weakSelf unlinkFromProvider:FIREmailAuthProviderID completion:nil];
- }]
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleApp cells:@[
- [StaticContentTableViewCell cellWithTitle:kDeleteAppTitle
- action:^{ [weakSelf deleteApp]; }],
- [StaticContentTableViewCell cellWithTitle:kTokenGetButtonText
- action:^{ [weakSelf getAppTokenWithForce:NO]; }],
- [StaticContentTableViewCell cellWithTitle:kTokenRefreshButtonText
- action:^{ [weakSelf getAppTokenWithForce:YES]; }],
- [StaticContentTableViewCell cellWithTitle:kTimeAuthInitTitle
- action:^{ [weakSelf timeAuthInitialization]; }]
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleListeners cells:@[
- [StaticContentTableViewCell cellWithTitle:kAddAuthStateListenerTitle
- action:^{ [weakSelf addAuthStateListener]; }],
- [StaticContentTableViewCell cellWithTitle:kRemoveAuthStateListenerTitle
- action:^{ [weakSelf removeAuthStateListener]; }],
- [StaticContentTableViewCell cellWithTitle:kAddIDTokenListenerTitle
- action:^{ [weakSelf addIDTokenListener]; }],
- [StaticContentTableViewCell cellWithTitle:kRemoveIDTokenListenerTitle
- action:^{ [weakSelf removeIDTokenListener]; }],
- ]],
- [StaticContentTableViewSection sectionWithTitle:kSectionTitleManualTests cells:@[
- [StaticContentTableViewCell cellWithTitle:kAutoBYOAuthTitle
- action:^{ [weakSelf automatedBYOAuth]; }],
- [StaticContentTableViewCell cellWithTitle:kAutoSignInGoogle
- action:^{ [weakSelf automatedSignInGoogle]; }],
- [StaticContentTableViewCell cellWithTitle:kAutoSignInFacebook
- action:^{ [weakSelf automatedSignInFacebook]; }],
- [StaticContentTableViewCell cellWithTitle:kAutoSignUpEmailPassword
- action:^{ [weakSelf automatedEmailSignUp]; }],
- [StaticContentTableViewCell cellWithTitle:kAutoSignInAnonymously
- action:^{ [weakSelf automatedAnonymousSignIn]; }],
- [StaticContentTableViewCell cellWithTitle:kAutoAccountLinking
- action:^{ [weakSelf automatedAccountLinking]; }],
- [StaticContentTableViewCell cellWithTitle:kAutoPhoneNumberSignIn
- action:^{ [weakSelf automatedPhoneNumberSignIn]; }]
- ]]
- ]];
- }
- #pragma mark - Interface Builder Actions
- - (IBAction)userToUseDidChange:(UISegmentedControl *)sender {
- _useUserInMemory = (sender.selectedSegmentIndex == 1);
- }
- - (IBAction)memoryPlus {
- _userInMemory = [AppManager auth].currentUser;
- [self updateUserInfo];
- }
- - (IBAction)memoryClear {
- _userInMemory = nil;
- [self updateUserInfo];
- }
- /** @fn parseURL
- @brief Parses an incoming URL into all available query items.
- @param urlString The url to be parsed.
- @return A dictionary of available query items in the target URL.
- */
- static NSDictionary<NSString *, NSString *> *parseURL(NSString *urlString) {
- NSString *linkURL = [NSURLComponents componentsWithString:urlString].query;
- NSArray<NSString *> *URLComponents = [linkURL componentsSeparatedByString:@"&"];
- NSMutableDictionary<NSString *, NSString *> *queryItems =
- [[NSMutableDictionary alloc] initWithCapacity:URLComponents.count];
- for (NSString *component in URLComponents) {
- NSRange equalRange = [component rangeOfString:@"="];
- if (equalRange.location != NSNotFound) {
- NSString *queryItemKey =
- [[component substringToIndex:equalRange.location] stringByRemovingPercentEncoding];
- NSString *queryItemValue =
- [[component substringFromIndex:equalRange.location + 1] stringByRemovingPercentEncoding];
- if (queryItemKey && queryItemValue) {
- queryItems[queryItemKey] = queryItemValue;
- }
- }
- }
- return queryItems;
- }
- #pragma mark public methods
- - (BOOL)handleIncomingLinkWithURL:(NSURL *)URL {
- // Parse the query portion of the incoming URL.
- NSDictionary<NSString *, NSString *> *queryItems =
- parseURL([NSURLComponents componentsWithString:URL.absoluteString].query);
- // Check that all necessary query items are available.
- NSString *actionCode = queryItems[@"oobCode"];
- NSString *mode = queryItems[@"mode"];
- if (!actionCode || !mode) {
- return NO;
- }
- // Handle Password Reset action.
- if ([mode isEqualToString:kPasswordResetAction]) {
- [self showTextInputPromptWithMessage:@"New Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable newPassword) {
- if (!userPressedOK || !newPassword.length) {
- [UIPasteboard generalPasteboard].string = actionCode;
- return;
- }
- [self showSpinner:^() {
- [[AppManager auth] confirmPasswordResetWithCode:actionCode
- newPassword:newPassword
- completion:^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Password reset in app failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Password reset in app succeeded."];
- [self showMessagePrompt:@"Password reset in app succeeded."];
- }];
- }];
- }];
- }];
- return YES;
- }
- if ([mode isEqualToString:kVerifyEmailAction]) {
- [self showMessagePromptWithTitle:@"Tap OK to verify email"
- message:actionCode
- showCancelButton:YES
- completion:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK) {
- return;
- }
- [self showSpinner:^() {
- [[AppManager auth] applyActionCode:actionCode completion:^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Verify email in app failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Verify email in app succeeded."];
- [self showMessagePrompt:@"Verify email in app succeeded."];
- }];
- }];
- }];
- }];
- return YES;
- }
- return NO;
- }
- #pragma mark - Actions
- /** @fn signInWithProvider:provider:
- @brief Perform sign in with credential operataion, for given auth provider.
- @param provider The auth provider.
- @param callback The callback to continue the flow which executed this sign-in.
- */
- - (void)signInWithProvider:(nonnull id<AuthProvider>)provider callback:(void(^)(void))callback {
- if (!provider) {
- [self logFailedTest:@"A valid auth provider was not provided to the signInWithProvider."];
- return;
- }
- [provider getAuthCredentialWithPresentingViewController:self
- callback:^(FIRAuthCredential *credential,
- NSError *error) {
- if (!credential) {
- [self logFailedTest:@"The test needs a valid credential to continue."];
- return;
- }
- [[AppManager auth] signInWithCredential:credential completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with provider failed" error:error];
- [self logFailedTest:@"Sign-in should succeed"];
- return;
- } else {
- [self logSuccess:@"sign-in with provider succeeded."];
- callback();
- }
- }];
- }];
- }
- /** @fn automatedSignInGoogle
- @brief Automatically executes the manual test for sign-in with Google.
- */
- - (void)automatedSignInGoogle {
- [self showMessagePromptWithTitle:kAutoSignInGoogle
- message:kSafariGoogleSignOutMessagePrompt
- showCancelButton:NO
- completion:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [auth signOut:NULL];
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR GOOGLE SIGN IN:"];
- [self signInWithProvider:[AuthProviders google] callback:^{
- [self logSuccess:@"sign-in with Google provider succeeded."];
- [auth signOut:NULL];
- [self signInWithProvider:[AuthProviders google] callback:^{
- [self logSuccess:@"sign-in with Google provider succeeded."];
- [self updateEmailPasswordWithCompletion:^{
- [self automatedSignInGoogleDisplayNamePhotoURL];
- }];
- }];
- }];
- }];
- }
- /** @fn automatedSignInGoogleDisplayNamePhotoURL
- @brief Automatically executes the manual test for setting email and password for sign in with
- Google.
- */
- - (void)automatedSignInGoogleDisplayNamePhotoURL {
- [self signInWithProvider:[AuthProviders google] callback:^{
- [self updateDisplayNameAndPhotoURlWithCompletion:^{
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR SIGN-IN WITH GOOGlE."];
- [self reloadUser];
- }];
- }];
- }
- /** @fn automatedSignInFacebook
- @brief Automatically executes the manual test for sign-in with Facebook.
- */
- - (void)automatedSignInFacebook {
- [self showMessagePromptWithTitle:kAutoSignInFacebook
- message:kSafariFacebookSignOutMessagePrompt
- showCancelButton:NO
- completion:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [auth signOut:NULL];
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR FACEBOOK SIGN IN:"];
- [self signInWithProvider:[AuthProviders facebook] callback:^{
- [self logSuccess:@"sign-in with Facebook provider succeeded."];
- [auth signOut:NULL];
- [self signInWithProvider:[AuthProviders facebook] callback:^{
- [self logSuccess:@"sign-in with Facebook provider succeeded."];
- [self updateEmailPasswordWithCompletion:^{
- [self automatedSignInFacebookDisplayNamePhotoURL];
- }];
- }];
- }];
- }];
- }
- /** @fn automatedPhoneNumberSignIn
- @brief Automatically executes the manual test for sign-in with phone number.
- */
- - (void)automatedPhoneNumberSignIn {
- [self log:@"Automated phone number sign in"];
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [auth signOut:NULL];
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR PHONE NUMBER SIGN IN:"];
- [self commonPhoneNumberInputWithTitle:@"Phone for automation"
- Completion:^(NSString *_Nullable phone) {
- [self signInWithPhoneNumber:phone completion:^(NSError *error) {
- if (error) {
- [self logFailedTest:@"Could not sign in with phone number reCAPTCHA."];
- }
- [self logSuccess:@"sign-in with phone number reCAPTCHA test succeeded."];
- [auth signOut:NULL];
- [self signInWithPhoneNumber:phone completion:^(NSError *error) {
- if (error) {
- [self logFailedTest:@"Could not sign in with phone number reCAPTCHA."];
- }
- [self logSuccess:@"second sign-in with phone number reCAPTCHA test succeeded."];
- [self updatePhoneNumber:phone completion:^(NSError *error) {
- if (error) {
- [self logFailedTest:@"Could not update phone number."];
- }
- [self logSuccess:@"update phone number test succeeded."];
- [self unlinkFromProvider:FIRPhoneAuthProviderID completion:^(NSError *error) {
- if (error) {
- [self logFailedTest:@"Could not unlink phone number."];
- }
- [self logSuccess:@"unlink phone number test succeeded."];
- [self linkPhoneNumber:phone completion:^(NSError *error) {
- if (error) {
- [self logFailedTest:@"Could not link phone number."];
- }
- [self logSuccess:@"link phone number test succeeded."];
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR PHONE NUMBER SIGN IN."];
- }];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn automatedEmailSignUp
- @brief Automatically executes the manual test for sign-up with email/password.
- */
- - (void)automatedEmailSignUp {
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR FACEBOOK SIGN IN:"];
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [self signUpNewEmail:kFakeEmail password:kFakePassword callback:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- if (error) {
- [self logFailedTest: @" Email/Password Account account creation failed"];
- return;
- }
- [auth signOut:NULL];
- FIRAuthCredential *credential = [FIREmailAuthProvider credentialWithEmail:kFakeEmail
- password:kFakePassword];
- [auth signInWithCredential:credential
- completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with Email/Password failed" error:error];
- [self logFailedTest:@"sign-in with Email/Password should succeed."];
- return;
- }
- [self logSuccess:@"sign-in with Email/Password succeeded."];
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR SIGN-IN WITH EMAIL/PASSWORD."];
- // Delete the user so that we can reuse the fake email address for subsequent tests.
- [auth.currentUser deleteWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"Failed to delete user" error:error];
- [self logFailedTest:@"Deleting a user that was recently signed-in should succeed."];
- return;
- }
- [self logSuccess:@"User deleted."];
- }];
- }];
- }];
- }
- /** @fn automatedAnonymousSignIn
- @brief Automatically executes the manual test for sign-in anonymously.
- */
- - (void)automatedAnonymousSignIn {
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR ANONYMOUS SIGN IN:"];
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [auth signOut:NULL];
- [self signInAnonymouslyWithCallback:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (result.user) {
- NSString *anonymousUID = result.user.uid;
- [self signInAnonymouslyWithCallback:^(FIRAuthDataResult *_Nullable user,
- NSError *_Nullable error) {
- if (![result.user.uid isEqual:anonymousUID]) {
- [self logFailedTest:@"Consecutive anonymous sign-ins should yeild the same User ID"];
- return;
- }
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR ANONYMOUS SIGN IN."];
- }];
- }
- }];
- }
- /** @fn signInAnonymouslyWithCallback:
- @brief Performs anonymous sign in and then executes callback.
- @param callback The callback to be executed.
- */
- - (void)signInAnonymouslyWithCallback:(nullable FIRAuthDataResultCallback)callback {
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [auth signInAnonymouslyWithCompletion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in anonymously failed" error:error];
- [self logFailedTest:@"Recently signed out user should be able to sign in anonymously."];
- return;
- }
- [self logSuccess:@"sign-in anonymously succeeded."];
- if (callback) {
- callback(result, nil);
- }
- }];
- }
- /** @fn automatedAccountLinking
- @brief Automatically executes the manual test for account linking.
- */
- - (void)automatedAccountLinking {
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR ACCOUNT LINKING:"];
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- [self logFailedTest:@"Could not obtain auth object."];
- return;
- }
- [auth signOut:NULL];
- [self signInAnonymouslyWithCallback:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (result.user) {
- NSString *anonymousUID = result.user.uid;
- [self showMessagePromptWithTitle:@"Sign In Instructions"
- message:kUnlinkAccountMessagePrompt
- showCancelButton:NO
- completion:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- [[AuthProviders google]
- getAuthCredentialWithPresentingViewController:self
- callback:^(FIRAuthCredential *credential,
- NSError *error) {
- if (credential) {
- [result.user linkWithCredential:credential completion:^(FIRUser *user,
- NSError *error) {
- if (error) {
- [self logFailure:@"link auth provider failed" error:error];
- [self logFailedTest:@"Account needs to be linked to complete the test."];
- return;
- }
- [self logSuccess:@"link auth provider succeeded."];
- if (user.isAnonymous) {
- [self logFailure:@"link auth provider failed, user still anonymous" error:error];
- [self logFailedTest:@"Account needs to be linked to complete the test."];
- }
- if (![user.uid isEqual:anonymousUID]){
- [self logFailedTest:@"link auth provider failed, UID's are different. Make sure "
- "you link an account that has NOT been Linked nor Signed-In before."];
- return;
- }
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR ACCOUNT LINKING."];
- }];
- }
- }];
- }];
- }
- }];
- }
- /** @fn automatedSignInFacebookDisplayNamePhotoURL
- @brief Automatically executes the manual test for setting email and password for sign-in with
- Facebook.
- */
- - (void)automatedSignInFacebookDisplayNamePhotoURL {
- [self signInWithProvider:[AuthProviders facebook] callback:^{
- [self updateDisplayNameAndPhotoURlWithCompletion:^{
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR SIGN-IN WITH FACEBOOK."];
- [self reloadUser];
- }];
- }];
- }
- /** @fn automatedBYOauth
- @brief Automatically executes the manual test for BYOAuth.
- */
- - (void)automatedBYOAuth {
- [self log:@"INITIATING AUTOMATED MANUAL TEST FOR BYOAUTH:"];
- [self showSpinner:^{
- NSError *error;
- NSString *customToken = [NSString stringWithContentsOfURL:[NSURL URLWithString:kCustomTokenUrl]
- encoding:NSUTF8StringEncoding
- error:&error];
- NSString *expiredCustomToken =
- [NSString stringWithContentsOfURL:[NSURL URLWithString:kExpiredCustomTokenUrl]
- encoding:NSUTF8StringEncoding
- error:&error];
- [self hideSpinner:^{
- if (error) {
- [self log:@"There was an error retrieving the custom token."];
- return;
- }
- FIRAuth *auth = [AppManager auth];
- [auth signInWithCustomToken:customToken
- completion:^(FIRAuthDataResult *_Nullable result, NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with custom token failed" error:error];
- [self logFailedTest:@"A fresh custom token should succeed in signing-in."];
- return;
- }
- [self logSuccess:@"sign-in with custom token succeeded."];
- [auth.currentUser getIDTokenForcingRefresh:NO
- completion:^(NSString *_Nullable token,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"refresh token failed" error:error];
- [self logFailedTest:@"Refresh token should be available."];
- return;
- }
- [self logSuccess:@"refresh token succeeded."];
- [auth signOut:NULL];
- [auth signInWithCustomToken:expiredCustomToken
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (!error) {
- [self logSuccess:@"sign-in with custom token succeeded."];
- [self logFailedTest:@"sign-in with an expired custom token should NOT succeed."];
- return;
- }
- [self logFailure:@"sign-in with custom token failed" error:error];
- [auth signInWithCustomToken:kInvalidCustomToken
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (!error) {
- [self logSuccess:@"sign-in with custom token succeeded."];
- [self logFailedTest:@"sign-in with an invalid custom token should NOT succeed."];
- return;
- }
- [self logFailure:@"sign-in with custom token failed" error:error];
- //next step of automated test.
- [self automatedBYOAuthEmailPassword];
- }];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn automatedBYOAuthEmailPassword
- @brief Automatically executes the manual test for setting email and password in BYOAuth.
- */
- - (void)automatedBYOAuthEmailPassword {
- [self showSpinner:^{
- NSError *error;
- NSString *customToken = [NSString stringWithContentsOfURL:[NSURL URLWithString:kCustomTokenUrl]
- encoding:NSUTF8StringEncoding
- error:&error];
- [self hideSpinner:^{
- if (error) {
- [self log:@"There was an error retrieving the custom token."];
- return;
- }
- [[AppManager auth] signInWithCustomToken:customToken
- completion:^(FIRAuthDataResult *_Nullable user,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with custom token failed" error:error];
- [self logFailedTest:@"A fresh custom token should succeed in signing-in."];
- return;
- }
- [self logSuccess:@"sign-in with custom token succeeded."];
- [self updateEmailPasswordWithCompletion:^{
- [self automatedBYOAuthDisplayNameAndPhotoURl];
- }];
- }];
- }];
- }];
- }
- /** @fn automatedBYOAuthDisplayNameAndPhotoURl
- @brief Automatically executes the manual test for setting display name and photo url in BYOAuth.
- */
- - (void)automatedBYOAuthDisplayNameAndPhotoURl {
- [self showSpinner:^{
- NSError *error;
- NSString *customToken = [NSString stringWithContentsOfURL:[NSURL URLWithString:kCustomTokenUrl]
- encoding:NSUTF8StringEncoding
- error:&error];
- [self hideSpinner:^{
- if (error) {
- [self log:@"There was an error retrieving the custom token."];
- return;
- }
- [[AppManager auth] signInWithCustomToken:customToken
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with custom token failed" error:error];
- [self logFailedTest:@"A fresh custom token should succeed in signing-in."];
- return;
- }
- [self logSuccess:@"sign-in with custom token succeeded."];
- [self updateDisplayNameAndPhotoURlWithCompletion:^{
- [self log:@"FINISHED AUTOMATED MANUAL TEST FOR BYOAUTH."];
- [self reloadUser];
- }];
- }];
- }];
- }];
- }
- /** @fn updateEmailPasswordWithCompletion:
- @brief Updates email and password for automatic manual tests, and signs user in with new email
- and password.
- @param completion The completion block to continue the automatic test flow.
- */
- - (void)updateEmailPasswordWithCompletion:(void(^)(void))completion {
- FIRAuth *auth = [AppManager auth];
- [auth.currentUser updateEmail:kFakeEmail completion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"update email failed" error:error];
- [self logFailedTest:@"Update email should succeed when properly signed-in."];
- return;
- }
- [self logSuccess:@"update email succeeded."];
- [auth.currentUser updatePassword:kFakePassword completion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"update password failed" error:error];
- [self logFailedTest:@"Update password should succeed when properly signed-in."];
- return;
- }
- [self logSuccess:@"update password succeeded."];
- [auth signOut:NULL];
- FIRAuthCredential *credential =
- [FIREmailAuthProvider credentialWithEmail:kFakeEmail password:kFakePassword];
- [auth signInWithCredential:credential
- completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with Email/Password failed" error:error];
- [self logFailedTest:@"sign-in with Email/Password should succeed."];
- return;
- }
- [self logSuccess:@"sign-in with Email/Password succeeded."];
- // Delete the user so that we can reuse the fake email address for subsequent tests.
- [auth.currentUser deleteWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"Failed to delete user." error:error];
- [self logFailedTest:@"Deleting a user that was recently signed-in should succeed"];
- return;
- }
- [self logSuccess:@"User deleted."];
- completion();
- }];
- }];
- }];
- }];
- }
- /** @fn updateDisplayNameAndPhotoURlWithCompletion:
- @brief Automatically executes the manual test for setting displayName and photoUrl.
- @param completion The completion block to continue the automatic test flow.
- */
- - (void)updateDisplayNameAndPhotoURlWithCompletion:(void(^)(void))completion {
- FIRAuth *auth = [AppManager auth];
- FIRUserProfileChangeRequest *changeRequest = [auth.currentUser profileChangeRequest];
- changeRequest.photoURL = [NSURL URLWithString:kFakeDisplayPhotoUrl];
- [changeRequest commitChangesWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"set photo URL failed" error:error];
- [self logFailedTest:@"Change photo Url should succeed when signed-in."];
- return;
- }
- [self logSuccess:@"set PhotoURL succeeded."];
- FIRUserProfileChangeRequest *changeRequest = [auth.currentUser profileChangeRequest];
- changeRequest.displayName = kFakeDisplayName;
- [changeRequest commitChangesWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"set display name failed" error:error];
- [self logFailedTest:@"Change display name should succeed when signed-in."];
- return;
- }
- [self logSuccess:@"set display name succeeded."];
- completion();
- }];
- }];
- }
- /** @fn addAuthStateListener
- @brief Adds an auth state did change listener (block).
- */
- - (void)addAuthStateListener {
- __weak typeof(self) weakSelf = self;
- NSUInteger index = _authStateDidChangeListeners.count;
- [self log:[NSString stringWithFormat:@"Auth State Did Change Listener #%lu was added.",
- (unsigned long)index]];
- FIRAuthStateDidChangeListenerHandle handle =
- [[AppManager auth] addAuthStateDidChangeListener:^(FIRAuth *_Nonnull auth,
- FIRUser *_Nullable user) {
- [weakSelf log:[NSString stringWithFormat:
- @"Auth State Did Change Listener #%lu was invoked on user '%@'.",
- (unsigned long)index, user.uid]];
- }];
- [_authStateDidChangeListeners addObject:handle];
- }
- /** @fn removeAuthStateListener
- @brief Removes an auth state did change listener (block).
- */
- - (void)removeAuthStateListener {
- if (!_authStateDidChangeListeners.count) {
- [self log:@"No remaining Auth State Did Change Listeners."];
- return;
- }
- NSUInteger index = _authStateDidChangeListeners.count - 1;
- FIRAuthStateDidChangeListenerHandle handle = _authStateDidChangeListeners.lastObject;
- [[AppManager auth] removeAuthStateDidChangeListener:handle];
- [_authStateDidChangeListeners removeObject:handle];
- NSString *logString =
- [NSString stringWithFormat:@"Auth State Did Change Listener #%lu was removed.",
- (unsigned long)index];
- [self log:logString];
- }
- /** @fn addIDTokenListener
- @brief Adds an ID token did change listener (block).
- */
- - (void)addIDTokenListener {
- __weak typeof(self) weakSelf = self;
- NSUInteger index = _IDTokenDidChangeListeners.count;
- [self log:[NSString stringWithFormat:@"ID Token Did Change Listener #%lu was added.",
- (unsigned long)index]];
- FIRIDTokenDidChangeListenerHandle handle =
- [[AppManager auth] addIDTokenDidChangeListener:^(FIRAuth *_Nonnull auth,
- FIRUser *_Nullable user) {
- [weakSelf log:[NSString stringWithFormat:
- @"ID Token Did Change Listener #%lu was invoked on user '%@'.",
- (unsigned long)index, user.uid]];
- }];
- [_IDTokenDidChangeListeners addObject:handle];
- }
- /** @fn removeIDTokenListener
- @brief Removes an ID token did change listener (block).
- */
- - (void)removeIDTokenListener {
- if (!_IDTokenDidChangeListeners.count) {
- [self log:@"No remaining ID Token Did Change Listeners."];
- return;
- }
- NSUInteger index = _IDTokenDidChangeListeners.count - 1;
- FIRIDTokenDidChangeListenerHandle handle = _IDTokenDidChangeListeners.lastObject;
- [[AppManager auth] removeIDTokenDidChangeListener:handle];
- [_IDTokenDidChangeListeners removeObject:handle];
- NSString *logString =
- [NSString stringWithFormat:@"ID Token Did Change Listener #%lu was removed.",
- (unsigned long)index];
- [self log:logString];
- }
- /** @fn log:
- @brief Prints a log message to the sample app console.
- @param string The string to add to the console.
- */
- - (void)log:(NSString *)string {
- NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
- dateFormatter.dateFormat = @"yyyy-MM-dd HH:mm:ss";
- NSString *date = [dateFormatter stringFromDate:[NSDate date]];
- if (!_consoleString) {
- _consoleString = [NSMutableString string];
- }
- [_consoleString appendString:[NSString stringWithFormat:@"%@ %@\n", date, string]];
- _consoleTextView.text = _consoleString;
- CGRect targetRect = CGRectMake(0, _consoleTextView.contentSize.height - 1, 1, 1);
- [_consoleTextView scrollRectToVisible:targetRect animated:YES];
- }
- /** @fn logSuccess:
- @brief Wraps a string into a succeful log message format.
- @param string Part of the log message.
- @remarks The @string parameter should be a string ending with a period, as it is the end of the
- log message.
- */
- - (void)logSuccess:(NSString *)string {
- [self log:[NSString stringWithFormat:@"SUCCESS: %@", string]];
- }
- /** @fn logFailure:
- @brief Wraps a string into a failed log message format.
- @param string Part of the message to wrap.
- @remarks The @string parameter should be a string that NEVER ends with a period, as it is
- guaranteed not to be the last part fo the log message.
- */
- - (void)logFailure:(NSString *)string error:(NSError *) error {
- NSString *message =
- [NSString stringWithFormat:@"FAILURE: %@ Error Description: %@.", string, error.description];
- [self log:message];
- }
- /** @fn logTestFailed
- @brief Logs test failure to the console.
- @param reason The reason why the test is considered a failure.
- @remarks The calling method should immediately terminate after invoking this method i.e by
- return statement or end of fucntions. The @reason parameter should be a string ending with a
- period, as it is the end of the log message.
- */
- - (void)logFailedTest:( NSString *_Nonnull )reason {
- [self log:[NSString stringWithFormat:@"FAILIURE: TEST FAILED - %@", reason]];
- }
- /** @fn presentSettings
- @brief Invoked when the settings row is pressed.
- */
- - (void)presentSettings {
- SettingsViewController *settingsViewController = [[SettingsViewController alloc]
- initWithNibName:NSStringFromClass([SettingsViewController class])
- bundle:nil];
- [self showViewController:settingsViewController sender:self];
- }
- /** @fn presentUserInfo
- @brief Invoked when the user info row is pressed.
- */
- - (void)presentUserInfo {
- UserInfoViewController *userInfoViewController =
- [[UserInfoViewController alloc] initWithUser:[AppManager auth].currentUser];
- [self showViewController:userInfoViewController sender:self];
- }
- /** @fn presentUserInMemoryInfo
- @brief Invoked when the user in memory info row is pressed.
- */
- - (void)presentUserInMemoryInfo {
- UserInfoViewController *userInfoViewController =
- [[UserInfoViewController alloc] initWithUser:_userInMemory];
- [self showViewController:userInfoViewController sender:self];
- }
- /** @fn signInGoogle
- @brief Invoked when "Sign in with Google" row is pressed.
- */
- - (void)signInGoogle {
- [self signinWithProvider:[AuthProviders google] retrieveData:YES];
- }
- /** @fn signInGoogleAndRetrieveData
- @brief Invoked when "Sign in with Google and retrieve data" row is pressed.
- */
- - (void)signInGoogleAndRetrieveData {
- [self signinWithProvider:[AuthProviders google] retrieveData:YES];
- }
- /** @fn signInFacebook
- @brief Invoked when "Sign in with Facebook" row is pressed.
- */
- - (void)signInFacebook {
- [self signinWithProvider:[AuthProviders facebook] retrieveData:YES];
- }
- /** @fn signInFacebookAndRetrieveData
- @brief Invoked when "Sign in with Facebook and retrieve data" row is pressed.
- */
- - (void)signInFacebookAndRetrieveData {
- [self signinWithProvider:[AuthProviders facebook] retrieveData:YES];
- }
- /** @fn signInEmailPassword
- @brief Invoked when "Sign in with Email/Password" row is pressed.
- */
- - (void)signInEmailPassword {
- [self showTextInputPromptWithMessage:@"Email Address:"
- keyboardType:UIKeyboardTypeEmailAddress
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable email) {
- if (!userPressedOK || !email.length) {
- return;
- }
- [self showTextInputPromptWithMessage:@"Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable password) {
- if (!userPressedOK) {
- return;
- }
- FIRAuthCredential *credential =
- [FIREmailAuthProvider credentialWithEmail:email
- password:password];
- [self showSpinner:^{
- [[AppManager auth] signInWithCredential:credential
- completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"sign-in with Email/Password failed" error:error];
- } else {
- [self logSuccess:@"sign-in with Email/Password succeeded."];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Sign-In Error" error:error];
- }];
- }];
- }];
- }];
- }];
- }
- - (void)signInEmailPasswordAuthDataResult {
- [self showTextInputPromptWithMessage:@"Email Address:"
- keyboardType:UIKeyboardTypeEmailAddress
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable email) {
- if (!userPressedOK || !email.length) {
- return;
- }
- [self showTextInputPromptWithMessage:@"Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable password) {
- if (!userPressedOK) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] signInAndRetrieveDataWithEmail:email
- password:password
- completion:^(FIRAuthDataResult *_Nullable authResult,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"sign-in with Email/Password failed" error:error];
- } else {
- [self logSuccess:@"sign-in with Email/Password succeeded."];
- [self log:[NSString stringWithFormat:@"UID: %@",authResult.user.uid]];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Sign-In Error" error:error];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn signInWithEmailLink
- @brief Invoked when "Sign in with email link" row is pressed.
- */
- - (void)signInWithEmailLink {
- [self showTextInputPromptWithMessage:@"Email Address:"
- keyboardType:UIKeyboardTypeEmailAddress
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable email) {
- if (!userPressedOK || !email.length) {
- return;
- }
- [self showTextInputPromptWithMessage:@"Email Sign-In Link:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable link) {
- if (!userPressedOK) {
- return;
- }
- if ([[FIRAuth auth] isSignInWithEmailLink:link]) {
- [self showSpinner:^{
- [[AppManager auth] signInWithEmail:email
- link:link
- completion:^(FIRAuthDataResult *_Nullable authResult,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"sign-in with Email/Sign-In failed" error:error];
- } else {
- [self logSuccess:@"sign-in with Email/Sign-In link succeeded."];
- [self log:[NSString stringWithFormat:@"UID: %@",authResult.user.uid]];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Sign-In Error" error:error];
- }];
- }];
- }];
- } else {
- [self log:@"The sign-in link is invalid"];
- }
- }];
- }];
- }
- /** @fn verifyEmailLinkAccount
- @brief Invoked to verify that the current user is an email-link user.
- */
- - (void)verifyEmailLinkAccount {
- if (![FIRAuth auth].currentUser.email) {
- [self showMessagePrompt:@"There is no signed-in user available."];
- return;
- }
- [[FIRAuth auth] fetchSignInMethodsForEmail:[FIRAuth auth].currentUser.email
- completion:^(NSArray<NSString *> *_Nullable signInMethods,
- NSError *_Nullable error) {
- if (error) {
- [self showMessagePrompt:@"There was an error fetching sign-in methods."];
- return;
- }
- if (![signInMethods containsObject:FIREmailLinkAuthSignInMethod]) {
- [self showMessagePrompt:@"Error: The current user is NOT an email-link user."];
- return;
- }
- [self showMessagePrompt:@"The current user is an email-link user."];
- }];
- }
- /** @fn sendEmailSignInLink
- @brief Invoked when "Send email sign-in link" row is pressed.
- */
- - (void)sendEmailSignInLink {
- [self showTextInputPromptWithMessage:@"Email:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK) {
- return;
- }
- [self showSpinner:^{
- void (^requestEmailSignInLink)(void (^)(NSError *)) = ^(void (^completion)(NSError *)) {
- [[AppManager auth] sendSignInLinkToEmail:userInput
- actionCodeSettings:[self actionCodeSettings]
- completion:completion];
- };
- requestEmailSignInLink(^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Email Link request failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Email Link request succeeded."];
- [self showMessagePrompt:@"Sent"];
- }];
- });
- }];
- }];
- }
- /** @fn signUpNewEmail
- @brief Invoked if sign-in is attempted with new email/password.
- @remarks Should only be called if @c FIRAuthErrorCodeInvalidEmail is encountered on attepmt to
- sign in with email/password.
- */
- - (void)signUpNewEmail:(NSString *)email
- password:(NSString *)password
- callback:(nullable FIRAuthResultCallback)callback {
- [[AppManager auth] createUserWithEmail:email
- password:password
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-up with Email/Password failed" error:error];
- if (callback) {
- callback(nil, error);
- }
- } else {
- [self logSuccess:@"sign-up with Email/Password succeeded."];
- if (callback) {
- callback(result.user, nil);
- }
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Sign-In" error:error];
- }];
- }
- /** @fn signInWithCustomToken
- @brief Signs the user in using a manually-entered custom token.
- */
- - (void)signInWithCustomToken {
- CustomTokenDataEntryViewControllerCompletion action =
- ^(BOOL cancelled, NSString *_Nullable userEnteredTokenText) {
- if (cancelled) {
- [self log:@"CANCELLED:sign-in with custom token cancelled."];
- return;
- }
- [self doSignInWithCustomToken:userEnteredTokenText];
- };
- CustomTokenDataEntryViewController *dataEntryViewController =
- [[CustomTokenDataEntryViewController alloc] initWithCompletion:action];
- [self presentViewController:dataEntryViewController animated:YES completion:nil];
- }
- /** @fn signInWithCustomTokenAuthResult
- @brief Signs the user in using a manually-entered custom token.
- */
- - (void)signInWithCustomTokenAuthResult {
- CustomTokenDataEntryViewControllerCompletion action =
- ^(BOOL cancelled, NSString *_Nullable userEnteredTokenText) {
- if (cancelled) {
- [self log:@"CANCELLED:sign-in with custom token cancelled."];
- return;
- }
- [self doSignInAndRetrieveDataWithCustomToken:userEnteredTokenText];
- };
- CustomTokenDataEntryViewController *dataEntryViewController =
- [[CustomTokenDataEntryViewController alloc] initWithCompletion:action];
- [self presentViewController:dataEntryViewController animated:YES completion:nil];
- }
- /** @fn signOut
- @brief Signs the user out.
- */
- - (void)signOut {
- [[AuthProviders google] signOut];
- [[AuthProviders facebook] signOut];
- [[AppManager auth] signOut:NULL];
- }
- /** @fn deleteAccount
- @brief Deletes the current user account and signs the user out.
- */
- - (void)deleteAccount {
- FIRUser *user = [self user];
- [user deleteWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"delete account failed" error:error];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:kDeleteUserText error:error];
- }];
- }
- /** @fn reauthenticateGoogle
- @brief Asks the user to reauthenticate with Google.
- */
- - (void)reauthenticateGoogle {
- [self reauthenticate:[AuthProviders google] retrieveData:NO];
- }
- /** @fn reauthenticateGoogleAndRetrieveData
- @brief Asks the user to reauthenticate with Google and retrieve additional data.
- */
- - (void)reauthenticateGoogleAndRetrieveData {
- [self reauthenticate:[AuthProviders google] retrieveData:YES];
- }
- /** @fn reauthenticateFB
- @brief Asks the user to reauthenticate with Facebook.
- */
- - (void)reauthenticateFB {
- [self reauthenticate:[AuthProviders facebook] retrieveData:NO];
- }
- /** @fn reauthenticateFBAndRetrieveData
- @brief Asks the user to reauthenticate with Facebook and retrieve additional data.
- */
- - (void)reauthenticateFBAndRetrieveData {
- [self reauthenticate:[AuthProviders facebook] retrieveData:YES];
- }
- /** @fn reauthenticateEmailPassword
- @brief Asks the user to reauthenticate with email/password.
- */
- - (void)reauthenticateEmailPassword {
- FIRUser *user = [self user];
- if (!user) {
- NSString *title = @"Missing User";
- NSString *message = @"There is no signed-in email/password user.";
- [self showMessagePromptWithTitle:title message:message showCancelButton:NO completion:nil];
- return;
- }
- [self showEmailPasswordDialogWithCompletion:^(FIRAuthCredential *credential) {
- [self showSpinner:^{
- [[self user] reauthenticateWithCredential:credential
- completion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"reauthicate with email/password failed" error:error];
- } else {
- [self logSuccess:@"reauthicate with email/password succeeded."];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kReauthenticateEmailText error:error];
- }];
- }];
- }];
- }];
- }
- /** @fn reauthenticate:
- @brief Reauthenticates user.
- @param authProvider The auth provider to use for reauthentication.
- @param retrieveData Defines if additional provider data should be read.
- */
- - (void)reauthenticate:(id<AuthProvider>)authProvider retrieveData:(BOOL)retrieveData {
- FIRUser *user = [self user];
- if (!user) {
- NSString *provider = @"Firebase";
- if ([authProvider isKindOfClass:[GoogleAuthProvider class]]) {
- provider = @"Google";
- } else if ([authProvider isKindOfClass:[FacebookAuthProvider class]]) {
- provider = @"Facebook";
- }
- NSString *title = @"Missing User";
- NSString *message =
- [NSString stringWithFormat:@"There is no signed-in %@ user.", provider];
- [self showMessagePromptWithTitle:title message:message showCancelButton:NO completion:nil];
- return;
- }
- [authProvider getAuthCredentialWithPresentingViewController:self
- callback:^(FIRAuthCredential *credential,
- NSError *error) {
- if (credential) {
- FIRAuthDataResultCallback completion = ^(FIRAuthDataResult *_Nullable authResult,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"reauthenticate operation failed" error:error];
- } else {
- [self logSuccess:@"reauthenticate operation succeeded."];
- }
- if (authResult.additionalUserInfo) {
- [self logSuccess:[self stringWithAdditionalUserInfo:authResult.additionalUserInfo]];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Reauthenticate" error:error];
- };
- FIRUserProfileChangeCallback callback = ^(NSError *_Nullable error) {
- completion(nil, error);
- };
- if (retrieveData) {
- [user reauthenticateAndRetrieveDataWithCredential:credential completion:completion];
- } else {
- [user reauthenticateWithCredential:credential completion:callback];
- }
- }
- }];
- }
- /** @fn signinWithProvider:
- @brief Signs in the user with provided auth provider.
- @param authProvider The auth provider to use for sign-in.
- @param retrieveData Defines if additional provider data should be read.
- */
- - (void)signinWithProvider:(id<AuthProvider>)authProvider retrieveData:(BOOL)retrieveData {
- FIRAuth *auth = [AppManager auth];
- if (!auth) {
- return;
- }
- [authProvider getAuthCredentialWithPresentingViewController:self
- callback:^(FIRAuthCredential *credential,
- NSError *error) {
- if (credential) {
- FIRAuthDataResultCallback completion = ^(FIRAuthDataResult *_Nullable authResult,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with provider failed" error:error];
- } else {
- [self logSuccess:@"sign-in with provider succeeded."];
- }
- if (authResult.additionalUserInfo) {
- [self logSuccess:[self stringWithAdditionalUserInfo:authResult.additionalUserInfo]];
- if (_isNewUserToggleOn) {
- NSString *newUserString = authResult.additionalUserInfo.isNewUser ?
- @"New user" : @"Existing user";
- [self showMessagePromptWithTitle:@"New or Existing"
- message:newUserString
- showCancelButton:NO
- completion:nil];
- }
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Sign-In" error:error];
- };
- FIRAuthResultCallback callback = ^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- completion(nil, error);
- };
- if (retrieveData) {
- [auth signInAndRetrieveDataWithCredential:credential completion:completion];
- } else {
- [auth signInWithCredential:credential completion:callback];
- }
- }
- }];
- }
- /** @fn tokenCallback
- @return A callback block to show the token.
- */
- - (FIRAuthTokenCallback)tokenCallback {
- return ^(NSString *_Nullable token, NSError *_Nullable error) {
- if (error) {
- [self showMessagePromptWithTitle:kTokenRefreshErrorAlertTitle
- message:error.localizedDescription
- showCancelButton:NO
- completion:nil];
- [self logFailure:@"refresh token failed" error:error];
- return;
- }
- [self logSuccess:@"refresh token succeeded."];
- [self showMessagePromptWithTitle:kTokenRefreshedAlertTitle
- message:token
- showCancelButton:NO
- completion:nil];
- };
- }
- /** @fn getUserTokenWithForce:
- @brief Gets the token from @c FIRUser, optionally a refreshed one.
- @param force Whether the refresh is forced or not.
- */
- - (void)getUserTokenWithForce:(BOOL)force {
- [[self user] getIDTokenForcingRefresh:force completion:[self tokenCallback]];
- }
- /** @fn getUserTokenResultWithForce:
- @brief Gets the token result object from @c FIRUser, optionally a refreshed one.
- @param force Whether the refresh is forced or not.
- */
- - (void)getUserTokenResultWithForce:(BOOL)force {
- [[self user] getIDTokenResultForcingRefresh:force
- completion:^(FIRAuthTokenResult *_Nullable tokenResult,
- NSError *_Nullable error) {
- if (error) {
- [self showMessagePromptWithTitle:kTokenRefreshErrorAlertTitle
- message:error.localizedDescription
- showCancelButton:NO
- completion:nil];
- [self logFailure:@"refresh token failed" error:error];
- return;
- }
- [self logSuccess:@"refresh token succeeded."];
- NSMutableString *message =
- [[NSMutableString alloc] initWithString:
- [NSString stringWithFormat:@"Token : %@\n", tokenResult.token]];
- [message appendString:[NSString stringWithFormat:@"Auth Date : %@\n", tokenResult.authDate]];
- [message appendString:
- [NSString stringWithFormat:@"EXP Date : %@\n", tokenResult.expirationDate]];
- [message appendString:
- [NSString stringWithFormat:@"Issued Date : %@\n", tokenResult.issuedAtDate]];
- [self showMessagePromptWithTitle:kTokenRefreshedAlertTitle
- message:message
- showCancelButton:NO
- completion:nil];
- }];
- }
- /** @fn getAppTokenWithForce:
- @brief Gets the token from @c FIRApp , optionally a refreshed one.
- @param force Whether the refresh is forced or not.
- */
- - (void)getAppTokenWithForce:(BOOL)force {
- [[FIRApp defaultApp] getTokenForcingRefresh:force withCallback:[self tokenCallback]];
- }
- /** @fn setDisplayName
- @brief Changes the display name of the current user.
- */
- - (void)setDisplayName {
- [self showTextInputPromptWithMessage:@"Display Name:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- FIRUserProfileChangeRequest *changeRequest = [[self user] profileChangeRequest];
- changeRequest.displayName = userInput;
- [changeRequest commitChangesWithCompletion:^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"set display name failed" error:error];
- } else {
- [self logSuccess:@"set display name succeeded."];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:kSetDisplayNameTitle error:error];
- }];
- }];
- }];
- }];
- }
- /** @fn setPhotoURL
- @brief Changes the photo url of the current user.
- */
- - (void)setPhotoURL {
- [self showTextInputPromptWithMessage:@"Photo URL:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- FIRUserProfileChangeRequest *changeRequest = [[self user] profileChangeRequest];
- changeRequest.photoURL = [NSURL URLWithString:userInput];
- [changeRequest commitChangesWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"set photo URL failed" error:error];
- } else {
- [self logSuccess:@"set Photo URL succeeded."];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kSetPhotoURLText error:error];
- }];
- }];
- }];
- }];
- }
- /** @fn reloadUser
- @brief Reloads the user from server.
- */
- - (void)reloadUser {
- [self showSpinner:^() {
- [[self user] reloadWithCompletion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"reload user failed" error:error];
- } else {
- [self logSuccess:@"reload user succeeded."];
- }
- [self hideSpinner:^() {
- [self showTypicalUIForUserUpdateResultsWithTitle:kReloadText error:error];
- }];
- }];
- }];
- }
- /** @fn linkWithAuthProvider:retrieveData:
- @brief Asks the user to sign in with an auth provider and link the current user with it.
- @param authProvider The auth provider to sign in and link with.
- @param retrieveData Defines if additional provider data should be read.
- */
- - (void)linkWithAuthProvider:(id<AuthProvider>)authProvider retrieveData:(BOOL)retrieveData {
- FIRUser *user = [self user];
- if (!user) {
- return;
- }
- [authProvider getAuthCredentialWithPresentingViewController:self
- callback:^(FIRAuthCredential *credential,
- NSError *error) {
- if (credential) {
- FIRAuthDataResultCallback completion = ^(FIRAuthDataResult *_Nullable authResult,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"link auth provider failed" error:error];
- } else {
- [self logSuccess:@"link auth provider succeeded."];
- }
- if (authResult.additionalUserInfo) {
- [self logSuccess:[self stringWithAdditionalUserInfo:authResult.additionalUserInfo]];
- }
- if (retrieveData) {
- [self showUIForAuthDataResultWithResult:authResult error:error];
- } else {
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Link Account" error:error];
- }
- };
- FIRAuthResultCallback callback = ^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- completion(nil, error);
- };
- if (retrieveData) {
- [user linkAndRetrieveDataWithCredential:credential completion:completion];
- } else {
- [user linkWithCredential:credential completion:callback];
- }
- }
- }];
- }
- /** @fn linkWithGoogle
- @brief Asks the user to sign in with Google and link the current user with this Google account.
- */
- - (void)linkWithGoogle {
- [self linkWithAuthProvider:[AuthProviders google] retrieveData:NO];
- }
- /** @fn linkWithGoogleAndRetrieveData
- @brief Asks the user to sign in with Google and link the current user with this Google account
- and retrieve additional data.
- */
- - (void)linkWithGoogleAndRetrieveData {
- [self linkWithAuthProvider:[AuthProviders google] retrieveData:YES];
- }
- /** @fn linkWithFacebook
- @brief Asks the user to sign in with Facebook and link the current user with this Facebook
- account.
- */
- - (void)linkWithFacebook {
- [self linkWithAuthProvider:[AuthProviders facebook] retrieveData:NO];
- }
- /** @fn linkWithFacebookAndRetrieveData
- @brief Asks the user to sign in with Facebook and link the current user with this Facebook
- account and retrieve additional data.
- */
- - (void)linkWithFacebookAndRetrieveData {
- [self linkWithAuthProvider:[AuthProviders facebook] retrieveData:YES];
- }
- /** @fn linkWithEmailPassword
- @brief Asks the user to sign in with Facebook and link the current user with this Facebook
- account.
- */
- - (void)linkWithEmailPassword {
- [self showEmailPasswordDialogWithCompletion:^(FIRAuthCredential *credential) {
- [self showSpinner:^{
- [[self user] linkWithCredential:credential
- completion:^(FIRUser *user, NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"link Email/Password failed" error:error];
- } else {
- [self logSuccess:@"link Email/Password succeeded."];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kLinkWithEmailPasswordText error:error];
- }];
- }];
- }];
- }];
- }
- /** @fn showEmailPasswordDialogWithCompletion:
- @brief shows email/password input dialog.
- @param completion The completion block that will do some operation on the credential email
- /passwowrd credential obtained.
- */
- - (void)showEmailPasswordDialogWithCompletion:(ShowEmailPasswordDialogCompletion)completion {
- [self showTextInputPromptWithMessage:@"Email Address:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable email) {
- if (!userPressedOK || !email.length) {
- return;
- }
- [self showTextInputPromptWithMessage:@"Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable password) {
- if (!userPressedOK || !password.length) {
- return;
- }
- FIRAuthCredential *credential = [FIREmailAuthProvider credentialWithEmail:email
- password:password];
- completion(credential);
- }];
- }];
- }
- /** @fn unlinkFromProvider:
- @brief Unlinks the current user from the provider with the specified provider ID.
- @param provider The provider ID of the provider to unlink the current user's account from.
- @completion A completion block to be executed after the provider is unlinked.
- */
- - (void)unlinkFromProvider:(NSString *)provider
- completion:(nullable testAutomationCallback)completion {
- [[self user] unlinkFromProvider:provider
- completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"unlink auth provider failed" error:error];
- if (completion) {
- completion(error);
- }
- return;
- }
- [self logSuccess:@"unlink auth provider succeeded."];
- if (completion) {
- completion(nil);
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:kUnlinkTitle error:error];
- }];
- }
- /** @fn getProvidersForEmail
- @brief Prompts the user for an email address, calls @c FIRAuth.getProvidersForEmail:callback:
- and displays the result.
- */
- - (void)getProvidersForEmail {
- [self showTextInputPromptWithMessage:@"Email:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] fetchProvidersForEmail:userInput
- completion:^(NSArray<NSString *> *_Nullable providers,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"get providers for email failed" error:error];
- } else {
- [self logSuccess:@"get providers for email succeeded."];
- }
- [self hideSpinner:^{
- if (error) {
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self showMessagePrompt:[providers componentsJoinedByString:@", "]];
- }];
- }];
- }];
- }];
- }
- /** @fn getAllSignInMethodsForEmail
- @brief Prompts user for an email address, calls @c FIRAuth.getAllSignInMethodsForEmail:callback:
- and displays the result.
- */
- - (void)getAllSignInMethodsForEmail {
- [self showTextInputPromptWithMessage:@"Email:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] fetchSignInMethodsForEmail:userInput
- completion:^(NSArray<NSString *> *_Nullable signInMethods,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"get sign-in methods for email failed" error:error];
- } else {
- [self logSuccess:@"get sign-in methods for email succeeded."];
- }
- [self hideSpinner:^{
- if (error) {
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self showMessagePrompt:[signInMethods componentsJoinedByString:@", "]];
- }];
- }];
- }];
- }];
- }
- /** @fn actionCodeRequestTypeString
- @brief Returns a string description for the type of the next action code request.
- */
- - (NSString *)actionCodeRequestTypeString {
- switch (_actionCodeRequestType) {
- case ActionCodeRequestTypeInApp:
- return @"In-App + Continue URL";
- case ActionCodeRequestTypeContinue:
- return @"Continue URL";
- case ActionCodeRequestTypeEmail:
- return @"Email Only";
- }
- }
- /** @fn toggleActionCodeRequestType
- @brief Toggle the next action code request type.
- */
- - (void)toggleActionCodeRequestType {
- switch (_actionCodeRequestType) {
- case ActionCodeRequestTypeInApp:
- _actionCodeRequestType = ActionCodeRequestTypeContinue;
- break;
- case ActionCodeRequestTypeContinue:
- _actionCodeRequestType = ActionCodeRequestTypeEmail;
- break;
- case ActionCodeRequestTypeEmail:
- _actionCodeRequestType = ActionCodeRequestTypeInApp;
- break;
- }
- [self updateTable];
- }
- - (void)changeActionCodeContinueURL {
- [self showTextInputPromptWithMessage:kContinueURLDescription
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (userPressedOK) {
- _actionCodeContinueURL = userInput.length ? [NSURL URLWithString:userInput] : nil;
- [self updateTable];
- }
- }];
- }
- /** @fn requestVerifyEmail
- @brief Requests a "verify email" email be sent.
- */
- - (void)requestVerifyEmail {
- [self showSpinner:^{
- void (^sendEmailVerification)(void (^)(NSError *)) = ^(void (^completion)(NSError *)) {
- if (_actionCodeRequestType == ActionCodeRequestTypeEmail) {
- [[self user] sendEmailVerificationWithCompletion:completion];
- } else {
- [[self user] sendEmailVerificationWithActionCodeSettings:[self actionCodeSettings]
- completion:completion];
- }
- };
- sendEmailVerification(^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"request verify email failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"request verify email succeeded."];
- [self showMessagePrompt:@"Sent"];
- }];
- });
- }];
- }
- /** @fn requestPasswordReset
- @brief Requests a "password reset" email be sent.
- */
- - (void)requestPasswordReset {
- [self showTextInputPromptWithMessage:@"Email:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- void (^requestPasswordReset)(void (^)(NSError *)) = ^(void (^completion)(NSError *)) {
- if (_actionCodeRequestType == ActionCodeRequestTypeEmail) {
- [[AppManager auth] sendPasswordResetWithEmail:userInput completion:completion];
- } else {
- [[AppManager auth] sendPasswordResetWithEmail:userInput
- actionCodeSettings:[self actionCodeSettings]
- completion:completion];
- }
- };
- requestPasswordReset(^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"request password reset failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"request password reset succeeded."];
- [self showMessagePrompt:@"Sent"];
- }];
- });
- }];
- }];
- }
- /** @fn resetPassword
- @brief Performs a password reset operation.
- */
- - (void)resetPassword {
- [self showTextInputPromptWithMessage:@"OOB Code:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- NSString *code = userInput;
- [self showTextInputPromptWithMessage:@"New Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] confirmPasswordResetWithCode:code
- newPassword:userInput
- completion:^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Password reset failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Password reset succeeded."];
- [self showMessagePrompt:@"Password reset succeeded."];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn checkActionCode
- @brief Performs a "check action code" operation.
- */
- - (void)checkActionCode {
- [self showTextInputPromptWithMessage:@"OOB Code:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] checkActionCode:userInput completion:^(FIRActionCodeInfo *_Nullable info,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Check action code failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Check action code succeeded."];
- NSString *email = [info dataForKey:FIRActionCodeEmailKey];
- NSString *fromEmail = [info dataForKey:FIRActionCodeFromEmailKey];
- NSString *message =
- fromEmail ? [NSString stringWithFormat:@"%@ -> %@", fromEmail, email] : email;
- NSString *operation = [self nameForActionCodeOperation:info.operation];
- [self showMessagePromptWithTitle:operation
- message:message
- showCancelButton:NO
- completion:nil];
- }];
- }];
- }];
- }];
- }
- /** @fn applyActionCode
- @brief Performs a "apply action code" operation.
- */
- - (void)applyActionCode {
- [self showTextInputPromptWithMessage:@"OOB Code:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] applyActionCode:userInput completion:^(NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Apply action code failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Apply action code succeeded."];
- [self showMessagePrompt:@"Action code was properly applied."];
- }];
- }];
- }];
- }];
- }
- /** @fn verifyPasswordResetCode
- @brief Performs a "verify password reset code" operation.
- */
- - (void)verifyPasswordResetCode {
- [self showTextInputPromptWithMessage:@"OOB Code:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] verifyPasswordResetCode:userInput completion:^(NSString *_Nullable email,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"Verify password reset code failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- [self logSuccess:@"Verify password resest code succeeded."];
- NSString *alertMessage =
- [[NSString alloc] initWithFormat:@"Code verified for email: %@", email];
- [self showMessagePrompt:alertMessage];
- }];
- }];
- }];
- }];
- }
- /** @fn nameForActionCodeOperation
- @brief Returns the string value of the provided FIRActionCodeOperation value.
- @param operation the FIRActionCodeOperation value to convert to string.
- @return String conversion of FIRActionCodeOperation value.
- */
- - (NSString *)nameForActionCodeOperation:(FIRActionCodeOperation)operation {
- switch (operation) {
- case FIRActionCodeOperationVerifyEmail:
- return @"Verify Email";
- case FIRActionCodeOperationRecoverEmail:
- return @"Recover Email";
- case FIRActionCodeOperationPasswordReset:
- return @"Password Reset";
- case FIRActionCodeOperationEmailLink:
- return @"Email Sign-In Link";
- case FIRActionCodeOperationUnknown:
- return @"Unknown action";
- }
- }
- /** @fn updateEmail
- @brief Changes the email address of the current user.
- */
- - (void)updateEmail {
- [self showTextInputPromptWithMessage:@"Email Address:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK || !userInput.length) {
- return;
- }
- [self showSpinner:^{
- [[self user] updateEmail:userInput completion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"update email failed" error:error];
- } else {
- [self logSuccess:@"update email succeeded."];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kUpdateEmailText error:error];
- }];
- }];
- }];
- }];
- }
- /** @fn updatePassword
- @brief Updates the password of the current user.
- */
- - (void)updatePassword {
- [self showTextInputPromptWithMessage:@"New Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable userInput) {
- if (!userPressedOK) {
- return;
- }
- [self showSpinner:^{
- [[self user] updatePassword:userInput completion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"update password failed" error:error];
- } else {
- [self logSuccess:@"update password succeeded."];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kUpdatePasswordText error:error];
- }];
- }];
- }];
- }];
- }
- /** @fn updateToSavedUser
- @brief updates the current user to the saved user.
- */
- - (void)updateToSavedUser {
- if(![AppManager auth].currentUser) {
- NSLog(@"You must be signed in to perform this action");
- return;
- }
- if (!_userInMemory) {
- [self showMessagePrompt:[NSString stringWithFormat:@"You need an in-memory user to perform this"
- "action, use the M+ button to save a user to memory.", nil]];
- return;
- }
- [[AppManager auth] updateCurrentUser:_userInMemory completion:^(NSError *_Nullable error) {
- if (error) {
- [self showMessagePrompt:
- [NSString stringWithFormat:@"An error Occurred: %@", error.localizedDescription]];
- return;
- }
- }];
- }
- /** @fn createUser
- @brief Creates a new user.
- */
- - (void)createUser {
- [self showTextInputPromptWithMessage:@"Email:"
- keyboardType:UIKeyboardTypeEmailAddress
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable email) {
- if (!userPressedOK || !email.length) {
- return;
- }
- [self showTextInputPromptWithMessage:@"Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable password) {
- if (!userPressedOK) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] createUserWithEmail:email
- password:password
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"create user failed" error:error];
- } else {
- [self logSuccess:@"create user succeeded."];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kCreateUserTitle error:error];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn createUserAuthDataResult
- @brief Creates a new user.
- */
- - (void)createUserAuthDataResult {
- [self showTextInputPromptWithMessage:@"Email:"
- keyboardType:UIKeyboardTypeEmailAddress
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable email) {
- if (!userPressedOK || !email.length) {
- return;
- }
- [self showTextInputPromptWithMessage:@"Password:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable password) {
- if (!userPressedOK) {
- return;
- }
- [self showSpinner:^{
- [[AppManager auth] createUserAndRetrieveDataWithEmail:email
- password:password
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"create user failed" error:error];
- } else {
- [self logSuccess:@"create user succeeded."];
- [self log:result.user.uid];
- }
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kCreateUserTitle error:error];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn signInWithPhoneNumber
- @brief Allows sign in with phone number using reCAPTCHA.
- @param phoneNumber Number pass in string.
- @completion A completion block to be executed after successful phone number sign in.
- */
- - (void)signInWithPhoneNumber:(NSString *_Nullable)phoneNumber
- completion:(nullable testAutomationCallback)completion {
- [self showSpinner:^{
- [[AppManager phoneAuthProvider] verifyPhoneNumber:phoneNumber
- UIDelegate:nil
- completion:^(NSString *_Nullable verificationID,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"failed to send verification code" error:error];
- [self showMessagePrompt:error.localizedDescription];
- if (completion) {
- completion(error);
- }
- return;
- }
- [self logSuccess:@"Code sent"];
- [self commonPhoneNumberInputWithTitle:@"Code"
- Completion:^(NSString *_Nullable verificationCode) {
- [self commontPhoneVerificationWithVerificationID:verificationID
- verificationCode:verificationCode];
- if (completion) {
- completion(nil);
- }
- }];
- }];
- }];
- }];
- }
- /** @fn signInWithPhoneNumberWithPrompt
- @brief Allows sign in with phone number via popup prompt.
- */
- - (void)signInWithPhoneNumberWithPrompt {
- [self commonPhoneNumberInputWithTitle:@"Phone #"
- Completion:^(NSString *_Nullable phone) {
- [self signInWithPhoneNumber:phone completion:nil];
- }];
- }
- /** @fn commonPhoneNumberInputWithLabel:Completion
- @brief Allows user input into a text field.
- @param title of the promt.
- */
- - (void)commonPhoneNumberInputWithTitle:(NSString *)title
- Completion:(textInputCompletionBlock)completion {
- [self showTextInputPromptWithMessage:title
- keyboardType:UIKeyboardTypePhonePad
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable phoneNumber) {
- if (!userPressedOK) {
- return;
- }
- completion(phoneNumber);
- }];
- }
- /** @fn commonPhoneNumberInputWithLabel:Completion
- @brief Finishes the phone number verification flow.
- @param verificationID The verificationID from the backend.
- @param verificationCode The verificationCode from the SMS message.
- */
- - (void)commontPhoneVerificationWithVerificationID:(NSString *)verificationID
- verificationCode:(NSString *)verificationCode {
- [self showSpinner:^{
- FIRAuthCredential *credential =
- [[AppManager phoneAuthProvider] credentialWithVerificationID:verificationID
- verificationCode:verificationCode];
- [[AppManager auth] signInAndRetrieveDataWithCredential:credential
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"failed to verify phone number" error:error];
- [self showMessagePrompt:error.localizedDescription];
- return;
- }
- if (_isNewUserToggleOn) {
- NSString *newUserString = result.additionalUserInfo.isNewUser ?
- @"New user" : @"Existing user";
- [self showMessagePromptWithTitle:@"New or Existing"
- message:newUserString
- showCancelButton:NO
- completion:nil];
- }
- }];
- }];
- }];
- }
- /** @fn updatePhoneNumber
- @brief Allows adding a verified phone number to the currently signed user.
- @param phoneNumber Number pass in string.
- @completion A completion block to be executed after phone number is updated.
- */
- - (void)updatePhoneNumber:(NSString *_Nullable)phoneNumber
- completion:(nullable testAutomationCallback)completion {
- [self showSpinner:^{
- [[AppManager phoneAuthProvider] verifyPhoneNumber:phoneNumber
- UIDelegate:nil
- completion:^(NSString *_Nullable verificationID,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"failed to send verification code" error:error];
- [self showMessagePrompt:error.localizedDescription];
- if (completion) {
- completion(error);
- }
- return;
- }
- [self logSuccess:@"Code sent"];
- [self showTextInputPromptWithMessage:@"Verification code:"
- keyboardType:UIKeyboardTypeNumberPad
- completionBlock:^(BOOL userPressedOK,
- NSString *_Nullable verificationCode) {
- if (!userPressedOK || !verificationCode.length) {
- return;
- }
- [self showSpinner:^{
- FIRPhoneAuthCredential *credential =
- [[AppManager phoneAuthProvider] credentialWithVerificationID:verificationID
- verificationCode:verificationCode];
- [[self user] updatePhoneNumberCredential:credential
- completion:^(NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"update phone number failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- if (completion) {
- completion(error);
- }
- } else {
- [self logSuccess:@"update phone number succeeded."];
- if (completion) {
- completion(nil);
- }
- }
- }];
- }];
- }];
- [self hideSpinner:^{
- [self showTypicalUIForUserUpdateResultsWithTitle:kCreateUserTitle error:error];
- }];
- }];
- }];
- }
- /** @fn updatePhoneNumberWithPrompt
- @brief Allows adding a verified phone number to the currently signed user via popup prompt.
- */
- - (void)updatePhoneNumberWithPrompt {
- [self showTextInputPromptWithMessage:@"Update Phone #:"
- keyboardType:UIKeyboardTypePhonePad
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable phoneNumber) {
- if (!userPressedOK || !phoneNumber.length) {
- return;
- }
- [self updatePhoneNumber:phoneNumber completion:nil];
- }];
- }
- /** @fn linkPhoneNumber
- @brief Allows linking a verified phone number to the currently signed user.
- @param phoneNumber Number pass in string.
- @completion A completion block to be executed after linking phone number.
- */
- - (void)linkPhoneNumber:(NSString *_Nullable)phoneNumber
- completion:(nullable testAutomationCallback)completion {
- [self showSpinner:^{
- [[AppManager phoneAuthProvider] verifyPhoneNumber:phoneNumber
- UIDelegate:nil
- completion:^(NSString *_Nullable verificationID,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"failed to send verification code" error:error];
- [self showMessagePrompt:error.localizedDescription];
- if (completion) {
- completion(error);
- }
- return;
- }
- [self logSuccess:@"Code sent"];
- [self showTextInputPromptWithMessage:@"Verification code:"
- keyboardType:UIKeyboardTypeNumberPad
- completionBlock:^(BOOL userPressedOK,
- NSString *_Nullable verificationCode) {
- if (!userPressedOK || !verificationCode.length) {
- return;
- }
- [self showSpinner:^{
- FIRPhoneAuthCredential *credential =
- [[AppManager phoneAuthProvider] credentialWithVerificationID:verificationID
- verificationCode:verificationCode];
- [[self user] linkWithCredential:credential
- completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- if (error.code == FIRAuthErrorCodeCredentialAlreadyInUse) {
- [self showMessagePromptWithTitle:@"Phone number is already linked to "
- @"another user"
- message:@"Tap Ok to sign in with that user now."
- showCancelButton:YES
- completion:^(BOOL userPressedOK,
- NSString *_Nullable userInput) {
- if (userPressedOK) {
- // If FIRAuthErrorCodeCredentialAlreadyInUse error, sign in with the
- // provided credential.
- [self showSpinner:^{
- FIRPhoneAuthCredential *credential =
- error.userInfo[FIRAuthUpdatedCredentialKey];
- [[AppManager auth] signInWithCredential:credential
- completion:^(FIRUser *_Nullable user,
- NSError *_Nullable error) {
- [self hideSpinner:^{
- if (error) {
- [self logFailure:@"failed to verify phone number" error:error];
- [self showMessagePrompt:error.localizedDescription];
- if (completion) {
- completion(error);
- }
- return;
- }
- }];
- }];
- }];
- }
- }];
- } else {
- [self logFailure:@"link phone number failed" error:error];
- [self showMessagePrompt:error.localizedDescription];
- }
- return;
- }
- [self logSuccess:@"link phone number succeeded."];
- if (completion) {
- completion(nil);
- }
- }];
- }];
- }];
- }];
- }];
- }];
- }];
- }
- /** @fn linkPhoneNumberWithPrompt
- @brief Allows linking a verified phone number to the currently signed user via popup prompt.
- */
- - (void)linkPhoneNumberWithPrompt {
- [self showTextInputPromptWithMessage:@"Phone #:"
- keyboardType:UIKeyboardTypePhonePad
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable phoneNumber) {
- if (!userPressedOK || !phoneNumber.length) {
- return;
- }
- [self linkPhoneNumber:phoneNumber completion:nil];
- }];
- }
- /** @fn signInAnonymously
- @brief Signs in as an anonymous user.
- */
- - (void)signInAnonymously {
- [[AppManager auth] signInAnonymouslyWithCompletion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in anonymously failed" error:error];
- } else {
- [self logSuccess:@"sign-in anonymously succeeded."];
- [self log:[NSString stringWithFormat:@"User ID : %@", result.user.uid]];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:kSignInAnonymouslyButtonText error:error];
- }];
- }
- /** @fn signInAnonymouslyAuthDataResult
- @brief Signs in as an anonymous user, receiving an auth result containing a signed in user upon
- success.
- */
- - (void)signInAnonymouslyAuthDataResult {
- [[AppManager auth] signInAnonymouslyAndRetrieveDataWithCompletion:
- ^(FIRAuthDataResult *_Nullable authResult, NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in anonymously failed" error:error];
- } else {
- [self logSuccess:@"sign-in anonymously succeeded."];
- [self log:[NSString stringWithFormat:@"User ID : %@", authResult.user.uid]];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:kSignInAnonymouslyButtonText error:error];
- }];
- }
- /** @fn signInWithGitHub
- @brief Signs in as a GitHub user. Prompts the user for an access token and uses this access
- token to create a GitHub (generic) credential for signing in.
- */
- - (void)signInWithGitHub {
- [self showTextInputPromptWithMessage:@"GitHub Access Token:"
- completionBlock:^(BOOL userPressedOK, NSString *_Nullable accessToken) {
- if (!userPressedOK || !accessToken.length) {
- return;
- }
- FIRAuthCredential *credential =
- [FIROAuthProvider credentialWithProviderID:FIRGitHubAuthProviderID accessToken:accessToken];
- if (credential) {
- [[AppManager auth] signInWithCredential:credential
- completion:^(FIRUser *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with provider failed" error:error];
- } else {
- [self logSuccess:@"sign-in with provider succeeded."];
- }
- [self showTypicalUIForUserUpdateResultsWithTitle:@"Sign-In" error:error];
- }];
- }
- }];
- }
- /** @fn deleteApp
- @brief Deletes the @c FIRApp associated with our @c FIRAuth instance.
- */
- - (void)deleteApp {
- [[FIRApp defaultApp] deleteApp:^(BOOL success) {
- [self log:success ? @"App deleted successfully." : @"Failed to delete app."];
- }];
- }
- /** @fn timeAuthInitialization
- @brief Times FIRAuth instance initialization time.
- */
- - (void)timeAuthInitialization {
- // Temporarily disable auth state listener to avoid interfering with the result.
- [[NSNotificationCenter defaultCenter] removeObserver:self
- name:FIRAuthStateDidChangeNotification
- object:nil];
- [self showSpinner:^() {
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0), ^() {
- const int numberOfRuns = 4096;
- FIRApp *app = [FIRApp defaultApp];
- NSString *key = NSStringFromClass([FIRAuth class]);
- NSDate *startTime = [NSDate date];
- for (int i = 0; i < numberOfRuns; i++) {
- @autoreleasepool {
- [FIRAppAssociationRegistration deregisterObjectWithHost:app key:key];
- [FIRAuth auth];
- }
- }
- NSDate *endTime = [NSDate date];
- dispatch_async(dispatch_get_main_queue(), ^() {
- // Re-enable auth state listener.
- [[NSNotificationCenter defaultCenter] addObserver:self
- selector:@selector(authStateChangedForAuth:)
- name:FIRAuthStateDidChangeNotification
- object:nil];
- [self hideSpinner:^() {
- NSTimeInterval averageTime = [endTime timeIntervalSinceDate:startTime] / numberOfRuns;
- NSString *message = [NSString stringWithFormat:
- @"Each [FIRAuth auth] takes average of %.3f ms for %d runs",
- averageTime * 1000, numberOfRuns];
- [self showMessagePromptWithTitle:@"Timing Result"
- message:message
- showCancelButton:NO
- completion:nil];
- }];
- });
- });
- }];
- }
- #pragma mark - Helpers
- /** @fn user
- @brief The user to use for user operations. Takes into account the "use signed-in user vs. use
- user in memory" setting.
- */
- - (FIRUser *)user {
- return _useUserInMemory ? _userInMemory : [AppManager auth].currentUser;
- }
- /** @fn actionCodeSettings
- @brief Returns the action code settings for this app.
- */
- - (FIRActionCodeSettings *)actionCodeSettings {
- FIRActionCodeSettings *actionCodeSettings = [[FIRActionCodeSettings alloc] init];
- actionCodeSettings.URL = _actionCodeContinueURL;
- actionCodeSettings.handleCodeInApp = _actionCodeRequestType == ActionCodeRequestTypeInApp;
- return actionCodeSettings;
- }
- /** @fn stringWithAdditionalUserInfo:
- @brief Gets the string description of the additional user info.
- @param additionalUserInfo The additional user info in question.
- @return A string to description the additional user info.
- */
- - (NSString *)stringWithAdditionalUserInfo:(nullable FIRAdditionalUserInfo *)additionalUserInfo {
- if (!additionalUserInfo) {
- return @"(no additional user info)";
- }
- NSString *newUserString = additionalUserInfo.isNewUser ? @"new user" : @"existing user";
- return [NSString stringWithFormat:@"%@: %@", newUserString, additionalUserInfo.profile];
- }
- /** @fn showTypicalUIForUserUpdateResultsWithTitle:error:
- @brief Shows a prompt if error is non-nil with the localized description of the error.
- @param resultsTitle The title of the prompt
- @param error The error details to display if non-nil.
- */
- - (void)showTypicalUIForUserUpdateResultsWithTitle:(NSString *)resultsTitle
- error:(NSError *)error {
- if (error) {
- NSString *message = [NSString stringWithFormat:@"%@ (%ld)\n%@",
- error.domain,
- (long)error.code,
- error.localizedDescription];
- if (error.code == FIRAuthErrorCodeAccountExistsWithDifferentCredential) {
- NSString *errorEmail = error.userInfo[FIRAuthErrorUserInfoEmailKey];
- resultsTitle = [NSString stringWithFormat:@"Existing email : %@", errorEmail];
- }
- [self showMessagePromptWithTitle:resultsTitle
- message:message
- showCancelButton:NO
- completion:nil];
- return;
- }
- [self updateUserInfo];
- }
- /** @fn showUIForAuthDataResultWithResult:error:
- @brief Shows a prompt if error is non-nil with the localized description of the error.
- @param result The auth data result if non-nil.
- @param error The error details to display if non-nil.
- */
- - (void)showUIForAuthDataResultWithResult:(FIRAuthDataResult *)result
- error:(NSError *)error {
- NSString *errorMessage = [NSString stringWithFormat:@"%@ (%ld)\n%@",
- error.domain ?: @"",
- (long)error.code,
- error.localizedDescription ?: @""];
- [self showMessagePromptWithTitle:@"Error"
- message:errorMessage
- showCancelButton:NO
- completion:^(BOOL userPressedOK,
- NSString *_Nullable userInput) {
- [self showMessagePromptWithTitle:@"Profile Info"
- message:[self stringWithAdditionalUserInfo:result.additionalUserInfo]
- showCancelButton:NO
- completion:nil];
- [self updateUserInfo];
- }];
- }
- - (void)doSignInWithCustomToken:(NSString *_Nullable)userEnteredTokenText {
- [[AppManager auth] signInWithCustomToken:userEnteredTokenText
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with custom token failed" error:error];
- [self showMessagePromptWithTitle:kSignInErrorAlertTitle
- message:error.localizedDescription
- showCancelButton:NO
- completion:nil];
- return;
- }
- [self logSuccess:@"sign-in with custom token succeeded."];
- [self showMessagePromptWithTitle:kSignedInAlertTitle
- message:result.user.displayName
- showCancelButton:NO
- completion:nil];
- }];
- }
- - (void)doSignInAndRetrieveDataWithCustomToken:(NSString *_Nullable)userEnteredTokenText {
- [[AppManager auth] signInAndRetrieveDataWithCustomToken:userEnteredTokenText
- completion:^(FIRAuthDataResult *_Nullable result,
- NSError *_Nullable error) {
- if (error) {
- [self logFailure:@"sign-in with custom token failed" error:error];
- [self showMessagePromptWithTitle:kSignInErrorAlertTitle
- message:error.localizedDescription
- showCancelButton:NO
- completion:nil];
- return;
- }
- [self logSuccess:@"sign-in with custom token succeeded."];
- [self showMessagePromptWithTitle:kSignedInAlertTitle
- message:result.user.displayName
- showCancelButton:NO
- completion:nil];
- }];
- }
- - (void)updateUserInfo {
- [_userInfoTableViewCell updateContentsWithUser:[AppManager auth].currentUser];
- [_userInMemoryInfoTableViewCell updateContentsWithUser:_userInMemory];
- }
- - (void)authStateChangedForAuth:(NSNotification *)notification {
- [self updateUserInfo];
- if (notification) {
- [self log:[NSString stringWithFormat:
- @"received FIRAuthStateDidChange notification on user '%@'.",
- ((FIRAuth *)notification.object).currentUser.uid]];
- }
- }
- /** @fn clearConsole
- @brief Clears the console text.
- */
- - (IBAction)clearConsole:(id)sender {
- [_consoleString appendString:@"\n\n"];
- _consoleTextView.text = @"";
- }
- /** @fn copyConsole
- @brief Copies the current console string to the clipboard.
- */
- - (IBAction)copyConsole:(id)sender {
- UIPasteboard *pasteboard = [UIPasteboard generalPasteboard];
- pasteboard.string = _consoleString ?: @"";
- }
- @end
- NS_ASSUME_NONNULL_END
|