2016-02-28 09:39:55 +01:00
|
|
|
// Copyright 2016 The Chihaya Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by the BSD 2-Clause license,
|
|
|
|
// which can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package ip
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/chihaya/chihaya"
|
|
|
|
"github.com/chihaya/chihaya/server/store"
|
|
|
|
"github.com/chihaya/chihaya/tracker"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
tracker.RegisterAnnounceMiddleware("client_whitelist", whitelistAnnounceClient)
|
|
|
|
}
|
|
|
|
|
|
|
|
// whitelistAnnounceClient provides a middleware that only allows Clients to
|
|
|
|
// announce that are stored in a ClientStore.
|
|
|
|
func whitelistAnnounceClient(next tracker.AnnounceHandler) tracker.AnnounceHandler {
|
2016-03-03 02:18:55 +01:00
|
|
|
return func(cfg *chihaya.TrackerConfig, req *chihaya.AnnounceRequest, resp *chihaya.AnnounceResponse) error {
|
2016-02-28 09:39:55 +01:00
|
|
|
whitelisted, err := store.MustGetStore().FindClient(req.PeerID)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if !whitelisted {
|
|
|
|
return ErrBlockedClient
|
|
|
|
}
|
|
|
|
return next(cfg, req, resp)
|
|
|
|
}
|
|
|
|
}
|