-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
198 lines (140 loc) · 4.13 KB
/
main.js
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
const fsPackage = require('fs');
const pathPackage = require('path');
//_ OLSKDiskIsRealFolderPath
exports.OLSKDiskIsRealFolderPath = function(inputData) {
if (!fsPackage.existsSync(inputData)) {
return false;
}
return fsPackage.lstatSync(inputData).isDirectory();
};
//_ OLSKDiskIsRealFilePath
exports.OLSKDiskIsRealFilePath = function(inputData) {
if (!fsPackage.existsSync(inputData)) {
return false;
}
return fsPackage.lstatSync(inputData).isFile();
};
//_ OLSKDiskCreateFolder
exports.OLSKDiskCreateFolder = function(inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (exports.OLSKDiskIsRealFilePath(inputData)) {
throw new Error('OLSKErrorInputNotValid');
}
if (!fsPackage.existsSync(inputData)) {
fsPackage.mkdirSync(inputData, {
recursive: true,
});
}
return inputData;
};
//_ OLSKDiskDeleteFolder
exports.OLSKDiskDeleteFolder = function(inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (exports.OLSKDiskIsRealFolderPath(inputData)) {
fsPackage.readdirSync(inputData).forEach(function(e) {
if (exports.OLSKDiskIsRealFolderPath(pathPackage.join(inputData, e))) {
return exports.OLSKDiskDeleteFolder(pathPackage.join(inputData, e));
}
fsPackage.unlinkSync(pathPackage.join(inputData, e));
});
fsPackage.rmdirSync(inputData);
}
return inputData;
};
//_ OLSKDiskWriteFile
exports.OLSKDiskWriteFile = function(param1, param2) {
if (typeof param1 !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (typeof param2 !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
exports.OLSKDiskCreateFolder(pathPackage.dirname(param1));
fsPackage.writeFileSync(param1, param2);
return param1;
};
//_ OLSKDiskReadFile
exports.OLSKDiskReadFile = function(inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (!exports.OLSKDiskIsRealFilePath(inputData)) {
throw new Error('OLSKErrorInputNotValid');
}
return fsPackage.readFileSync(inputData, 'utf8');
};
//_ OLSKDiskWrite
exports.OLSKDiskWrite = function(param1, param2) {
if (typeof param1 !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (typeof param2 !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
exports.OLSKDiskCreateFolder(pathPackage.dirname(param1));
fsPackage.writeFileSync(param1, param2);
return param2;
};
//_ OLSKDiskRead
exports.OLSKDiskRead = function(inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (!exports.OLSKDiskIsRealFilePath(inputData)) {
return null;
}
return fsPackage.readFileSync(inputData, 'utf8');
};
//_ OLSKDiskAppFolderName
exports.OLSKDiskAppFolderName = function() {
return 'os-app';
};
//_ OLSKDiskWorkspaceTestingFolderSubfolderNameFor
exports.OLSKDiskWorkspaceTestingFolderSubfolderNameFor = function(inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
if (inputData === '') {
throw new Error('OLSKErrorInputNotValid');
}
return ['test', inputData].join('.').replace(/\./g, '-');
};
//_ OLSKDiskSafeBasenameFor
exports.OLSKDiskSafeBasenameFor = function(inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
return inputData.replace(/[\.,;:\*\?\|_<>\\\/\"\'\“\”\‘\’\«\»]/g, ' ').split(/\s/).filter(function(e) {
return e.trim() !== '';
}).join(' ');
};
const mod = {
OLSKDiskStandardIgnoreItems () {
return [
'DS_Store',
'node_modules',
'vendor',
]
},
OLSKDiskStandardIgnoreGlob () {
return `**/+(.git|${ mod.OLSKDiskStandardIgnoreItems().join('|') }|__*)/**`;
},
OLSKDiskStandardIgnorePattern () {
return new RegExp(`.*(\\.git|${ mod.OLSKDiskStandardIgnoreItems().join('|') }|__\\w+)/.*`, 'i')
},
OLSKDiskOpen (inputData) {
if (typeof inputData !== 'string') {
throw new Error('OLSKErrorInputNotValid');
}
const _mod = process.env.npm_lifecycle_script === 'olsk-spec' ? this : mod;
_mod._DataFoilOpen(inputData);
return inputData;
},
// DATA
_DataFoilOpen: require('open'),
};
Object.assign(exports, mod);