miniflux-v2/http/handler/xml_response.go

30 lines
793 B
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package handler
2017-11-20 06:10:04 +01:00
import (
"fmt"
"net/http"
)
2017-11-22 03:30:16 +01:00
// XMLResponse handles XML responses.
type XMLResponse struct {
2017-11-20 06:10:04 +01:00
writer http.ResponseWriter
request *http.Request
}
2017-11-22 03:30:16 +01:00
// Download force the download of a XML document.
func (x *XMLResponse) Download(filename, data string) {
2017-11-20 06:10:04 +01:00
x.writer.Header().Set("Content-Type", "text/xml")
x.writer.Header().Set("Content-Disposition", fmt.Sprintf("attachment; filename=%s", filename))
x.writer.Write([]byte(data))
}
2018-01-12 22:42:36 +01:00
// Serve forces the XML to be sent to browser.
func (x *XMLResponse) Serve(data string) {
x.writer.Header().Set("Content-Type", "text/xml")
x.writer.Write([]byte(data))
}