mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
8f03da0ec1
This returns ActivityStreams objects when the Accept header is `application/ld+json; profile="https://www.w3.org/ns/activitystreams"`, per the ActivityPub spec. Fixes #564
29 lines
788 B
Go
29 lines
788 B
Go
/*
|
|
* Copyright © 2018 Musing Studio LLC.
|
|
*
|
|
* This file is part of WriteFreely.
|
|
*
|
|
* WriteFreely is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License, included
|
|
* in the LICENSE file in this source code package.
|
|
*/
|
|
|
|
package writefreely
|
|
|
|
import (
|
|
"mime"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
func IsJSON(r *http.Request) bool {
|
|
ct, _, _ := mime.ParseMediaType(r.Header.Get("Content-Type"))
|
|
accept := r.Header.Get("Accept")
|
|
return ct == "application/json" || accept == "application/json"
|
|
}
|
|
|
|
func IsActivityPubRequest(r *http.Request) bool {
|
|
accept := r.Header.Get("Accept")
|
|
return strings.Contains(accept, "application/activity+json") ||
|
|
accept == "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\""
|
|
}
|