Files
protocol/webhook/verifier.go
David Zhao c9e9ae555f Add license headers & NOTICE (#429)
* Add license headers & NOTICE

* generated protobuf

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2023-07-27 16:43:25 -07:00

85 lines
2.1 KiB
Go

// Copyright 2023 LiveKit, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package webhook
import (
"crypto/sha256"
"encoding/base64"
"io"
"net/http"
"google.golang.org/protobuf/encoding/protojson"
"github.com/livekit/protocol/auth"
"github.com/livekit/protocol/livekit"
)
// Receive reads and verifies incoming webhook is signed with key/secret pair
// closes body after reading
func Receive(r *http.Request, provider auth.KeyProvider) ([]byte, error) {
defer r.Body.Close()
data, err := io.ReadAll(r.Body)
if err != nil {
return nil, err
}
authToken := r.Header.Get(authHeader)
if authToken == "" {
return nil, ErrNoAuthHeader
}
v, err := auth.ParseAPIToken(authToken)
if err != nil {
return nil, err
}
secret := provider.GetSecret(v.APIKey())
if secret == "" {
return nil, ErrSecretNotFound
}
claims, err := v.Verify(secret)
if err != nil {
return nil, err
}
// verify checksum
sha := sha256.Sum256(data)
hash := base64.StdEncoding.EncodeToString(sha[:])
if claims.Sha256 != hash {
return nil, ErrInvalidChecksum
}
return data, nil
}
// ReceiveWebhookEvent reads and verifies incoming webhook, and returns a parsed WebhookEvent
func ReceiveWebhookEvent(r *http.Request, provider auth.KeyProvider) (*livekit.WebhookEvent, error) {
data, err := Receive(r, provider)
if err != nil {
return nil, err
}
unmarshalOpts := protojson.UnmarshalOptions{
DiscardUnknown: true,
AllowPartial: true,
}
event := livekit.WebhookEvent{}
if err = unmarshalOpts.Unmarshal(data, &event); err != nil {
return nil, err
}
return &event, nil
}