From 2e573da3e091144d7d6f8c72021a8602fb71d61f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Fri, 6 Aug 2021 01:38:35 +0200 Subject: Site de Bingo de Denise --- .../private/buildbot/projects/denise/__init__.py | 50 ++++++++++- modules/private/default.nix | 1 + modules/private/websites/default.nix | 1 + modules/private/websites/denise/bingo.nix | 100 +++++++++++++++++++++ 4 files changed, 151 insertions(+), 1 deletion(-) create mode 100644 modules/private/websites/denise/bingo.nix diff --git a/modules/private/buildbot/projects/denise/__init__.py b/modules/private/buildbot/projects/denise/__init__.py index 2a19ef5..abeba3c 100644 --- a/modules/private/buildbot/projects/denise/__init__.py +++ b/modules/private/buildbot/projects/denise/__init__.py @@ -14,6 +14,10 @@ class E(): SSH_KEY_PATH = "/var/lib/buildbot/buildbot_key" SSH_HOST_KEY = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIFbhFTl2A2RJn5L51yxJM4XfCS2ZaiSX/jo9jFSdghF" + BINGO_RELEASE_PATH = "/var/lib/buildbot/outputs/denise/bingo" + BINGO_BETA_PATH = "/var/lib/buildbot/outputs/denise/bingo_beta" + BINGO_GIT_URL = "gitolite@git.immae.eu:perso/Denise/bingo" + OMS_RELEASE_PATH = "/var/lib/buildbot/outputs/denise/oms" OMS_BETA_PATH = "/var/lib/buildbot/outputs/denise/oms_beta" OMS_GIT_URL = "gitolite@git.immae.eu:perso/Denise/oms" @@ -54,15 +58,59 @@ def configure(c): } c['workers'].append(worker.LocalWorker("generic-worker-denise")) + c['schedulers'].append(hook_scheduler("DeniseBingo", timer=1)) c['schedulers'].append(hook_scheduler("DeniseOMS", timer=1)) c['schedulers'].append(hook_scheduler("DeniseAventuriers", timer=1)) c['schedulers'].append(force_scheduler("force_denise", [ - "DeniseOMS_build", "DeniseAventuriers_build" + "DeniseBingo_build", "DeniseOMS_build", "DeniseAventuriers_build" ])) c['builders'].append(denise_oms_factory()) + c['builders'].append(denise_bingo_factory()) c['builders'].append(denise_aventuriers_factory()) +def denise_bingo_factory(): + @util.renderer + def bingo_run_path(props): + if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master": + return "/run/denise_bingo/gunicorn.pid" + else: + return "/run/denise_bingo_beta/gunicorn.pid" + + @util.renderer + def bingo_systemd_service(props): + if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master": + return "denise-bingo" + else: + return "denise-bingo-beta" + + @util.renderer + def bingo_url(props): + if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master": + return "https://bingo.syanni.eu" + else: + return "https://beta.bingo.syanni.eu" + + @util.renderer + def bingo_path(props): + if props.hasProperty("branch") and len(props["branch"]) > 0 and props["branch"] == "master": + return E.BINGO_RELEASE_PATH + else: + return E.BINGO_BETA_PATH + + factory = util.BuildFactory() + factory.addStep(steps.Git(logEnviron=False, repourl=E.BINGO_GIT_URL, + submodules=True, sshPrivateKey=open(E.SSH_KEY_PATH).read().rstrip(), + sshHostKey=E.SSH_HOST_KEY, mode="full", method="copy")) + factory.addStep(steps.MasterShellCommand(command=util.Interpolate("rm -rf %(kw:bingo_path)s", bingo_path=bingo_path))) + factory.addStep(steps.DirectoryUpload(workersrc="../source", + masterdest=bingo_path, + url=bingo_url)) + factory.addStep(steps.MasterShellCommand(command=util.Interpolate("chmod -R a+rX %(kw:bingo_path)s", bingo_path=bingo_path))) + factory.addStep(steps.MasterShellCommand(command=util.Interpolate("/run/wrappers/bin/sudo systemctl restart %(kw:bingo_service)s.service", bingo_service=bingo_systemd_service))) + + return util.BuilderConfig(name="DeniseBingo_build", workernames=["generic-worker-denise"], factory=factory) + def denise_oms_factory(): @util.renderer def oms_run_path(props): diff --git a/modules/private/default.nix b/modules/private/default.nix index 0ff5214..6b64e60 100644 --- a/modules/private/default.nix +++ b/modules/private/default.nix @@ -35,6 +35,7 @@ set = { deniseDenisejeromeProd = ./websites/denise/denisejerome.nix; deniseEvariste = ./websites/denise/evariste.nix; deniseOMS = ./websites/denise/oms.nix; + deniseBingo = ./websites/denise/bingo.nix; deniseAventuriers = ./websites/denise/aventuriers.nix; deniseProduction = ./websites/denise/production.nix; diff --git a/modules/private/websites/default.nix b/modules/private/websites/default.nix index fa9ee8d..ba2dde0 100644 --- a/modules/private/websites/default.nix +++ b/modules/private/websites/default.nix @@ -243,6 +243,7 @@ in evariste.enable = true; denisejerome.enable = true; oms.enable = true; + bingo.enable = true; aventuriers.enable = true; production.enable = true; }; diff --git a/modules/private/websites/denise/bingo.nix b/modules/private/websites/denise/bingo.nix new file mode 100644 index 0000000..9130462 --- /dev/null +++ b/modules/private/websites/denise/bingo.nix @@ -0,0 +1,100 @@ +{ lib, config, pkgs, ... }: +let + cfg = config.myServices.websites.denise.bingo; + varDir = "/var/lib/buildbot/outputs/denise/bingo"; + varDirBeta = "/var/lib/buildbot/outputs/denise/bingo_beta"; + socket = "/run/denise_bingo/socket.sock"; + socket_beta = "/run/denise_bingo_beta/socket.sock"; +in { + options.myServices.websites.denise.bingo.enable = lib.mkEnableOption "enable Denise's bingo website"; + + config = lib.mkIf cfg.enable { + services.websites.env.production.vhostConfs.denise_bingo = { + certName = "denise"; + addToCerts = true; + hosts = [ "bingo.syanni.eu" ]; + root = null; + extraConfig = [ + '' + ProxyPreserveHost on + ProxyVia On + ProxyRequests Off + ProxyPassMatch ^/.well-known/acme-challenge ! + ProxyPass / unix://${socket}|http://bingo.syanni.eu/ + ProxyPassReverse / unix://${socket}|http://bingo.syanni.eu/ + '' + ]; + }; + + systemd.services.denise-bingo = { + description = "Denise bingo website"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + + serviceConfig = { + Type = "simple"; + WorkingDirectory = varDir; + ExecStart = let + python = pkgs.python3.withPackages (p: [ p.gunicorn p.flask p.matplotlib p.unidecode ]); + in + "${python}/bin/gunicorn -w4 -p /run/denise_bingo/gunicorn.pid --bind unix:${socket} app:app"; + User = "wwwrun"; + Restart = "always"; + RestartSec = "5s"; + PIDFile = "/run/denise_bingo/gunicorn.pid"; + RuntimeDirectory = "denise_bingo"; + StandardOutput = "journal"; + StandardError = "inherit"; + }; + }; + + security.sudo.extraRules = [ + { + commands = [ + { options = [ "NOPASSWD" ]; command = "${pkgs.systemd}/bin/systemctl restart denise-bingo-beta.service"; } + { options = [ "NOPASSWD" ]; command = "${pkgs.systemd}/bin/systemctl restart denise-bingo.service"; } + ]; + users = ["buildbot"]; + runAs = "root"; + } + ]; + services.websites.env.integration.vhostConfs.denise_bingo_beta = { + certName = "denise"; + addToCerts = true; + hosts = [ "beta.bingo.syanni.eu" ]; + root = null; + extraConfig = [ + '' + ProxyPreserveHost on + ProxyVia On + ProxyRequests Off + ProxyPassMatch ^/.well-known/acme-challenge ! + ProxyPass / unix://${socket_beta}|http://beta.bingo.syanni.eu/ + ProxyPassReverse / unix://${socket_beta}|http://beta.bingo.syanni.eu/ + '' + ]; + }; + + systemd.services.denise-bingo-beta = { + description = "Denise bingo beta website"; + after = [ "network.target" ]; + wantedBy = [ "multi-user.target" ]; + + serviceConfig = { + Type = "simple"; + WorkingDirectory = varDirBeta; + ExecStart = let + python = pkgs.python3.withPackages (p: [ p.gunicorn p.flask ]); + in + "${python}/bin/gunicorn -w4 -p /run/denise_bingo_beta/gunicorn.pid --bind unix:${socket_beta} app:app"; + User = "wwwrun"; + Restart = "always"; + RestartSec = "5s"; + PIDFile = "/run/denise_bingo_beta/gunicorn.pid"; + RuntimeDirectory = "denise_bingo_beta"; + StandardOutput = "journal"; + StandardError = "inherit"; + }; + }; + }; +} -- cgit v1.2.3