summaryrefslogtreecommitdiffstats
path: root/configserver/src/main/java/com/yahoo/vespa/config/server/http/SessionContentStatusResponse.java
blob: bd182093e99057ded463e95b8294ac5ecbe6e310 (plain) (blame)
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
// Copyright 2017 Yahoo Holdings. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.config.server.http;

import com.fasterxml.jackson.databind.ObjectMapper;
import com.yahoo.config.application.api.ApplicationFile;

import java.io.*;

/**
 * Represents a response for a request to show the status and md5sum of a file in the application package.
 *
 * @author hmusum
 */
public class SessionContentStatusResponse extends SessionResponse {

    private final ApplicationFile file;
    private final String urlBase;
    private final ApplicationFile.MetaData metaData;
    private final ObjectMapper mapper = new ObjectMapper();

    public SessionContentStatusResponse(ApplicationFile file, String urlBase) {
        super();
        this.file = file;
        this.urlBase = urlBase;

        ApplicationFile.MetaData metaData;
        if (file == null) {
            metaData = new ApplicationFile.MetaData(ApplicationFile.ContentStatusDeleted, "");
        } else {
            metaData = file.getMetaData();
        }
        if (metaData == null) {
            throw new IllegalArgumentException("Could not find status for '" + file.getPath() + "'");
        }
        this.metaData = metaData;
    }

    @Override
    public void render(OutputStream outputStream) throws IOException {
        mapper.writeValue(outputStream, new ResponseData(metaData.status, metaData.md5, urlBase + file.getPath()));
    }

    private static class ResponseData {
        public final String status;
        public final String md5;
        public final String name;

        private ResponseData(String status, String md5, String name) {
            this.status = status;
            this.md5 = md5;
            this.name = name;
        }
    }

}