]> git.immae.eu Git - perso/Immae/Config/Nix.git/commitdiff
Move Aten packages to pkgs
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 11 May 2019 10:16:57 +0000 (12:16 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 11 May 2019 10:16:57 +0000 (12:16 +0200)
nixops/modules/websites/aten/aten.nix
nixops/modules/websites/aten/default.nix
pkgs/default.nix
pkgs/private/default.nix [new file with mode: 0644]
pkgs/private/webapps/aten/aten.json [moved from nixops/modules/websites/aten/aten.json with 100% similarity]
pkgs/private/webapps/aten/default.nix [new file with mode: 0644]
pkgs/private/webapps/aten/php-packages.nix [moved from nixops/modules/websites/aten/php-packages.nix with 100% similarity]
pkgs/private/webapps/default.nix [new file with mode: 0644]

index c35af6f098ee3dc1ea936ee397c7f8549486a1ee..04876a1a2afc95b3c2bc58338b87abe06dfd51bb 100644 (file)
-{ lib, writeText, fetchedGitPrivate, stdenv, runCommand, composerEnv, fetchurl, fetchgit, jq, python, nodejs, libsass, yarn2nixPackage }:
-let
-  aten = { config }: rec {
-    environment = config.environment;
-    varDir = "/var/lib/aten_${environment}";
-    phpFpm = rec {
-      preStart = ''
-        if [ ! -f "${varDir}/currentWebappDir" -o \
-            ! -f "${varDir}/currentKey" -o \
-            "${webappDir}" != "$(cat ${varDir}/currentWebappDir 2>/dev/null)" ] \
-            || ! sha512sum -c --status ${varDir}/currentKey; then
-          pushd ${webappDir} > /dev/null
-          /run/wrappers/bin/sudo -u wwwrun APP_ENV=${environment} ./bin/console --env=${environment} cache:clear --no-warmup
-          popd > /dev/null
-          echo -n "${webappDir}" > ${varDir}/currentWebappDir
-          sha512sum /var/secrets/webapps/${environment}-aten > ${varDir}/currentKey
-        fi
-        '';
-      serviceDeps = [ "postgresql.service" ];
-      socket = "/var/run/phpfpm/aten-${environment}.sock";
-      pool = ''
-        listen = ${socket}
-        user = ${apache.user}
-        group = ${apache.group}
-        listen.owner = ${apache.user}
-        listen.group = ${apache.group}
-        php_admin_value[upload_max_filesize] = 20M
-        php_admin_value[post_max_size] = 20M
-        ;php_admin_flag[log_errors] = on
-        php_admin_value[open_basedir] = "${webappDir}:${varDir}:/tmp"
-        php_admin_value[session.save_path] = "${varDir}/phpSessions"
-        ${if environment == "dev" then ''
-        pm = ondemand
-        pm.max_children = 5
-        pm.process_idle_timeout = 60
-        env[SYMFONY_DEBUG_MODE] = "yes"
-        '' else ''
-        pm = dynamic
-        pm.max_children = 20
-        pm.start_servers = 2
-        pm.min_spare_servers = 1
-        pm.max_spare_servers = 3
-        ''}'';
-    };
-    keys = [{
-      dest = "webapps/${environment}-aten";
-      user = apache.user;
-      group = apache.group;
-      permissions = "0400";
-      text = ''
-        SetEnv APP_ENV      "${environment}"
-        SetEnv APP_SECRET   "${config.secret}"
-        SetEnv DATABASE_URL "${config.psql_url}"
-        '';
-    }];
-    apache = rec {
-      user = "wwwrun";
-      group = "wwwrun";
-      modules = [ "proxy_fcgi" ];
-      webappName = "aten_${environment}";
-      root = "/run/current-system/webapps/${webappName}";
-      vhostConf = ''
-      <FilesMatch "\.php$">
-        SetHandler "proxy:unix:${phpFpm.socket}|fcgi://localhost"
-      </FilesMatch>
+{ aten, lib, config }: rec {
+  app = aten.override { inherit (config) environment; };
+  phpFpm = rec {
+    preStart = ''
+      if [ ! -f "${app.varDir}/currentWebappDir" -o \
+          ! -f "${app.varDir}/currentKey" -o \
+          "${app}" != "$(cat ${app.varDir}/currentWebappDir 2>/dev/null)" ] \
+          || ! sha512sum -c --status ${app.varDir}/currentKey; then
+        pushd ${app} > /dev/null
+        /run/wrappers/bin/sudo -u wwwrun APP_ENV=${app.environment} ./bin/console --env=${app.environment} cache:clear --no-warmup
+        popd > /dev/null
+        echo -n "${app}" > ${app.varDir}/currentWebappDir
+        sha512sum /var/secrets/webapps/${app.environment}-aten > ${app.varDir}/currentKey
+      fi
+      '';
+    serviceDeps = [ "postgresql.service" ];
+    socket = "/var/run/phpfpm/aten-${app.environment}.sock";
+    pool = ''
+      listen = ${socket}
+      user = ${apache.user}
+      group = ${apache.group}
+      listen.owner = ${apache.user}
+      listen.group = ${apache.group}
+      php_admin_value[upload_max_filesize] = 20M
+      php_admin_value[post_max_size] = 20M
+      ;php_admin_flag[log_errors] = on
+      php_admin_value[open_basedir] = "${app}:${app.varDir}:/tmp"
+      php_admin_value[session.save_path] = "${app.varDir}/phpSessions"
+      ${if app.environment == "dev" then ''
+      pm = ondemand
+      pm.max_children = 5
+      pm.process_idle_timeout = 60
+      env[SYMFONY_DEBUG_MODE] = "yes"
+      '' else ''
+      pm = dynamic
+      pm.max_children = 20
+      pm.start_servers = 2
+      pm.min_spare_servers = 1
+      pm.max_spare_servers = 3
+      ''}'';
+  };
+  keys = [{
+    dest = "webapps/${app.environment}-aten";
+    user = apache.user;
+    group = apache.group;
+    permissions = "0400";
+    text = ''
+      SetEnv APP_ENV      "${app.environment}"
+      SetEnv APP_SECRET   "${config.secret}"
+      SetEnv DATABASE_URL "${config.psql_url}"
+      '';
+  }];
+  apache = rec {
+    user = "wwwrun";
+    group = "wwwrun";
+    modules = [ "proxy_fcgi" ];
+    webappName = "aten_${app.environment}";
+    root = "/run/current-system/webapps/${webappName}";
+    vhostConf = ''
+    <FilesMatch "\.php$">
+      SetHandler "proxy:unix:${phpFpm.socket}|fcgi://localhost"
+    </FilesMatch>
 
-      Include /var/secrets/webapps/${environment}-aten
+    Include /var/secrets/webapps/${app.environment}-aten
 
-      ${if environment == "dev" then ''
-      <Location />
-        Use LDAPConnect
-        Require ldap-group   cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
-        ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
-      </Location>
+    ${if app.environment == "dev" then ''
+    <Location />
+      Use LDAPConnect
+      Require ldap-group   cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
+      ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
+    </Location>
 
-      <Location /backend>
-        Use LDAPConnect
-        Require ldap-group   cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
-        ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
-      </Location>
-      '' else ''
-      Use Stats aten.pro
+    <Location /backend>
+      Use LDAPConnect
+      Require ldap-group   cn=dev.aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
+      ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
+    </Location>
+    '' else ''
+    Use Stats aten.pro
 
-      <Location /backend>
-        Use LDAPConnect
-        Require ldap-group   cn=aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
-        ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
-      </Location>
-      ''}
+    <Location /backend>
+      Use LDAPConnect
+      Require ldap-group   cn=aten.pro,cn=httpd,ou=services,dc=immae,dc=eu
+      ErrorDocument 401 "<html><meta http-equiv=\"refresh\" content=\"0;url=https://aten.pro\"></html>"
+    </Location>
+    ''}
 
-      <Directory ${root}>
-        Options Indexes FollowSymLinks MultiViews Includes
-        AllowOverride All
-        Require all granted
-        DirectoryIndex index.php
-        FallbackResource /index.php
-      </Directory>
-      '';
-    };
-    activationScript = {
-      deps = [ "wrappers" ];
-      text = ''
-      install -m 0755 -o ${apache.user} -g ${apache.group} -d ${varDir}
-      install -m 0750 -o ${apache.user} -g ${apache.group} -d ${varDir}/phpSessions
-      '';
-    };
-    yarnModules = let
-        info = fetchedGitPrivate ./aten.json;
-        packagejson = runCommand "package.json" { buildInputs = [ jq ]; } ''
-          cat ${info.src}/package.json | jq -r '.version = "v1.0.0"|.name="aten"' > $out
-          '';
-      in
-        yarn2nixPackage.mkYarnModules rec {
-          name = "aten-yarn";
-          pname = name;
-          version = "v1.0.0";
-          packageJSON = packagejson;
-          yarnLock = "${info.src}/yarn.lock";
-          pkgConfig = {
-            all = {
-              buildInputs = [ yarn2nixPackage.src ];
-            };
-            node-sass = {
-              buildInputs = [ libsass python ];
-              postInstall = let
-                nodeHeaders = fetchurl {
-                  url = "https://nodejs.org/download/release/v${nodejs.version}/node-v${nodejs.version}-headers.tar.gz";
-                  sha256 = "16f20ya3ys6w5w6y6l4536f7jrgk4gz46bf71w1r1xxb26a54m32";
-                };
-              in
-                ''
-                  node scripts/build.js --tarball=${nodeHeaders}
-                '';
-            };
-          };
-        };
-    webappDir = composerEnv.buildPackage (
-      import ./php-packages.nix { inherit composerEnv fetchurl fetchgit; } //
-      fetchedGitPrivate ./aten.json //
-      rec {
-        noDev = (environment == "prod");
-        preInstall = ''
-          export SYMFONY_ENV="${environment}"
-          export APP_ENV="${environment}"
-          '';
-        postInstall = ''
-          ln -sf ${yarnModules}/node_modules .
-          yarn run --offline encore production
-          rm -rf var/{log,cache}
-          ln -sf ${varDir}/{log,cache} var/
-          '';
-        buildInputs = [ yarnModules yarn2nixPackage.yarn ];
-      });
-    webRoot = "${webappDir}/public";
+    <Directory ${root}>
+      Options Indexes FollowSymLinks MultiViews Includes
+      AllowOverride All
+      Require all granted
+      DirectoryIndex index.php
+      FallbackResource /index.php
+    </Directory>
+    '';
+  };
+  activationScript = {
+    deps = [ "wrappers" ];
+    text = ''
+    install -m 0755 -o ${apache.user} -g ${apache.group} -d ${app.varDir}
+    install -m 0750 -o ${apache.user} -g ${apache.group} -d ${app.varDir}/phpSessions
+    '';
   };
-in
-  aten
+}
index fd3f7ccaefefe0d4b615a5e787977dc9364a5564..efd3619088c8942ab8b3cf3fd8178320b4d85e56 100644 (file)
@@ -1,14 +1,15 @@
 { lib, pkgs, config, myconfig, mylibs, ... }:
 let
-    aten = pkgs.callPackage ./aten.nix { inherit (mylibs) fetchedGitPrivate yarn2nixPackage; };
-    aten_dev  = aten {
-      config = myconfig.env.websites.aten.integration;
-    };
-    aten_prod = aten {
-      config = myconfig.env.websites.aten.production;
-    };
+  aten_dev = pkgs.callPackage ./aten.nix {
+    inherit (pkgs.private.webapps) aten;
+    config = myconfig.env.websites.aten.integration;
+  };
+  aten_prod = pkgs.callPackage ./aten.nix {
+    inherit (pkgs.private.webapps) aten;
+    config = myconfig.env.websites.aten.production;
+  };
 
-    cfg = config.services.myWebsites.Aten;
+  cfg = config.services.myWebsites.Aten;
 in {
   options.services.myWebsites.Aten = {
     production = {
@@ -37,7 +38,7 @@ in {
       system.activationScripts.aten_prod = aten_prod.activationScript;
       system.extraSystemBuilderCmds = ''
         mkdir -p $out/webapps
-        ln -s ${aten_prod.webRoot} $out/webapps/${aten_prod.apache.webappName}
+        ln -s ${aten_prod.app.webRoot} $out/webapps/${aten_prod.apache.webappName}
         '';
       services.myWebsites.apacheConfig.aten_prod.modules = aten_prod.apache.modules;
       services.myWebsites.production.modules = aten_prod.apache.modules;
@@ -57,7 +58,7 @@ in {
       system.activationScripts.aten_dev = aten_dev.activationScript;
       system.extraSystemBuilderCmds = ''
         mkdir -p $out/webapps
-        ln -s ${aten_dev.webRoot} $out/webapps/${aten_dev.apache.webappName}
+        ln -s ${aten_dev.app.webRoot} $out/webapps/${aten_dev.apache.webappName}
         '';
       services.myWebsites.integration.modules = aten_dev.apache.modules;
       services.myWebsites.integration.vhostConfs.aten = {
index b97b26720d5c75f59f3de8e7c148c3b6191fab60..18fc3b3a81ba441920657961d7d7ab855562f028 100644 (file)
@@ -1,6 +1,7 @@
 { pkgs }:
 with pkgs;
-let mylibs = import ../libs.nix { inherit pkgs; };
+let
+  mylibs = import ../libs.nix { inherit pkgs; };
 in
 rec {
   boinctui = callPackage ../pkgs/boinctui {};
@@ -38,4 +39,8 @@ rec {
 
   composerEnv = callPackage ./composer-env {};
   webapps = callPackage ./webapps { inherit mylibs composerEnv; };
+
+  private = if builtins.pathExists (./. + "/private")
+    then import ./private { inherit pkgs; }
+    else { webapps = {}; };
 }
diff --git a/pkgs/private/default.nix b/pkgs/private/default.nix
new file mode 100644 (file)
index 0000000..951a23f
--- /dev/null
@@ -0,0 +1,8 @@
+{ pkgs }:
+with pkgs;
+let
+  mylibs = import ../../libs.nix { inherit pkgs; };
+in
+rec {
+  webapps = callPackage ./webapps { inherit mylibs; inherit (pkgs) composerEnv; };
+}
diff --git a/pkgs/private/webapps/aten/default.nix b/pkgs/private/webapps/aten/default.nix
new file mode 100644 (file)
index 0000000..e6ca048
--- /dev/null
@@ -0,0 +1,56 @@
+{ environment ? "prod"
+, varDir ? "/var/lib/aten_${environment}"
+, mylibs, composerEnv, fetchgit, runCommand, nodejs, jq, libsass, python, fetchurl }:
+let
+  packagesource = mylibs.fetchedGitPrivate ./aten.json;
+  packagejson = runCommand "package.json" { buildInputs = [ jq ]; } ''
+    cat ${packagesource.src}/package.json | jq -r '.version = "v1.0.0"|.name="aten"' > $out
+    '';
+  yarnModules = mylibs.yarn2nixPackage.mkYarnModules rec {
+    name = "aten-yarn";
+    pname = name;
+    version = "v1.0.0";
+    packageJSON = packagejson;
+    yarnLock = "${packagesource.src}/yarn.lock";
+    pkgConfig = {
+      all = {
+        buildInputs = [ mylibs.yarn2nixPackage.src ];
+      };
+      node-sass = {
+        buildInputs = [ libsass python ];
+        postInstall = let
+          nodeHeaders = fetchurl {
+            url = "https://nodejs.org/download/release/v${nodejs.version}/node-v${nodejs.version}-headers.tar.gz";
+            sha256 = "16f20ya3ys6w5w6y6l4536f7jrgk4gz46bf71w1r1xxb26a54m32";
+          };
+        in
+          ''
+            node scripts/build.js --tarball=${nodeHeaders}
+          '';
+      };
+    };
+  };
+  app = composerEnv.buildPackage (
+    import ./php-packages.nix { inherit composerEnv fetchurl fetchgit; } //
+    packagesource //
+    rec {
+      noDev = (environment == "prod");
+      preInstall = ''
+        export SYMFONY_ENV="${environment}"
+        export APP_ENV="${environment}"
+        '';
+      postInstall = ''
+        ln -sf ${yarnModules}/node_modules .
+        yarn run --offline encore production
+        rm -rf var/{log,cache}
+        ln -sf ${varDir}/{log,cache} var/
+        '';
+      buildInputs = [ yarnModules mylibs.yarn2nixPackage.yarn ];
+      passthru = {
+        inherit varDir;
+        inherit environment;
+        webRoot = "${app}/public";
+      };
+    }
+  );
+in app
diff --git a/pkgs/private/webapps/default.nix b/pkgs/private/webapps/default.nix
new file mode 100644 (file)
index 0000000..8c45b89
--- /dev/null
@@ -0,0 +1,4 @@
+{ callPackage, mylibs, composerEnv, lib }:
+rec {
+  aten = callPackage ./aten {};
+}