mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 20:44:07 +00:00
36 lines
893 B
Go
36 lines
893 B
Go
|
// Copyright 2023 The Forgejo Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package activitypub
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/activitypub"
|
||
|
"code.gitea.io/gitea/modules/forgefed"
|
||
|
"code.gitea.io/gitea/modules/log"
|
||
|
"code.gitea.io/gitea/services/context"
|
||
|
|
||
|
ap "github.com/go-ap/activitypub"
|
||
|
"github.com/go-ap/jsonld"
|
||
|
)
|
||
|
|
||
|
// Respond with an ActivityStreams object
|
||
|
func response(ctx *context.APIContext, v any) {
|
||
|
binary, err := jsonld.WithContext(
|
||
|
jsonld.IRI(ap.ActivityBaseURI),
|
||
|
jsonld.IRI(ap.SecurityContextURI),
|
||
|
jsonld.IRI(forgefed.ForgeFedNamespaceURI),
|
||
|
).Marshal(v)
|
||
|
if err != nil {
|
||
|
ctx.ServerError("Marshal", err)
|
||
|
return
|
||
|
}
|
||
|
|
||
|
ctx.Resp.Header().Add("Content-Type", activitypub.ActivityStreamsContentType)
|
||
|
ctx.Resp.WriteHeader(http.StatusOK)
|
||
|
if _, err = ctx.Resp.Write(binary); err != nil {
|
||
|
log.Error("write to resp err: %v", err)
|
||
|
}
|
||
|
}
|