-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathOpenModelFromCloudUpdateAssemblyCode.cs
116 lines (108 loc) · 4.03 KB
/
OpenModelFromCloudUpdateAssemblyCode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using Autodesk.Revit.Attributes;
using Autodesk.Revit.DB;
using Autodesk.Revit.UI;
using CsvHelper;
using Microsoft.Win32;
namespace Test;
[Transaction(TransactionMode.Manual)]
public class OpenModelFromCloudUpdateAssemblyCode : IExternalCommand
{
public Result Execute(ExternalCommandData commandData, ref string message, ElementSet elements)
{
// open model from acc
var doc = commandData.Application.ActiveUIDocument.Document;
string region = "US";
List<DataInput> dataInputs = new List<DataInput>();
// browser to item path
using (var reader = new StreamReader(BrowsePathItems()))
{
using (var csv = new CsvReader(reader, CultureInfo.InvariantCulture))
{
var records = csv.GetRecords<DataInput>().ToList();
dataInputs.AddRange(records);
}
}
string csvFamily = BrowsePathFamily();
foreach (DataInput dataInput in dataInputs)
{
// Guid projectGuid = new Guid("ca790fb5-141d-4ad5-b411-0461af2e9748");
// Guid modelGuid = new Guid("53d475e0-67b2-4971-b91a-b7f32a8ca5c2");
try
{
var projectGuid = new Guid(dataInput.project_guid);
var modelGuid = new Guid(dataInput.model_guid);
var modelPath = ModelPathUtils.ConvertCloudGUIDsToCloudPath(region, projectGuid, modelGuid);
Document document = doc.Application.OpenDocumentFile(modelPath, new OpenOptions());
OpenLogFileAndWrite($"Open model {modelPath.CentralServerPath}");
UpdateUFCodeBaseFamily updateUfCodeBaseFamily = new UpdateUFCodeBaseFamily();
updateUfCodeBaseFamily.Execute(document, csvFamily);
// sync model
TransactWithCentralOptions twcOpts = new TransactWithCentralOptions();
SynchronizeWithCentralOptions syncopt = new SynchronizeWithCentralOptions();
RelinquishOptions rOptions = new RelinquishOptions(true);
rOptions.UserWorksets = true;
syncopt.SetRelinquishOptions(rOptions);
// syncopt.SaveLocalBefore = false;
// syncopt.SaveLocalAfter = false;
doc.SynchronizeWithCentral(twcOpts, syncopt);
OpenLogFileAndWrite("Sync model to central is done");
// close model
doc.Close(false);
}
catch (Exception e)
{
OpenLogFileAndWrite($"Error: {e.Message}");
Trace.Write(e.Message);
}
}
return Result.Succeeded;
}
public void OpenLogFileAndWrite(string message)
{
string fileName = "log.txt";
string logFile = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments), fileName);
if (!File.Exists(logFile))
{
using (StreamWriter sw = File.CreateText(logFile))
{
sw.WriteLine(message);
}
}
else
{
using (StreamWriter sw = File.AppendText(logFile))
{
sw.WriteLine(message);
}
}
}
public string BrowsePathFamily()
{
var dialog = new OpenFileDialog();
dialog.Filter = "Revit Files (*.csv)|*.csv";
dialog.Title = "Select a items file";
dialog.ShowDialog();
return dialog.FileName;
}
public string BrowsePathItems()
{
var dialog = new OpenFileDialog();
dialog.Filter = "Revit Files (*.csv)|*.csv";
dialog.Title = "Select a items file";
dialog.ShowDialog();
return dialog.FileName;
}
public class DataInput
{
public string item_id { get; set; }
public string item_name { get; set; }
public string project_guid { get; set; }
public string model_guid { get; set; }
}
}