private static async Task Main() { string[] args = Environment.GetCommandLineArgs(); Console.WriteLine("SafeNetwork Console Application"); if (IsApplicationFirstInstance()) { // args[0] is always the path to the application // update system registery Helpers.RegisterAppProtocol(args[0]); // Request authentication from mock browser await Authentication.NonMockAuthenticationWithBrowserAsync(); // Start named pipe server and listen for message var authResponse = PipeComm.ReceiveNamedPipeServerMessage(); if (!string.IsNullOrEmpty(authResponse)) { // Create session from response await Authentication.ProcessAuthenticationResponse(authResponse); // Show user menu UserInput userInput = new UserInput(); await userInput.ShowUserOptions(); } } else { // We are not the first instance, send the named pipe message with our payload and stop loading if (args.Length >= 2) { // We are not the first instance, send the named pipe message with our payload and stop loading var namedPipePayload = new NamedPipePayload { SignalQuit = false, Arguments = args[1] }; // Send the message PipeComm.SendNamedPipeClient(namedPipePayload); } // Close app return; } Console.ReadLine(); }
static async Task Main() { string[] args = Environment.GetCommandLineArgs(); Console.WriteLine("SafeNetwork Console Application"); if (IsApplicationFirstInstance()) { //DataOperations.InitializeLogging(); //args[0] is always the path to the application Helpers.RegisterAppProtocol(args[0], appId); //^the method posted before, that edits registry // Create a new pipe - it will return immediately and async wait for connections PipeComm.NamedPipeServerCreateServer(); await Authentication.RequestAuthentication(appId); //DataOperations.GetAccountInformationAsyn(); } else { // We are not the first instance, send the named pipe message with our payload and stop loading if (args.Length >= 2) { // We are not the first instance, send the named pipe message with our payload and stop loading var namedPipePayload = new NamedPipePayload { SignalQuit = false, Arguments = args[1] }; // Send the message PipeComm.NamedPipeClientSendOptions(namedPipePayload); } // Close app return; } Console.ReadLine(); }
private static async Task Main() { string[] args = Environment.GetCommandLineArgs(); Console.WriteLine("SafeNetwork Console Application"); try { if (IsApplicationFirstInstance()) { Console.Write("Press Y/y to use mock safe-browser for authentication otherwise a random mock account will be used : "); var input = Console.ReadLine(); if (input.Equals("Y") || input.Equals("y")) { // args[0] is always the path to the application // update system registry Helpers.RegisterAppProtocol(args[0]); // Authentication with the SAFE browser await Authentication.AuthenticationWithBrowserAsync(); // Start named pipe server and listen for message var authResponse = PipeComm.ReceiveNamedPipeServerMessage(); if (!string.IsNullOrEmpty(authResponse)) { // Create session from response await Authentication.ProcessAuthenticationResponse(authResponse); // Show user menu UserInput userInput = new UserInput(); await userInput.ShowUserOptions(); } } else { // Create session from mock authentication var session = await Authentication.MockAuthenticationAsync(); // Initialise session for Mutable Data operations DataOperations.InitialiseSession(session); // Show user menu UserInput userInput = new UserInput(); await userInput.ShowUserOptions(); } } else { // We are not the first instance, send the named pipe message with our payload and stop loading if (args.Length >= 2) { var namedPipePayload = new NamedPipePayload { SignalQuit = false, Arguments = args[1] }; // Send the message PipeComm.SendNamedPipeClient(namedPipePayload); } // Close app return; } } catch (Exception ex) { Console.WriteLine("Exception: " + ex.Message); } Console.ReadLine(); }