aboutsummaryrefslogtreecommitdiffstats
path: root/controller-server/src/main/java/com/yahoo/vespa/hosted/controller/restapi/application/ZipResponse.java
blob: f45ef49402b14e932524a78d6ec2ccbb2c6e4c55 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.hosted.controller.restapi.application;

import com.yahoo.container.jdisc.HttpResponse;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

/**
 * A HTTP response containing a named ZIP file.
 *
 * @author mpolden
 */
public class ZipResponse extends HttpResponse {

    private final InputStream zipContent;

    public ZipResponse(String filename, InputStream zipContent) {
        super(200);
        this.zipContent = zipContent;
        this.headers().add("Content-Disposition", "attachment; filename=\"" + filename + "\"");
    }

    @Override
    public String getContentType() {
        return "application/zip";
    }

    @Override
    public void render(OutputStream outputStream) throws IOException {
        try (zipContent) {
            zipContent.transferTo(outputStream);
        }
    }

}