-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotori.go
285 lines (273 loc) · 8.47 KB
/
dotori.go
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
package main
import (
"context"
"encoding/json"
"errors"
"flag"
"fmt"
"html/template"
"log"
"os"
"os/user"
"time"
"go.mongodb.org/mongo-driver/mongo"
"go.mongodb.org/mongo-driver/mongo/options"
"go.mongodb.org/mongo-driver/mongo/readpref"
)
var (
// TEMPLATES 는 dotori에서 사용하는 템플릿 글로벌 변수이다.
TEMPLATES = template.New("")
flagAdd = flag.Bool("add", false, "add mode")
flagRm = flag.Bool("remove", false, "remove mode")
flagSeek = flag.Bool("seek", false, "seek mode") // 해당 폴더를 탐색할 때 사용합니다.
flagExt = flag.String("ext", "", "extenstion") // 확장자
flagSearch = flag.Bool("search", false, "search mode")
flagSearchWord = flag.String("searchword", "", "search word") // DB를 검색할 때 사용합니다.
flagSearchID = flag.Bool("searchid", false, "search a item by its id")
flagGetOngoingProcess = flag.Bool("getongoingprocess", false, "get ongoing process") // 완료되지 않은 프로세스를 가져옵니다.
flagProcess = flag.Bool("process", false, "start processing item") // 프로세스를 실행시킨다
flagDebug = flag.Bool("debug", false, "debug mode") // debug모드
flagAccesslevel = flag.String("accesslevel", "default", "access level of user") // 사용자의 accesslevel을 지정합니다. admin, manager, default
flagAuthor = flag.String("author", "", "author")
flagTitle = flag.String("title", "", "title")
flagTag = flag.String("tag", "", "tag")
flagDescription = flag.String("description", "", "description")
flagInputThumbImgPath = flag.String("inputthumbimgpath", "", "input path of thumbnail image")
flagInputThumbClipPath = flag.String("inputthumbclippath", "", "input path of thumbnail clip")
flagInputDataPath = flag.String("inputdatapath", "", "input path of data")
flagItemType = flag.String("itemtype", "", "type of asset")
flagAttributes = flag.String("attributes", "", "detail info of file") // "key:value,key:value"
flagUserID = flag.String("userid", "", "ID of user")
flagFPS = flag.String("fps", "", "frame per second")
flagInColorspace = flag.String("incolorspace", "", "in color space")
flagOutColorspace = flag.String("outcolorspace", "", "out color space")
flagPremultiply = flag.Bool("premultiply", false, "premultiply")
// 서비스에 필요한 인수
flagMongoDBURI = flag.String("mongodburi", "mongodb://localhost:27017", "mongoDB URI ex)mongodb://localhost:27017")
flagDBName = flag.String("dbname", "dotori", "DB name")
flagHTTPPort = flag.String("http", "", "Web Service Port Number")
flagPagenum = flag.Int64("pagenum", 9, "maximum number of items in a page")
flagCookieAge = flag.Int("cookieage", 4, "cookie age (hour)") // MPAA 기준 4시간이다.
flagMaxProcessNum = flag.Int("maxprocessnum", 4, "maximum number of process")
flagCertFullchain = flag.String("certfullchain", "", "certification fullchain path")
flagCertPrivkey = flag.String("certprivkey", "", "certification privkey path")
flagItemID = flag.String("itemid", "", "bson ObjectID assigned by mongodb")
// SHA1VER 값은 git 커밋 로그 이다.
SHA1VER = ""
// BUILDTIME 값은 빌드시간 변수이다.
BUILDTIME = ""
)
func main() {
log.SetFlags(log.LstdFlags | log.Lshortfile)
log.SetPrefix("dotori: ")
flag.Parse()
user, err := user.Current()
if err != nil {
log.Fatal(err)
}
if *flagSeek && *flagExt == "" {
items, err := searchSeqAndClip(*flagInputDataPath)
if err != nil {
log.Fatal(err)
}
data, err := json.Marshal(items)
if err != nil {
log.Fatal(err)
}
fmt.Println(string(data))
os.Exit(0)
} else if *flagSeek && *flagExt != "" {
paths, err := searchExt(*flagInputDataPath, *flagExt)
if err != nil {
log.Fatal(err)
}
for _, path := range paths {
fmt.Println(path)
}
os.Exit(0)
} else if *flagSearch {
//mongoDB client 연결
client, err := mongo.NewClient(options.Client().ApplyURI(*flagMongoDBURI))
if err != nil {
log.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
err = client.Connect(ctx)
if err != nil {
log.Fatal(err)
}
defer client.Disconnect(ctx)
err = client.Ping(ctx, readpref.Primary())
if err != nil {
log.Fatal(err)
}
if *flagItemType == "" {
log.Fatal("itemtype이 빈 문자열입니다")
}
items, err := Search(client, *flagItemType, *flagSearchWord)
if err != nil {
log.Fatal(err)
}
for _, item := range items {
fmt.Println(item)
}
} else if *flagAdd {
if *flagItemType == "" {
log.Fatal("itemtype이 빈 문자열입니다")
}
if *flagDBName != "" {
if !regexLower.MatchString(*flagDBName) { // 입력받은 dbname이 소문자인지 확인
log.Fatal(err)
}
}
switch *flagItemType {
case "maya":
addMayaItemCmd()
case "houdini":
addHoudiniItemCmd()
case "blender":
addBlenderItemCmd()
case "clip":
addClipItemCmd()
case "footage":
addFootageItemCmd()
case "nuke":
addNukeItemCmd()
case "alembic":
addAlembicItemCmd()
case "usd":
addUSDItemCmd()
case "unreal":
addUnrealItemCmd()
case "hwp":
addHwpItemCmd()
case "pdf":
addPdfItemCmd()
case "texture":
addTextureItemCmd()
case "sound":
addSoundItemCmd()
case "openvdb":
addOpenVDBItemCmd()
case "modo":
addModoItemCmd()
case "katana":
addKatanaItemCmd()
case "ppt":
addPptItemCmd()
case "ies":
addIesItemCmd()
case "lut":
addLutItemCmd()
case "hdri":
addHdriItemCmd()
case "fusion360":
addFusion360ItemCmd()
case "max":
addMaxItemCmd()
default:
log.Fatal("command를 지원하지 않는 아이템타입입니다.")
}
} else if *flagRm {
if user.Username != "root" {
log.Fatal(errors.New("item을 삭제하기 위해서는 root 권한이 필요합니다"))
}
rmItemCmd()
} else if *flagHTTPPort != "" {
ip, err := serviceIP()
if err != nil {
log.Fatal(err)
}
// 프로세스 연산을 실행한다.
// webserver와 같이 실행해야하기 때문에 go를 붙혀서 실행한다.
// go 명령어가 없다면, webserver() 함수가 실행되지 않는다.
go ProcessMain()
// 웹서버 실행
fmt.Printf("Service start: http://%s\n", ip)
webserver()
} else if *flagSearchID {
//mongoDB client 연결
client, err := mongo.NewClient(options.Client().ApplyURI(*flagMongoDBURI))
if err != nil {
log.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
err = client.Connect(ctx)
if err != nil {
log.Fatal(err)
}
defer client.Disconnect(ctx)
err = client.Ping(ctx, readpref.Primary())
if err != nil {
log.Fatal(err)
}
item, err := SearchItem(client, *flagItemID)
if err != nil {
log.Print(err)
}
fmt.Println(item)
} else if *flagGetOngoingProcess {
//mongoDB client 연결
client, err := mongo.NewClient(options.Client().ApplyURI(*flagMongoDBURI))
if err != nil {
log.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
err = client.Connect(ctx)
if err != nil {
log.Fatal(err)
}
defer client.Disconnect(ctx)
err = client.Ping(ctx, readpref.Primary())
if err != nil {
log.Fatal(err)
}
items, err := GetUndoneItem(client)
if err != nil {
log.Fatal(err)
}
fmt.Println(items)
} else if *flagProcess {
ProcessMain()
fmt.Println("done")
} else if *flagAccesslevel != "" && *flagUserID != "" {
if user.Username != "root" {
log.Fatal(errors.New("사용자의 레벨을 수정하기 위해서는 root 권한이 필요합니다"))
}
//mongoDB client 연결
client, err := mongo.NewClient(options.Client().ApplyURI(*flagMongoDBURI))
if err != nil {
log.Fatal(err)
}
ctx, cancel := context.WithTimeout(context.Background(), 10*time.Second)
defer cancel()
err = client.Connect(ctx)
if err != nil {
log.Fatal(err)
}
defer client.Disconnect(ctx)
err = client.Ping(ctx, readpref.Primary())
if err != nil {
log.Fatal(err)
}
// userID를 이용해서 사용자정보를 가져온다.
u, err := GetUser(client, *flagUserID)
if err != nil {
log.Fatal(err)
}
u.AccessLevel = *flagAccesslevel
//수정된 사용자 정보를 DB에 업데이트한다.
u.CreateToken()
err = SetUser(client, u)
if err != nil {
log.Fatal(err)
}
return
} else {
flag.PrintDefaults()
os.Exit(1)
}
}