コード例 #1
0
        /// <summary>
        /// Generate Viewpoint
        /// </summary>
        /// <param name="elemCheck"></param>
        /// <returns></returns>
        public VisualizationInfo generateViewpoint(int elemCheck)
        {
            try
            {
                UIDocument uidoc = uiapp.ActiveUIDocument;
                Document   doc   = uidoc.Document;

                VisualizationInfo v = new VisualizationInfo();

                XYZ    centerIMP = new XYZ();
                string type      = "";
                double zoomValue = 1;

                if (uidoc.ActiveView.ViewType != ViewType.ThreeD) //is a 2D view
                {
                    XYZ TL = uidoc.GetOpenUIViews()[0].GetZoomCorners()[0];
                    XYZ BR = uidoc.GetOpenUIViews()[0].GetZoomCorners()[1];
                    v.SheetCamera             = new SheetCamera();
                    v.SheetCamera.SheetID     = uidoc.ActiveView.Id.IntegerValue;
                    v.SheetCamera.TopLeft     = new IssueTracker.Classes.BCF2.Point(TL.X, TL.Y, TL.Z);
                    v.SheetCamera.BottomRight = new IssueTracker.Classes.BCF2.Point(BR.X, BR.Y, BR.Z);
                }
                else
                {
                    View3D view3D = (View3D)uidoc.ActiveView;
                    if (!view3D.IsPerspective) //IS ORTHO
                    {
                        XYZ TL = uidoc.GetOpenUIViews()[0].GetZoomCorners()[0];
                        XYZ BR = uidoc.GetOpenUIViews()[0].GetZoomCorners()[1];

                        double xO = (TL.X + BR.X) / 2;
                        double yO = (TL.Y + BR.Y) / 2;
                        double zO = (TL.Z + BR.Z) / 2;
                        //converto to METERS
                        centerIMP = new XYZ(xO, yO, zO);
                        double dist       = TL.DistanceTo(BR) / 2; //custom sectet value to get solibri zoom value from Corners of Revit UiView
                        XYZ    diagVector = TL.Subtract(BR);
                        // **** CUSTOM VALUE FOR TEKLA **** //
                        //zoomValue = UnitUtils.ConvertFromInternalUnits(dist * Math.Sin(diagVector.AngleTo(view3D.RightDirection)), DisplayUnitType.DUT_METERS);
                        // **** CUSTOM VALUE FOR TEKLA **** //
                        double customZoomValue = (MyProjectSettings.Get("useDefaultZoom", doc.PathName) == "1") ? 1 : 2.5;

                        zoomValue = UnitUtils.ConvertFromInternalUnits(dist * Math.Sin(diagVector.AngleTo(view3D.RightDirection)), DisplayUnitType.DUT_METERS) * customZoomValue;
                        type      = "OrthogonalCamera";
                    }
                    else // it is a perspective view
                    {
                        centerIMP = uidoc.ActiveView.Origin;
                        type      = "PerspectiveCamera";
                        zoomValue = 45;
                    }
                    ViewOrientation3D t = ConvertBasePoint(centerIMP, uidoc.ActiveView.ViewDirection, uidoc.ActiveView.UpDirection, false);
                    //ViewOrientation3D t = new ViewOrientation3D(centerIMP, uidoc.ActiveView.UpDirection, uidoc.ActiveView.ViewDirection);
                    XYZ c  = t.EyePosition;
                    XYZ vi = t.ForwardDirection;
                    XYZ up = t.UpDirection;

                    if (type == "OrthogonalCamera")
                    {
                        v.OrthogonalCamera = new OrthogonalCamera();
                        v.OrthogonalCamera.CameraViewPoint.X = UnitUtils.ConvertFromInternalUnits(c.X, DisplayUnitType.DUT_METERS);
                        v.OrthogonalCamera.CameraViewPoint.Y = UnitUtils.ConvertFromInternalUnits(c.Y, DisplayUnitType.DUT_METERS);
                        v.OrthogonalCamera.CameraViewPoint.Z = UnitUtils.ConvertFromInternalUnits(c.Z, DisplayUnitType.DUT_METERS);
                        v.OrthogonalCamera.CameraUpVector.X  = UnitUtils.ConvertFromInternalUnits(up.X, DisplayUnitType.DUT_METERS);
                        v.OrthogonalCamera.CameraUpVector.Y  = UnitUtils.ConvertFromInternalUnits(up.Y, DisplayUnitType.DUT_METERS);
                        v.OrthogonalCamera.CameraUpVector.Z  = UnitUtils.ConvertFromInternalUnits(up.Z, DisplayUnitType.DUT_METERS);
                        v.OrthogonalCamera.CameraDirection.X = UnitUtils.ConvertFromInternalUnits(vi.X, DisplayUnitType.DUT_METERS) * -1;
                        v.OrthogonalCamera.CameraDirection.Y = UnitUtils.ConvertFromInternalUnits(vi.Y, DisplayUnitType.DUT_METERS) * -1;
                        v.OrthogonalCamera.CameraDirection.Z = UnitUtils.ConvertFromInternalUnits(vi.Z, DisplayUnitType.DUT_METERS) * -1;
                        v.OrthogonalCamera.ViewToWorldScale  = zoomValue;
                    }
                    else
                    {
                        v.PerspectiveCamera = new PerspectiveCamera();
                        v.PerspectiveCamera.CameraViewPoint.X = UnitUtils.ConvertFromInternalUnits(c.X, DisplayUnitType.DUT_METERS);
                        v.PerspectiveCamera.CameraViewPoint.Y = UnitUtils.ConvertFromInternalUnits(c.Y, DisplayUnitType.DUT_METERS);
                        v.PerspectiveCamera.CameraViewPoint.Z = UnitUtils.ConvertFromInternalUnits(c.Z, DisplayUnitType.DUT_METERS);
                        v.PerspectiveCamera.CameraUpVector.X  = UnitUtils.ConvertFromInternalUnits(up.X, DisplayUnitType.DUT_METERS);
                        v.PerspectiveCamera.CameraUpVector.Y  = UnitUtils.ConvertFromInternalUnits(up.Y, DisplayUnitType.DUT_METERS);
                        v.PerspectiveCamera.CameraUpVector.Z  = UnitUtils.ConvertFromInternalUnits(up.Z, DisplayUnitType.DUT_METERS);
                        v.PerspectiveCamera.CameraDirection.X = UnitUtils.ConvertFromInternalUnits(vi.X, DisplayUnitType.DUT_METERS) * -1;
                        v.PerspectiveCamera.CameraDirection.Y = UnitUtils.ConvertFromInternalUnits(vi.Y, DisplayUnitType.DUT_METERS) * -1;
                        v.PerspectiveCamera.CameraDirection.Z = UnitUtils.ConvertFromInternalUnits(vi.Z, DisplayUnitType.DUT_METERS) * -1;
                        v.PerspectiveCamera.FieldOfView       = zoomValue;
                    }


                    // handle section box if enabled
                    if (view3D.IsSectionBoxActive)
                    {
                        BoundingBoxXYZ sectionBox = view3D.GetSectionBox();

                        // Note that the section box can be rotated and transformed.
                        // So the min/max corners coordinates relative to the model must be computed via the transform.
                        Transform trf = sectionBox.Transform;

                        XYZ max = sectionBox.Max; //Maximum coordinates (upper-right-front corner of the box before transform is applied).
                        XYZ min = sectionBox.Min; //Minimum coordinates (lower-left-rear corner of the box before transform is applied).

                        // Transform the min and max to model coordinates
                        XYZ maxInModelCoords = trf.OfPoint(max);
                        XYZ minInModelCoords = trf.OfPoint(min);

                        // Convert to project unit
                        DisplayUnitType lengthUnitType = doc.GetUnits().GetFormatOptions(UnitType.UT_Length).DisplayUnits;
                        maxInModelCoords = new XYZ(UnitUtils.ConvertFromInternalUnits(maxInModelCoords.X, lengthUnitType),
                                                   UnitUtils.ConvertFromInternalUnits(maxInModelCoords.Y, lengthUnitType),
                                                   UnitUtils.ConvertFromInternalUnits(maxInModelCoords.Z, lengthUnitType));
                        minInModelCoords = new XYZ(UnitUtils.ConvertFromInternalUnits(minInModelCoords.X, lengthUnitType),
                                                   UnitUtils.ConvertFromInternalUnits(minInModelCoords.Y, lengthUnitType),
                                                   UnitUtils.ConvertFromInternalUnits(minInModelCoords.Z, lengthUnitType));

                        // Convert to shared coordinates
                        maxInModelCoords = ARUP.IssueTracker.Revit.Classes.Utils.ConvertToFromSharedCoordinate(doc, maxInModelCoords, false);
                        minInModelCoords = ARUP.IssueTracker.Revit.Classes.Utils.ConvertToFromSharedCoordinate(doc, minInModelCoords, false);

                        // Add to BCF clipping planes
                        v.ClippingPlanes = BcfAdapter.GetClippingPlanesFromBoundingBox
                                           (
                            maxInModelCoords.X, maxInModelCoords.Y, maxInModelCoords.Z,
                            minInModelCoords.X, minInModelCoords.Y, minInModelCoords.Z
                                           );
                    }
                }


                //COMPONENTS PART
                FilteredElementCollector collector = new FilteredElementCollector(doc, doc.ActiveView.Id).WhereElementIsNotElementType();
                System.Collections.Generic.ICollection <ElementId> collection = null;

                if (elemCheck == 0)
                {
                    collection = collector.ToElementIds();
                }
                else if (elemCheck == 1)
                {
                    collection = uidoc.Selection.GetElementIds();
                }

                if (null != collection && collection.Any())
                {
                    v.Components = new List <IssueTracker.Classes.BCF2.Component>();
                    foreach (var eId in collection)
                    {
                        Guid   guid    = ExportUtils.GetExportId(doc, eId);
                        string ifcguid = IfcGuid.ToIfcGuid(guid).ToString();
                        v.Components.Add(new ARUP.IssueTracker.Classes.BCF2.Component(doc.Application.VersionName, eId.ToString(), ifcguid));
                    }
                }

                return(v);
            }
            catch (System.Exception ex1)
            {
                TaskDialog.Show("Error!", "exception: " + ex1);
            }
            return(null);
        }
コード例 #2
0
ファイル: Function1.cs プロジェクト: woweh/issue-tracker
        public static OutgoingQueueMessage Run(
            [QueueTrigger("bcf")] IncomingQueueMessage myQueueItem,
            [Blob("bcf/{blobName}", FileAccess.Read)] Stream myBlob,
            TraceWriter log)
        {
            log.Info($"Jira Address: {myQueueItem.jiraAddress}");

            log.Info($"Jira Project Key: {myQueueItem.jiraProjectKey}");
            log.Info($"Created By: {myQueueItem.createdByEmail}");
            log.Info($"BCF File Name: {myQueueItem.bcfFileName}");
            log.Info($"Blob Name: {myQueueItem.blobName}");
            log.Info($"Blob Size: {myBlob.Length}");

            OutgoingQueueMessage outputMessage = new OutgoingQueueMessage()
            {
                jiraAddress    = myQueueItem.jiraAddress,
                jiraProjectKey = myQueueItem.jiraProjectKey,
                createdByEmail = myQueueItem.createdByEmail,
                bcfFileName    = myQueueItem.bcfFileName,
                blobName       = myQueueItem.blobName,
                fileSize       = myBlob.Length
            };

            try
            {
                string tempFolder = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
                using (ZipFile zip = ZipFile.Read(myBlob))
                {
                    zip.ExtractAll(tempFolder);
                }

                var result     = BcfAdapter.GetBcfIssuesFromPath(tempFolder);
                var issues     = result.Item1;
                int errorCount = result.Item2;

                // TODO: clean up viewpoints

                log.Info($"Number of Issues Found: {issues.Count}");
                outputMessage.numberOfIssuesFound = issues.Count;
                log.Info($"Number of Issues Skipped: {errorCount}");
                outputMessage.numberOfIssuesSkipped = errorCount;

                RestClient restClient = new RestClient(myQueueItem.jiraAddress + "/rest/api/2");
                restClient.CookieContainer = new CookieContainer();
                restClient.Authenticator   = new HttpBasicAuthenticator(Environment.GetEnvironmentVariable("JIRA_SERVICE_ACCOUNT_USERNAME"), Environment.GetEnvironmentVariable("JIRA_SERVICE_ACCOUNT_API_KEY"));

                List <string> newIssueKeys       = new List <string>();
                List <string> updatedIssueKeys   = new List <string>();
                List <string> unchangedIssueKeys = new List <string>();

                // look for custom GUID field id and issue type id
                var request6 = new RestRequest("issue/createmeta?expand=projects.issuetypes.fields&projectKeys=" + myQueueItem.jiraProjectKey, Method.GET);
                request6.AddHeader("Content-Type", "application/json");
                request6.RequestFormat = RestSharp.DataFormat.Json;
                var response6 = restClient.Execute(request6);
                if (!CheckResponse(response6, log))
                {
                    outputMessage.errorMessage = $"Failed to get create issue metadata: {response6.StatusCode.ToString()}";
                    log.Info(outputMessage.errorMessage);
                    return(outputMessage);
                }
                string customGuidFieldName = string.Empty;
                string issueTypeId         = string.Empty;
                string issueTypeName       = string.Empty;
                bool   projectFound        = false;
                bool   guidFound           = false;
                var    allProjects         = JObject.Parse(response6.Content);
                JArray projects            = (JArray)allProjects["projects"];
                foreach (var project in projects)
                {
                    if ((string)project["key"] == myQueueItem.jiraProjectKey)
                    {
                        projectFound = true;
                        var allIssueTypes = ((JArray)project["issuetypes"]);
                        foreach (var issueType in allIssueTypes)
                        {
                            foreach (var field in ((JObject)issueType["fields"]).Properties())
                            {
                                if ((string)field.Value["name"] == "GUID")
                                {
                                    customGuidFieldName = field.Name;
                                    issueTypeId         = issueType["id"].Value <string>();
                                    issueTypeName       = issueType["name"].Value <string>();
                                    guidFound           = true;
                                    break;
                                }
                            }
                            if (guidFound)
                            {
                                break;
                            }
                        }
                    }
                }
                if (!projectFound)
                {
                    outputMessage.errorMessage = $"Project not found.";
                    log.Info(outputMessage.errorMessage);
                    return(outputMessage);
                }
                if (!guidFound || string.IsNullOrWhiteSpace(customGuidFieldName))
                {
                    outputMessage.errorMessage = $"Failed to find custom GUID field.";
                    log.Info(outputMessage.errorMessage);
                    return(outputMessage);
                }
                outputMessage.customGuidFieldName = customGuidFieldName;
                log.Info($"Custom GUID Field Name: {customGuidFieldName}");
                if (string.IsNullOrWhiteSpace(issueTypeId))
                {
                    outputMessage.errorMessage = $"Failed to find issue type id.";
                    log.Info(outputMessage.errorMessage);
                    return(outputMessage);
                }
                outputMessage.issueTypeId = issueTypeId;
                log.Info($"Issue Type ID: {issueTypeId}");
                outputMessage.issueTypeName = issueTypeName;
                log.Info($"Issue Type Name: {issueTypeName}");

                foreach (var issueBcf in issues)
                {
                    var issueJira = new Issue();
                    issueJira.fields = new Fields();
                    //issueJira.fields.creator = new User() { name = jira.Self.name }; // FIXME

                    // add labels if present
                    if (issueBcf.Topic.Labels != null)
                    {
                        issueJira.fields.labels = issueBcf.Topic.Labels.ToList();
                    }

                    // handle and add description
                    //Add annotations for snapshot/viewpoint
                    StringBuilder descriptionBody = new StringBuilder();
                    if (!string.IsNullOrWhiteSpace(issueBcf.Topic.Description))
                    {
                        descriptionBody.AppendLine(issueBcf.Topic.Description);
                    }
                    descriptionBody.AppendLine(string.Format("{{anchor:<Viewpoint>[^{0}]</Viewpoint>}}", "viewpoint.bcfv"));
                    descriptionBody.AppendLine(string.Format("!{0}|thumbnail!", "snapshot.png"));
                    descriptionBody.AppendLine(string.Format("{{anchor:<Snapshot>[^{0}]</Snapshot>}}", "snapshot.png"));
                    issueJira.fields.description = descriptionBody.ToString();

                    // handle comments
                    foreach (var bcfComment in issueBcf.Comment)
                    {
                        if (bcfComment.Viewpoint != null)
                        {
                            ViewPoint bcfViewpoint = issueBcf.Viewpoints.ToList().Find(vp => vp.Guid == bcfComment.Viewpoint.Guid);
                            //Add annotations for snapshot/viewpoint
                            StringBuilder commentBody = new StringBuilder();
                            commentBody.AppendLine(bcfComment.Comment1);
                            if (bcfViewpoint != null)
                            {
                                if (!string.IsNullOrWhiteSpace(bcfViewpoint.Viewpoint))
                                {
                                    commentBody.AppendLine(string.Format("{{anchor:<Viewpoint>[^{0}]</Viewpoint>}}", bcfViewpoint.Viewpoint));
                                }
                                if (!string.IsNullOrWhiteSpace(bcfViewpoint.Snapshot))
                                {
                                    commentBody.AppendLine(string.Format("!{0}|thumbnail!", bcfViewpoint.Snapshot));
                                    commentBody.AppendLine(string.Format("{{anchor:<Snapshot>[^{0}]</Snapshot>}}", bcfViewpoint.Snapshot));
                                }
                            }

                            bcfComment.Comment1 = commentBody.ToString();
                        }
                    }

                    // upload to Jira
                    try
                    {
                        //CHECK IF ALREADY EXISTING
                        // could use the expression: cf[11600] ~ "aaaa"
                        // = operator not supported
                        string fields = " AND  GUID~" + issueBcf.Topic.Guid + "&fields=key,comment";
                        string query  = "search?jql=project=\"" + myQueueItem.jiraProjectKey + "\"" + fields;

                        var request4 = new RestRequest("search", Method.GET);
                        request4.AddQueryParameter("jql", "project=\"" + myQueueItem.jiraProjectKey + "\"" + " AND  GUID~" + issueBcf.Topic.Guid);
                        request4.AddQueryParameter("fields", "key,comment");
                        request4.AddHeader("Content-Type", "application/json");
                        request4.RequestFormat = RestSharp.DataFormat.Json;
                        var response4 = restClient.Execute <Issues>(request4);

                        if (!CheckResponse(response4, log))
                        {
                            log.Info($"Failed to check issue existence: {response4.StatusCode.ToString()}");
                            break;
                        }

                        //DOESN'T exist already
                        if (!response4.Data.issues.Any())
                        {
                            //files to be uploaded
                            List <string> filesToBeUploaded = new List <string>();
                            if (File.Exists(Path.Combine(tempFolder, issueBcf.Topic.Guid, "markup.bcf")))
                            {
                                filesToBeUploaded.Add(Path.Combine(tempFolder, issueBcf.Topic.Guid, "markup.bcf"));
                            }
                            issueBcf.Viewpoints.ToList().ForEach(vp => {
                                if (!string.IsNullOrWhiteSpace(vp.Snapshot) && File.Exists(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Snapshot)))
                                {
                                    filesToBeUploaded.Add(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Snapshot));
                                }
                                if (!string.IsNullOrWhiteSpace(vp.Viewpoint) && File.Exists(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Viewpoint)))
                                {
                                    filesToBeUploaded.Add(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Viewpoint));
                                }
                            });
                            string key = "";

                            var request = new RestRequest("issue", Method.POST);
                            request.AddHeader("Content-Type", "application/json");
                            request.RequestFormat = RestSharp.DataFormat.Json;

                            var newissue =
                                new
                            {
                                fields = new Dictionary <string, object>()
                            };
                            newissue.fields.Add("project", new { key = myQueueItem.jiraProjectKey });
                            if (!string.IsNullOrWhiteSpace(issueJira.fields.description))
                            {
                                newissue.fields.Add("description", issueJira.fields.description);
                            }
                            newissue.fields.Add("summary", (string.IsNullOrWhiteSpace(issueBcf.Topic.Title)) ? "no title" : issueBcf.Topic.Title);
                            newissue.fields.Add("issuetype", new { id = issueTypeId });
                            newissue.fields.Add(customGuidFieldName, issueBcf.Topic.Guid);

                            if (issueJira.fields.labels != null && issueJira.fields.labels.Any())
                            {
                                newissue.fields.Add("labels", issueJira.fields.labels);
                            }

                            request.AddBody(newissue);
                            var response = restClient.Execute(request);

                            var responseIssue = new Issue();
                            if (CheckResponse(response, log))
                            {
                                responseIssue = RestSharp.SimpleJson.DeserializeObject <Issue>(response.Content);
                                key           = responseIssue.key; //attach and comment sent to the new issue
                                newIssueKeys.Add(key);
                                log.Info($"Issue created: {key}");
                            }
                            else
                            {
                                log.Info(response.Content);
                                log.Info($"Failed to create issue: {response.StatusCode.ToString()}");
                                break;
                            }

                            //upload all viewpoints and snapshots
                            var request2 = new RestRequest("issue/" + key + "/attachments", Method.POST);
                            request2.AddHeader("X-Atlassian-Token", "nocheck");
                            request2.RequestFormat = RestSharp.DataFormat.Json;
                            filesToBeUploaded.ForEach(file => request2.AddFile("file", File.ReadAllBytes(file), Path.GetFileName(file)));
                            var response2 = restClient.Execute(request2);
                            if (!CheckResponse(response2, log))
                            {
                                log.Info($"Failed to create upload attachments: {response2.StatusCode.ToString()}");
                            }

                            //ADD COMMENTS
                            if (issueBcf.Comment.Any())
                            {
                                foreach (var c in issueBcf.Comment)
                                {
                                    if (string.IsNullOrWhiteSpace(c.Comment1))
                                    {
                                        continue;
                                    }
                                    var request3 = new RestRequest("issue/" + key + "/comment", Method.POST);
                                    request3.AddHeader("Content-Type", "application/json");
                                    request3.RequestFormat = RestSharp.DataFormat.Json;
                                    var newcomment = new { body = c.Comment1 };
                                    request3.AddBody(newcomment);
                                    var response3 = restClient.Execute <Comment2>(request3);
                                    if (!CheckResponse(response3, log))
                                    {
                                        log.Info($"Failed to add comment: {response3.StatusCode.ToString()}");
                                        break;
                                    }
                                }
                            }
                        }
                        else //UPDATE ISSUE
                        {
                            var oldIssue = response4.Data.issues.First();
                            if (issueBcf.Comment.Any())
                            {
                                int unmodifiedCommentNumber = 0;
                                foreach (var c in issueBcf.Comment)
                                {
                                    //clean all metadata annotations
                                    string newComment  = c.Comment1;
                                    string normalized1 = Regex.Replace(newComment, @"\s", "");
                                    if (string.IsNullOrWhiteSpace(c.Comment1) || oldIssue.fields.comment.comments.Any(o => Regex.Replace(o.body, @"\s", "").Equals(normalized1, StringComparison.OrdinalIgnoreCase)))
                                    {
                                        unmodifiedCommentNumber++;
                                        continue;
                                    }

                                    var request3 = new RestRequest("issue/" + oldIssue.key + "/comment", Method.POST);
                                    request3.AddHeader("Content-Type", "application/json");
                                    request3.RequestFormat = RestSharp.DataFormat.Json;
                                    var newcomment = new { body = c.Comment1 };
                                    request3.AddBody(newcomment);
                                    var response3 = restClient.Execute <Comment2>(request3);

                                    //upload viewpoint and snapshot
                                    var request5 = new RestRequest("issue/" + oldIssue.key + "/attachments", Method.POST);
                                    request5.AddHeader("X-Atlassian-Token", "nocheck");
                                    request5.RequestFormat = RestSharp.DataFormat.Json;
                                    issueBcf.Viewpoints.ToList().ForEach(vp => {
                                        if (c.Viewpoint != null)
                                        {
                                            if (vp.Guid == c.Viewpoint.Guid)
                                            {
                                                if (File.Exists(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Snapshot)))
                                                {
                                                    request5.AddFile("file", File.ReadAllBytes(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Snapshot)), vp.Snapshot);
                                                }
                                                if (File.Exists(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Viewpoint)))
                                                {
                                                    request5.AddFile("file", File.ReadAllBytes(Path.Combine(tempFolder, issueBcf.Topic.Guid, vp.Viewpoint)), vp.Viewpoint);
                                                }
                                            }
                                        }
                                    });
                                    if (request5.Files.Count > 0)
                                    {
                                        var response5 = restClient.Execute(request5);
                                        CheckResponse(response5, log);
                                    }

                                    if (!CheckResponse(response3, log))
                                    {
                                        break;
                                    }
                                }

                                if (unmodifiedCommentNumber == issueBcf.Comment.Count)
                                {
                                    unchangedIssueKeys.Add(oldIssue.key);
                                    log.Info($"Issue Unchanged: {oldIssue.key}");
                                }
                                else
                                {
                                    updatedIssueKeys.Add(oldIssue.key);
                                    log.Info($"Issue Updated: {oldIssue.key}");
                                }
                            }
                            else
                            {
                                unchangedIssueKeys.Add(oldIssue.key);
                                log.Info($"Issue Unchanged: {oldIssue.key}");
                            }
                        }
                    } // END TRY
                    catch (System.Exception ex)
                    {
                        log.Error($"Exception happened when uploading to Jira: {tempFolder}", ex);
                    }
                }

                outputMessage.issuesCreated = newIssueKeys;
                log.Info($"Number of Issues Created: {newIssueKeys.Count}");
                outputMessage.issuesUpdated = updatedIssueKeys;
                log.Info($"Number of Issues Updated: {updatedIssueKeys.Count}");
                outputMessage.issuesUnchanged = unchangedIssueKeys;
                log.Info($"Number of Issues Unchanged: {unchangedIssueKeys.Count}");

                try
                {
                    DeleteDirectory(tempFolder);
                }
                catch (Exception ex)
                {
                    log.Error($"Failed to delete temp folder: {tempFolder}", ex);
                }
            }
            catch (Exception ex)
            {
                log.Error($"Unexpected exception: ", ex);
                outputMessage.errorMessage = ex.ToString();
                return(outputMessage);
            }

            outputMessage.isSuccessful = true;
            return(outputMessage);
        }