2018-04-29 19:35:04 -04:00
|
|
|
// Copyright 2018 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.
|
|
|
|
|
2018-09-03 17:26:40 -04:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-03 17:26:40 -04:00
|
|
|
"miniflux.app/http/request"
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/response/html"
|
|
|
|
"miniflux.app/http/response/xml"
|
|
|
|
"miniflux.app/reader/opml"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
func (h *handler) exportFeeds(w http.ResponseWriter, r *http.Request) {
|
|
|
|
opml, err := opml.NewHandler(h.store).Export(request.UserID(r))
|
2018-04-29 19:35:04 -04:00
|
|
|
if err != nil {
|
2018-10-07 21:42:43 -04:00
|
|
|
html.ServerError(w, r, err)
|
2018-04-29 19:35:04 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-07 21:42:43 -04:00
|
|
|
xml.Attachment(w, r, "feeds.opml", opml)
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|