2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package xml // import "miniflux.app/v2/internal/http/response/xml"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2018-10-08 03:42:43 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/http/response"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
// OK writes a standard XML response with a status 200 OK.
|
|
|
|
func OK(w http.ResponseWriter, r *http.Request, body interface{}) {
|
|
|
|
builder := response.New(w, r)
|
|
|
|
builder.WithHeader("Content-Type", "text/xml; charset=utf-8")
|
|
|
|
builder.WithBody(body)
|
|
|
|
builder.Write()
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
// Attachment forces the XML document to be downloaded by the web browser.
|
|
|
|
func Attachment(w http.ResponseWriter, r *http.Request, filename string, body interface{}) {
|
|
|
|
builder := response.New(w, r)
|
|
|
|
builder.WithHeader("Content-Type", "text/xml; charset=utf-8")
|
|
|
|
builder.WithAttachment(filename)
|
|
|
|
builder.WithBody(body)
|
|
|
|
builder.Write()
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|