summaryrefslogtreecommitdiffstats
path: root/portal-BE/src/main/java/org/onap/portal/service/ManifestService.java
blob: eb823250001acdc022913a6a19e3447f7d844147 (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
package org.onap.portal.service;

import java.io.IOException;
import java.io.InputStream;
import java.util.jar.Attributes;
import java.util.jar.Manifest;
import javax.servlet.ServletContext;
import org.onap.portalsdk.core.logging.logic.EELFLoggerDelegate;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.EnableAspectJAutoProxy;
import org.springframework.stereotype.Service;

@Service
@EnableAspectJAutoProxy
public class ManifestService {

    @Autowired
    ServletContext context;

    public Attributes getWebappManifest() throws IOException {
        EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(ManifestService.class);
        // Path to resource on classpath
        final String MANIFEST_RESOURCE_PATH = "/META-INF/MANIFEST.MF";
        // Manifest is formatted as Java-style properties
        try {
            InputStream inputStream = context.getResourceAsStream(MANIFEST_RESOURCE_PATH);
            Manifest manifest = new Manifest(inputStream);
            inputStream.close();
            return manifest.getMainAttributes();
        } catch (IOException e) {
            logger.error(EELFLoggerDelegate.errorLogger, "getWebappManifest: failed to read/find manifest");
            throw e;
        }
    }
}