This repository was archived by the owner on Jan 15, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
448 lines (448 loc) · 9.15 KB
/
package.json
File metadata and controls
448 lines (448 loc) · 9.15 KB
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
{
"id":"com.moimz.imodule.core",
"title":"iModule",
"version":"3.0.0",
"language":"ko",
"dependencies":{
"php":"5.3.3",
"mysql":"5.0.0",
"curl":"*",
"zip":"*",
"mbstring":"*",
"gd":"*",
"encrypt":"*"
},
"requirements":{
"modules/admin":"3.0.0",
"modules/attachment":"3.0.0",
"modules/email":"3.0.0",
"modules/keyword":"3.0.0",
"modules/member":"3.0.0",
"modules/push":"3.0.0",
"modules/wysiwyg":"3.0.0"
},
"directories":{
"attachments":"0707",
"cache":"0707",
"configs":"0707"
},
"configs":["key","db"],
"preset":"iModule",
"databases":{
"cron_table":{
"columns":{
"host":{
"type":"varchar",
"length":100,
"comment":"자동화작업 대상 사이트 도메인"
},
"module":{
"type":"varchar",
"length":20,
"comment":"자동화작업 대상 모듈"
},
"type":{
"type":"enum",
"length":"'HOURLY','DAILY','WEEKLY','MONTHLY'",
"default":"DAILY",
"comment":"반복일정"
},
"date":{
"type":"date",
"comment":"최근 자동화작업 실행일자"
},
"hour":{
"type":"int",
"length":2,
"default":0,
"comment":"최근 자동화작업 실행시각(반복주기가 HOURLY 인 경우)"
},
"result":{
"type":"longtext",
"comment":"자동화작업 결과"
},
"start_date":{
"type":"int",
"length":11,
"comment":"최근 자동화작업 시작일시"
},
"end_date":{
"type":"int",
"length":11,
"comment":"최근 자동화작업 종료일시"
},
"runtime":{
"type":"double",
"comment":"최근 자동화작업 실행시간"
}
},
"indexes":{
"host,module,type,date,hour":"primary_key"
},
"comment":"아이모듈 자동화작업 테이블"
},
"module_table":{
"columns":{
"module":{
"type":"varchar",
"length":20,
"comment":"모듈명"
},
"version":{
"type":"varchar",
"length":20,
"comment":"현재버전"
},
"previous":{
"type":"varchar",
"length":20,
"is_null":true,
"comment":"이전버전"
},
"hash":{
"type":"char",
"length":32,
"comment":"패키지 고유값"
},
"database":{
"type":"varchar",
"length":20,
"default":"default",
"comment":"모듈 데이터베이스 코드"
},
"db_size":{
"type":"bigint",
"length":15,
"default":0,
"comment":"모듈이 사용중인 데이터베이스 용량"
},
"attachment_size":{
"type":"bigint",
"length":15,
"default":0,
"comment":"모듈이 사용중인 첨부파일 용량"
},
"is_admin":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"관리자패널 사용여부"
},
"is_context":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"TRUE",
"comment":"컨텍스트 사용여부"
},
"is_global":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"광역모듈 여부"
},
"is_widget":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"위젯기능 포함여부"
},
"is_templet":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"사이트템플릿 포함여부"
},
"is_external":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"외부파일 포함여부"
},
"is_sitemap":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"사이트맵구성 여부"
},
"is_cron":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"자동화작업 여부"
},
"configs":{
"type":"text",
"comment":"모듈설정"
},
"targets":{
"type":"text",
"comment":"이벤트리스너설정"
},
"sort":{
"type":"int",
"length":11,
"default":0,
"comment":"정렬"
}
},
"indexes":{
"module":"primary_key"
},
"comment":"아이모듈 모듈관리 테이블"
},
"plugin_table":{
"columns":{
"plugin":{
"type":"varchar",
"length":20,
"comment":"플러그인명"
},
"version":{
"type":"varchar",
"length":20,
"comment":"현재버전"
},
"hash":{
"type":"char",
"length":32,
"comment":"패키지 고유값"
},
"database":{
"type":"varchar",
"length":20,
"default":"default",
"comment":"플러그인 데이터베이스 코드"
},
"db_size":{
"type":"bigint",
"length":15,
"default":0,
"comment":"플러그인 데이터베이스 사용용량"
},
"is_admin":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"관리자패널 여부"
},
"is_active":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"TRUE",
"comment":"활성화 여부"
},
"configs":{
"type":"text",
"comment":"플러그인설정"
},
"targets":{
"type":"text",
"comment":"이벤트리스너설정"
},
"sort":{
"type":"int",
"length":11,
"default":0,
"comment":"정렬"
}
},
"indexes":{
"plugin":"primary_key"
},
"comment":"아이모듈 플러그인관리 테이블"
},
"sitemap_table":{
"columns":{
"domain":{
"type":"varchar",
"length":100,
"comment":"도메인명"
},
"language":{
"type":"char",
"length":2,
"comment":"언어셋"
},
"menu":{
"type":"varchar",
"length":20,
"comment":"메뉴코드"
},
"page":{
"type":"varchar",
"length":20,
"default":"",
"comment":"페이지코드"
},
"title":{
"type":"varchar",
"length":100,
"default":"",
"comment":"제목"
},
"icon":{
"type":"varchar",
"length":100,
"is_null":true,
"comment":"아이콘"
},
"type":{
"type":"enum",
"length":"'PAGE','EXTERNAL','WIDGET','MODULE','HTML','LINK','EMPTY','GROUPSTART','GROUPEND'",
"default":"EMPTY",
"comment":"종류"
},
"layout":{
"type":"varchar",
"length":20,
"comment":"레이아웃명"
},
"description":{
"type":"text",
"is_null":true,
"comment":"페이지설명"
},
"image":{
"type":"int",
"length":11,
"default":0,
"comment":"대표이미지"
},
"header":{
"type":"longtext",
"is_null":true,
"comment":"페이지 상단내용"
},
"footer":{
"type":"longtext",
"is_null":true,
"comment":"페이지 하단내용"
},
"context":{
"type":"text",
"comment":"컨텍스트 설정"
},
"permission":{
"type":"varchar",
"length":255,
"default":"true",
"comment":"권힌"
},
"is_footer":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"사이트하단메뉴 추가여부"
},
"is_hide":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"숨김메뉴여부"
},
"sort":{
"type":"int",
"length":11,
"default":0,
"comment":"정렬"
}
},
"indexes":{
"domain,language,menu,page":"primary_key"
},
"comment":"아이모듈 사이트맵 관리 테이블"
},
"site_table":{
"columns":{
"domain":{
"type":"varchar",
"length":100,
"comment":"도메인명"
},
"language":{
"type":"char",
"length":2,
"comment":"언어셋"
},
"title":{
"type":"varchar",
"length":100,
"comment":"사이트명"
},
"alias":{
"type":"text",
"is_null":true,
"comment":"유사도메인"
},
"description":{
"type":"text",
"is_null":true,
"comment":"사이트설명"
},
"templet":{
"type":"varchar",
"length":20,
"default":"default",
"comment":"템플릿명"
},
"templet_configs":{
"type":"text",
"is_null":true,
"comment":"템플릿설정"
},
"image":{
"type":"int",
"length":11,
"default":-1,
"comment":"대표이미지"
},
"logo":{
"type":"varchar",
"length":150,
"default":"{\"default\":-1,\"footer\":-1}",
"comment":"로고이미지"
},
"emblem":{
"type":"int",
"length":11,
"default":-1,
"comment":"엠블럼이미지"
},
"favicon":{
"type":"int",
"length":11,
"default":-1,
"comment":"패비콘이미지"
},
"member":{
"type":"enum",
"length":"'UNIQUE','UNIVERSAL'",
"default":"UNIVERSAL",
"comment":"회원관리방식"
},
"is_https":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"HTTPS접속여부"
},
"is_default":{
"type":"enum",
"length":"'TRUE','FALSE'",
"default":"FALSE",
"comment":"기본언어사이트 여부"
},
"sort":{
"type":"int",
"length":11,
"default":0,
"comment":"정렬"
}
},
"indexes":{
"domain,language":"primary_key"
},
"comment":"아이모듈 사이트 관리 테이블"
}
}
}