about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-07-15 12:03:19 -0500
committerFrederick Muriuki Muriithi2024-11-07 10:56:24 -0600
commit481a288fc42991b8404e1137015d174fe1756dbe (patch)
tree449e267d65573ac2baf0398b3f6a2cfa6b4014dd
parent4e6b192bd61e2d93dede6bd104e00f1a952544fa (diff)
downloadgn-machines-481a288fc42991b8404e1137015d174fe1756dbe.tar.gz
Run script to make non-human data public
-rw-r--r--genenetwork/services/genenetwork.scm34
1 files changed, 33 insertions, 1 deletions
diff --git a/genenetwork/services/genenetwork.scm b/genenetwork/services/genenetwork.scm
index b627879..5078f85 100644
--- a/genenetwork/services/genenetwork.scm
+++ b/genenetwork/services/genenetwork.scm
@@ -230,6 +230,33 @@
                             (chmod file #o644))
                           (find-files #$xapian-directory)))))))))
 
+(define (make-non-human-data-public-cron-gexp config)
+  (match-record config <genenetwork-configuration>
+    (gn-auth sql-uri auth-db)
+    (with-imported-modules '((guix build utils))
+      #~(begin
+          (use-modules (guix build utils))
+
+          (setenv "PYTHONPATH"
+                  (string-append
+                   #$(file-append gn-auth
+                                  "/lib/python"
+                                  (python-version (package-version python))
+                                  "/site-packages")
+                   ":"
+                   #$(profile
+                        (content (package->development-manifest gn-auth))
+                        (allow-collisions? #t))
+                   "/lib/python"
+                   #$(python-version (package-version python))
+                   "/site-packages"))
+
+          (invoke #$(file-append python "/bin/python3")
+                  "-m"
+                  "scripts.batch_assign_data_to_default_admin"
+                  #$auth-db
+                  #$sql-uri)))))
+
 (define (genenetwork-activation config)
   (match-record config <genenetwork-configuration>
     (gn2-secrets gn3-secrets gn-auth-secrets auth-db)
@@ -540,7 +567,12 @@ a @code{<genenetwork-configuration>} record."
   (list #~(job '(next-hour)
                #$(program-file "build-xapian-index-cron-gexp"
                                (build-xapian-index-cron-gexp config))
-               #:user "root")))
+               #:user "root")
+        #~(job '(next-hour)
+               #$(program-file "make-non-human-data-public-cron-gexp"
+                               (make-non-human-data-public-cron-gexp config))
+               #:user "gunicorn-gn-auth")
+        ))
 
 (define genenetwork-service-type
   (service-type