2018-12-24 17:45:15 +00:00
|
|
|
/*
|
2022-11-11 04:49:16 +00:00
|
|
|
* Copyright © 2018 Musing Studio LLC.
|
2018-12-24 17:45:15 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
2018-12-31 06:05:26 +00:00
|
|
|
|
2018-11-08 06:19:03 +00:00
|
|
|
package writefreely
|
|
|
|
|
2019-09-18 19:39:53 +00:00
|
|
|
import (
|
|
|
|
"mime"
|
|
|
|
"net/http"
|
2023-09-21 20:16:57 +00:00
|
|
|
"strings"
|
2019-09-18 19:39:53 +00:00
|
|
|
)
|
2018-11-08 06:19:03 +00:00
|
|
|
|
2019-09-18 19:39:53 +00:00
|
|
|
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"
|
2018-11-08 06:19:03 +00:00
|
|
|
}
|
2023-09-21 20:16:57 +00:00
|
|
|
|
|
|
|
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\""
|
|
|
|
}
|