about summary refs log tree commit diff
path: root/third_party/nix/src/nix-daemon/nix-daemon-proto.cc
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2020-07-18T18·22-0400
committerglittershark <grfn@gws.fyi>2020-07-18T19·52+0000
commitecf288e70aa32d532bed79f8d940c349419ce0e8 (patch)
treec4610fcacc7679cfb68764351da2ce2c962b15ec /third_party/nix/src/nix-daemon/nix-daemon-proto.cc
parenta79df261b498473ae7c6d4a04f32c50d5954124f (diff)
feat(3p/nix/nix-daemon): Implement Worker::AddSignatures handler r/1383
I got the message proto wrong on this one as well - it needs both a path
and a signatures.

Change-Id: I9a489b1285bda61c15b2a3b47d9cfc3b50e387da
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1270
Tested-by: BuildkiteCI
Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'third_party/nix/src/nix-daemon/nix-daemon-proto.cc')
-rw-r--r--third_party/nix/src/nix-daemon/nix-daemon-proto.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/nix/src/nix-daemon/nix-daemon-proto.cc b/third_party/nix/src/nix-daemon/nix-daemon-proto.cc
index 26ae538f29..d94e34cb40 100644
--- a/third_party/nix/src/nix-daemon/nix-daemon-proto.cc
+++ b/third_party/nix/src/nix-daemon/nix-daemon-proto.cc
@@ -227,6 +227,20 @@ class WorkerServiceImpl final : public WorkerService::Service {
     return Status::OK;
   }
 
+  Status AddSignatures(grpc::ServerContext* context,
+                       const nix::proto::AddSignaturesRequest* request,
+                       google::protobuf::Empty* response) override {
+    auto path = request->path().path();
+    store_->assertStorePath(path);
+
+    StringSet sigs;
+    sigs.insert(request->sigs().sigs().begin(), request->sigs().sigs().end());
+
+    store_->addSignatures(path, sigs);
+
+    return Status::OK;
+  }
+
   Status QueryMissing(grpc::ServerContext* context, const StorePaths* request,
                       nix::proto::QueryMissingResponse* response) override {
     std::set<Path> targets;