mirror of
https://git.vectorsigma.ru/public/photoview.git
synced 2026-08-03 16:59:08 +00:00
* Bump golang from 1.23-bookworm to 1.24-bookworm Bumps golang from 1.23-bookworm to 1.24-bookworm. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update to use `go tool`, see https://go.dev/doc/go1.24#go-command. * Update go.mod to go 1.24 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
1.2 KiB
Go
39 lines
1.2 KiB
Go
package resolvers
|
|
|
|
// This file will be automatically regenerated based on the schema, any resolver implementations
|
|
// will be copied through when generating and any unknown code will be moved to the end.
|
|
// Code generated by github.com/99designs/gqlgen version v0.17.66
|
|
|
|
import (
|
|
"context"
|
|
|
|
api "github.com/photoview/photoview/api/graphql"
|
|
"github.com/photoview/photoview/api/graphql/auth"
|
|
"github.com/photoview/photoview/api/graphql/models"
|
|
"github.com/photoview/photoview/api/graphql/notification"
|
|
)
|
|
|
|
// Notification is the resolver for the notification field.
|
|
func (r *subscriptionResolver) Notification(ctx context.Context) (<-chan *models.Notification, error) {
|
|
user := auth.UserFromContext(ctx)
|
|
if user == nil {
|
|
return nil, auth.ErrUnauthorized
|
|
}
|
|
|
|
notificationChannel := make(chan *models.Notification, 1)
|
|
|
|
listenerID := notification.RegisterListener(user, notificationChannel)
|
|
|
|
go func() {
|
|
<-ctx.Done()
|
|
notification.DeregisterListener(listenerID)
|
|
}()
|
|
|
|
return notificationChannel, nil
|
|
}
|
|
|
|
// Subscription returns api.SubscriptionResolver implementation.
|
|
func (r *Resolver) Subscription() api.SubscriptionResolver { return &subscriptionResolver{r} }
|
|
|
|
type subscriptionResolver struct{ *Resolver }
|