Some pointerdb methods doesn't validate api key (#1019)

This commit is contained in:
Michal Niewrzal 2019-01-10 13:07:08 +01:00 committed by GitHub
parent fb4a11ebb0
commit cfbaeaf8f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -288,7 +288,13 @@ func (s *Server) Delete(ctx context.Context, req *pb.DeleteRequest) (resp *pb.De
} }
// Iterate iterates over items based on IterateRequest // Iterate iterates over items based on IterateRequest
func (s *Server) Iterate(ctx context.Context, req *pb.IterateRequest, f func(it storage.Iterator) error) error { func (s *Server) Iterate(ctx context.Context, req *pb.IterateRequest, f func(it storage.Iterator) error) (err error) {
defer mon.Task()(&ctx)(&err)
if err = s.validateAuth(ctx); err != nil {
return err
}
opts := storage.IterateOptions{ opts := storage.IterateOptions{
Prefix: storage.Key(req.Prefix), Prefix: storage.Key(req.Prefix),
First: storage.Key(req.First), First: storage.Key(req.First),
@ -299,7 +305,13 @@ func (s *Server) Iterate(ctx context.Context, req *pb.IterateRequest, f func(it
} }
// PayerBandwidthAllocation returns PayerBandwidthAllocation struct, signed and with given action type // PayerBandwidthAllocation returns PayerBandwidthAllocation struct, signed and with given action type
func (s *Server) PayerBandwidthAllocation(ctx context.Context, req *pb.PayerBandwidthAllocationRequest) (*pb.PayerBandwidthAllocationResponse, error) { func (s *Server) PayerBandwidthAllocation(ctx context.Context, req *pb.PayerBandwidthAllocationRequest) (pba *pb.PayerBandwidthAllocationResponse, err error) {
defer mon.Task()(&ctx)(&err)
if err = s.validateAuth(ctx); err != nil {
return nil, err
}
payer := s.identity.ID payer := s.identity.ID
// TODO(michal) should be replaced with renter id when available // TODO(michal) should be replaced with renter id when available