Ejemplo n.º 1
0
 private static void CreateDocument(ServiceHelper serviceHelper, DocumentInfo documentInfo, CaseInfo caseInfo, ProjectInfo projectInfo)
 {
     if (documentInfo.StreamFile)
     {
         var response = SampleMethodes.CreateDocumentWithFileUpload(serviceHelper, documentInfo, caseInfo, projectInfo);
         LogToConsole(response);
     }
     else
     {
         var response = SampleMethodes.CreateDocument(serviceHelper, documentInfo, caseInfo, projectInfo);
         LogToConsole(response.Successful ?? false, response.ErrorMessage, response.ErrorDetails);
     }
 }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            if (args.Length == 1)
            {
                string arg = args[0];

                try
                {
                    IConfiguration config = new ConfigurationBuilder()
                                            .SetBasePath(Directory.GetCurrentDirectory())
                                            .AddJsonFile("appsettings.json", false, true)
                                            .Build();

                    Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture;

                    string getEnterpriseExternalId            = config["GetEnterpriseExternalId"];
                    string createOrUpdateEnterpriseExternalID = config["CreateOrUpdateEnterpriseExternalID"];
                    string createOrUpdateEnterpriseName       = config["CreateOrUpdateEnterpriseName"];

                    DocumentInfo           documentInfo  = config.GetSection("DocumentInfo").Get <DocumentInfo>();
                    UserInfo               userInfo      = config.GetSection("UserInfo").Get <UserInfo>();
                    ProjectInfo            projectInfo   = config.GetSection("ProjectInfo").Get <ProjectInfo>();
                    CaseInfo               caseInfo      = config.GetSection("CaseInfo").Get <CaseInfo>();
                    ServiceInformationList serviceConfig = config.GetSection("ServiceInformation").Get <ServiceInformationList>();
                    var getEnterpriseConfig            = config.GetSection("GetEnterprise");
                    var createOrUpdateEnterpriseConfig = config.GetSection("CreateOrUpdateEnterprise");

                    foreach (var credentials in serviceConfig.Credentials)
                    {
                        if (credentials.run)
                        {
                            System.Console.WriteLine($"Starting on instance = { credentials.baseUri }");

                            ServiceInformation serviceInformation = new ServiceInformation(
                                credentials.authkey,
                                credentials.baseUri);

                            using (ServiceHelper serviceHelper = new ServiceHelper(serviceInformation))
                            {
                                switch (arg)
                                {
                                case "CreateCase":
                                    var response6 = SampleMethodes.CreateCase(serviceHelper, caseInfo, projectInfo);
                                    LogToConsole(response6);
                                    break;

                                case "CreateProject":
                                    var response7 = SampleMethodes.CreateProject(serviceHelper, projectInfo);
                                    LogToConsole(response7.Successful ?? false, response7.ErrorMessage, response7.ErrorDetails);
                                    break;

                                case "CreateDocument":
                                    CreateDocument(serviceHelper, documentInfo, caseInfo, projectInfo);
                                    break;

                                case "GetSIFVersion":
                                    var response1 = SampleMethodes.GetSIFVersion(serviceHelper);
                                    System.Console.WriteLine($"SIF version = { response1 }");
                                    break;

                                case "GetEnterprises":
                                    var response2 = SampleMethodes.GetEnterprises(serviceHelper);
                                    LogToConsole(response2.Successful ?? false, response2.ErrorMessage, response2.ErrorDetails);
                                    System.Console.WriteLine($"Returned { response2.TotalCount } enterprises");
                                    break;

                                case "GetEnterprise":
                                    var response3 = SampleMethodes.GetEnterprise(serviceHelper, getEnterpriseConfig["ExternalId"]);
                                    System.Console.WriteLine($"Returned enterprise with name = { response3.Name }");
                                    break;

                                case "CreateOrUpdateEnterprise":
                                    var response4 = SampleMethodes.CreateOrUpdateEnterprise(serviceHelper,
                                                                                            createOrUpdateEnterpriseConfig["ExternalId"],
                                                                                            createOrUpdateEnterpriseConfig["Name"]);
                                    LogToConsole(response4.Successful ?? false, response4.ErrorMessage, response4.ErrorDetails);
                                    break;

                                case "CreateOrUpdateUserAndContact":
                                    var response5 = SampleMethodes.CreateOrUpdateUserAndContact(serviceHelper, userInfo);
                                    LogToConsole(response5);
                                    break;
                                }
                            }

                            System.Console.WriteLine($"End on instance = { credentials.baseUri }");
                            System.Console.WriteLine($"");
                        }
                    }
                }
                catch (HttpOperationException he)
                {
                    System.Console.ForegroundColor = ConsoleColor.Red;
                    System.Console.WriteLine($"Operation = {arg}, encountered an exeption");
                    System.Console.WriteLine($"ErrorMessage = {he.Message}");
                    System.Console.WriteLine($"ResponseHeaders = {he.Response.Headers}");
                    System.Console.WriteLine($"ResponseReason = {he.Response.ReasonPhrase}");
                    System.Console.WriteLine($"ResponseContent = {he.Response.Content}");
                    System.Console.ForegroundColor = ConsoleColor.White;
                }
                catch (Exception e)
                {
                    //This would be the place to write errors to a log if needed
                    System.Console.ForegroundColor = ConsoleColor.Red;
                    System.Console.WriteLine($"Operation = {arg}, encountered an exeption");
                    System.Console.WriteLine($"ErrorMessage = {e.Message}");
                    System.Console.ForegroundColor = ConsoleColor.White;
                }
            }
        }