aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket-be/vnf-sdk-marketplace/src/main/java/org/onap/vnfsdk/marketplace/wrapper/PackageWrapperUtil.java
blob: 9f9974e0a507bf1b066d72e75d2c5f115eff4f6c (plain)
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
/**
 * Copyright 2017 Huawei Technologies Co., Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.onap.vnfsdk.marketplace.wrapper;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;

import org.onap.vnfsdk.marketplace.common.CommonConstant;
import org.onap.vnfsdk.marketplace.common.FileUtil;
import org.onap.vnfsdk.marketplace.common.MsbAddrConfig;
import org.onap.vnfsdk.marketplace.common.ToolUtil;
import org.onap.vnfsdk.marketplace.db.entity.PackageData;
import org.onap.vnfsdk.marketplace.db.exception.MarketplaceResourceException;
import org.onap.vnfsdk.marketplace.db.resource.PackageManager;
import org.onap.vnfsdk.marketplace.entity.EnumType;
import org.onap.vnfsdk.marketplace.entity.request.PackageBasicInfo;
import org.onap.vnfsdk.marketplace.entity.response.PackageMeta;
import org.onap.vnfsdk.marketplace.model.parser.EnumPackageFormat;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import com.google.common.reflect.TypeToken;
import com.google.gson.Gson;
import com.google.gson.internal.LinkedTreeMap;

public class PackageWrapperUtil {

    private static final Logger LOG = LoggerFactory.getLogger(PackageWrapperUtil.class);
    private static Gson gson = new Gson();

    private PackageWrapperUtil() {
    }

    public static long getPacakgeSize(String fileLocation) {
        File file = new File(fileLocation);
        return file.length();
    }

    /**
     * change package metadata to fix database.
     * 
     * @param meta package metadata
     * @param details
     * @return package data in database
     */
    public static PackageData getPackageData(PackageMeta meta) {
        PackageData packageData = new PackageData();
        packageData.setCreateTime(meta.getCreateTime());
        packageData.setDeletionPending(String.valueOf(meta.isDeletionPending()));
        packageData.setDownloadUri(meta.getDownloadUri());
        packageData.setFormat(meta.getFormat());
        packageData.setModifyTime(meta.getModifyTime());
        packageData.setName(meta.getName());
        packageData.setCsarId(meta.getCsarId());
        packageData.setProvider(meta.getProvider());
        String fileSize = meta.getSize();
        packageData.setSize(fileSize);
        packageData.setType(meta.getType());
        packageData.setVersion(meta.getVersion());
        packageData.setDetails(meta.getDetails());
        packageData.setShortDesc(meta.getShortDesc());
        packageData.setRemarks(meta.getRemarks());
        return packageData;
    }

    /**
     * judge wether is the end of upload package.
     * 
     * @param contentRange package sise range
     * @param csarName package name
     * @return boolean
     */
    public static boolean isUploadEnd(String contentRange) {
        String range = contentRange;
        range = range.replace("bytes", "").trim();
        range = range.substring(0, range.indexOf("/"));
        String size = contentRange.substring(contentRange.indexOf("/") + 1, contentRange.length()).trim();
        int fileSize = Integer.parseInt(size);
        String[] ranges = range.split("-");
        int endPosition = Integer.parseInt(ranges[1]) + 1;
        return endPosition >= fileSize;
    }

    /**
     * get package detail by package id.
     * 
     * @param csarId package id
     * @return package detail
     */
    public static PackageData getPackageInfoById(String csarId) {
        PackageData result = new PackageData();
        List<PackageData> packageDataList = new ArrayList<>();
        try {
            packageDataList = PackageManager.getInstance().queryPackageByCsarId(csarId);
            if(packageDataList != null && !packageDataList.isEmpty()) {
                result = packageDataList.get(0);
            }
        } catch(MarketplaceResourceException e1) {
            LOG.error("query package by csarId from db error ! " + e1.getMessage(), e1);
        }
        return result;
    }

    /**
     * get package metadata from basic info.
     * 
     * @param fileName package name
     * @param fileLocation the location of package
     * @param basic basic infomation of package. include version, type and provider
     * @return package metadata
     */
    public static PackageMeta getPackageMeta(String packageId, String fileName, String fileLocation,
            PackageBasicInfo basic, String details) {
        PackageMeta packageMeta = new PackageMeta();
        long size = getPacakgeSize(fileLocation);
        packageMeta.setFormat(basic.getFormat());
        String usedPackageId = packageId;
        if(null == packageId) {
            usedPackageId = ToolUtil.generateId();
        }

        packageMeta.setCsarId(usedPackageId);

        packageMeta.setName(fileName.replace(CommonConstant.CSAR_SUFFIX, ""));
        packageMeta.setType(basic.getType().toString());
        packageMeta.setVersion(basic.getVersion());
        packageMeta.setProvider(basic.getProvider());
        packageMeta.setDeletionPending(false);
        String sizeStr = ToolUtil.getFormatFileSize(size);
        packageMeta.setSize(sizeStr);
        SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
        String currentTime = sdf1.format(new Date());
        packageMeta.setCreateTime(currentTime);
        packageMeta.setModifyTime(currentTime);
        if(null != details) {
            LinkedTreeMap<String, String> csarDetails = gson.fromJson(details, LinkedTreeMap.class);
            packageMeta.setDetails(csarDetails.get("details"));
            packageMeta.setShortDesc(csarDetails.get("shortDesc"));
            packageMeta.setRemarks(csarDetails.get("remarks"));
        }
        return packageMeta;
    }

    /**
     * get downloadUri from package metadata.
     * 
     * @param csarId package id
     * @return download uri
     */
    public static String getPackagePath(String csarId) {
        List<PackageData> packageList = new ArrayList<>();
        String downloadUri = null;
        try {
            packageList = PackageManager.getInstance().queryPackageByCsarId(csarId);
            downloadUri = packageList.get(0).getDownloadUri();
        } catch(MarketplaceResourceException e1) {
            LOG.error("Query CSAR package by ID failed ! csarId = " + csarId, e1);
        }
        return downloadUri;
    }

    /**
     * get package name from ftpUrl.
     * 
     * @param ftpUrl ftp url
     * @return package name
     */
    public static String getPackageName(String ftpUrl) {
        int index = ftpUrl.lastIndexOf("/");

        return ftpUrl.substring(index);
    }

    /**
     * translate package data from database to package metadata.
     * 
     * @param dbResult data from database
     * @return package metadata list
     */
    public static List<PackageMeta> packageDataList2PackageMetaList(List<PackageData> dbResult) {
        ArrayList<PackageMeta> metas = new ArrayList<>();
        if(!dbResult.isEmpty()) {
            for(int i = 0; i < dbResult.size(); i++) {
                PackageData data = dbResult.get(i);
                PackageMeta meta = packageData2PackageMeta(data);
                metas.add(meta);
            }
        }
        return metas;
    }

    public static PackageMeta packageData2PackageMeta(PackageData packageData) {
        PackageMeta meta = new PackageMeta();
        meta.setCsarId(packageData.getCsarId());
        meta.setCreateTime(packageData.getCreateTime());
        meta.setDeletionPending(Boolean.getBoolean(packageData.getDeletionPending()));
        String packageUri = packageData.getDownloadUri() + packageData.getName() + CommonConstant.CSAR_SUFFIX;
        String packageUrl = getUrl(packageUri);
        meta.setDownloadUri(packageUrl);
        meta.setReport(packageData.getReport());
        meta.setFormat(packageData.getFormat());
        meta.setModifyTime(packageData.getModifyTime());
        meta.setName(packageData.getName());
        meta.setDetails(packageData.getDetails());
        meta.setProvider(packageData.getProvider());
        meta.setSize(packageData.getSize());
        meta.setType(packageData.getType());
        meta.setShortDesc(packageData.getShortDesc());
        meta.setVersion(packageData.getVersion());
        meta.setRemarks(packageData.getRemarks());
        meta.setDownloadCount(packageData.getDownloadCount());
        return meta;
    }

    /**
     * add msb address as prefix to uri.
     * 
     * @param uri uri
     * @return url
     */
    public static String getUrl(String uri) {
        String url = getDownloadUriHead();
        if(url.endsWith("/") && uri.startsWith("/")) {
            url += uri.substring(1);
        } else {
            url += uri;
        }
        return url.replace("\\", "/");
    }

    public static String getDownloadUriHead() {
        return MsbAddrConfig.getMsbAddress() + "/files/catalog-http";
    }

    /**
     * get local path.
     * 
     * @param uri uri
     * @return local path
     */
    public static String getLocalPath(String uri) {
        File srcDir = new File(uri);
        String localPath = srcDir.getAbsolutePath();
        return localPath.replace("\\", "/");
    }

    /**
     * get package basic information.
     * 
     * @param fileLocation package location
     * @return package basic information
     */
    public static PackageBasicInfo getPacageBasicInfo(String fileLocation) {
        PackageBasicInfo basicInfo = new PackageBasicInfo();
        String unzipDir = ToolUtil.getUnzipDir(fileLocation);
        boolean isXmlCsar = false;
        try {
            String tempfolder = unzipDir;
            List<String> unzipFiles = FileUtil.unzip(fileLocation, tempfolder);
            if(unzipFiles.isEmpty()) {
                isXmlCsar = true;
            }
            for(String unzipFile : unzipFiles) {
                if(unzipFile.endsWith(CommonConstant.MANIFEST)) {
                    basicInfo = readManifest(unzipFile);
                }

                if(unzipFile.endsWith(CommonConstant.CSAR_META)) {
                    basicInfo = readMetaData(unzipFile);
                }

                if(ToolUtil.isYamlFile(new File(unzipFile))) {
                    isXmlCsar = false;
                }
            }
        } catch(IOException e1) {
            LOG.error("judge package type error ! " + e1.getMessage(), e1);
        }
        if(isXmlCsar) {
            basicInfo.setFormat(CommonConstant.PACKAGE_XML_FORMAT);
        } else {
            basicInfo.setFormat(CommonConstant.PACKAGE_YAML_FORMAT);
        }
        return basicInfo;
    }

    /**
     * Reads the manifest file in the package and fills the basic infor about package
     * 
     * @param unzipFile
     * @return basic infor about package
     */
    private static PackageBasicInfo readMetaData(String unzipFile) {

        // Fix the package type to CSAR, temporary
        PackageBasicInfo basicInfo = new PackageBasicInfo();
        basicInfo.setType(EnumType.CSAR);

        File file = new File(unzipFile);
        try (BufferedReader reader = new BufferedReader(new FileReader(file))) {

            for(String tempString; (tempString = reader.readLine()) != null;) {
                // If line is empty, ignore
                if("".equals(tempString)) {
                    continue;
                }

                int count1 = tempString.indexOf(":");
                String meta = tempString.substring(0, count1).trim();

                // Check for the package provider name
                if(meta.equalsIgnoreCase(CommonConstant.CSAR_PROVIDER_META)) {
                    int count = tempString.indexOf(":") + 1;
                    basicInfo.setProvider(tempString.substring(count).trim());
                }

                // Check for package version
                if(meta.equalsIgnoreCase(CommonConstant.CSAR_VERSION_META)) {
                    int count = tempString.indexOf(":") + 1;
                    basicInfo.setVersion(tempString.substring(count).trim());
                }

                // Check for package type
                if(meta.equalsIgnoreCase(CommonConstant.CSAR_TYPE_META)) {
                    int count = tempString.indexOf(":") + 1;

                    basicInfo.setType(getEnumType(tempString.substring(count).trim()));
                }
            }

            reader.close();
        } catch(IOException e) {
            LOG.error("Exception while parsing manifest file" + e, e);
        }

        return basicInfo;
    }

    private static EnumType getEnumType(String type) {
        EnumType vnfType = EnumType.CSAR;
        if(type == "CSAR") {
            vnfType = EnumType.CSAR;
        }

        if(type == "GSAR") {
            vnfType = EnumType.GSAR;
        }

        if(type == "NSAR") {
            vnfType = EnumType.NSAR;
        }

        if(type == "SSAR") {
            vnfType = EnumType.SSAR;
        }

        if(type == "NFAR") {
            vnfType = EnumType.NFAR;
        }

        return vnfType;
    }

    private static PackageBasicInfo readManifest(String unzipFile) {

        // Fix the package type to CSAR, temporary
        PackageBasicInfo basicInfo = new PackageBasicInfo();
        basicInfo.setType(EnumType.CSAR);

        File file = new File(unzipFile);
        try (BufferedReader reader = new BufferedReader(new FileReader(file))) {

            for(String tempString; (tempString = reader.readLine()) != null;) {
                // If line is empty, ignore
                if("".equals(tempString)) {
                    continue;
                }

                int count1 = tempString.indexOf(":");
                String meta = tempString.substring(0, count1).trim();

                // Check for the package provider name
                if(meta.equalsIgnoreCase(CommonConstant.MF_PROVIDER_META)) {
                    int count = tempString.indexOf(":") + 1;
                    basicInfo.setProvider(tempString.substring(count).trim());
                }

                // Check for package version
                if(meta.equalsIgnoreCase(CommonConstant.MF_VERSION_META)) {
                    int count = tempString.indexOf(":") + 1;
                    basicInfo.setVersion(tempString.substring(count).trim());
                }
            }

            reader.close();
        } catch(IOException e) {
            LOG.error("Exception while parsing manifest file" + e, e);
        }

        return basicInfo;
    }

    /**
     * get package format enum.
     * 
     * @param format package format
     * @return package format enum
     */
    public static EnumPackageFormat getPackageFormat(String format) {
        if("xml".equals(format)) {
            return EnumPackageFormat.TOSCA_XML;
        } else if("yml".equals(format) || "yaml".equals(format)) {
            return EnumPackageFormat.TOSCA_YAML;
        } else {
            return null;
        }
    }
}