Initial commit

This commit is contained in:
Yann Esposito (Yogsototh) 2019-08-19 23:59:22 +02:00
commit f3ff393770
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646
2 changed files with 90 additions and 0 deletions

17
README.org Normal file
View file

@ -0,0 +1,17 @@
#+Title: Autoload project.el
#+Author: Yann Esposito
#+Date: [2019-08-19 Mon]
Autoload securely a =project.el= file when entering a project directory.
It uses =projectile= package.
When entering a new project, load the =project.el= file at the root of the
project.
To make things safes, it check a =project.el.sig= GPG signature file and
verify the file was signed by one of the
=auto-load-project-trusted-gpg-key-fingerprint=.
#+begin_src elisp
(setq auto-load-project-trusted-gpg-key-fingerprints
'("000011112222333344445555666677778888"))
#+end_src

73
auto-load-project.el Normal file
View file

@ -0,0 +1,73 @@
;;; auto-load-project.el --- Auto load elisp file on project open
;; Copyright © 2019 Yann Esposito <yann@esposito.host>
;;; Commentary:
;;
;;; Code:
(require 'projectile)
(defvar auto-load-project-trusted-gpg-key-fingerprints
'()
"The list of GPG fingerprint you trust when decrypting a gpg file.
You can retrieve the fingerprints of your own private keys
with: `gpg --list-secret-keys' (take care of removing the
spaces when copauto-load-project-pasting here)")
(defun auto-load-project-get-sign-key (file)
"Return the fingerprint of they key that signed FILE.
To sign a file you should used
`gpg --local-user my@email --output project.el.sig --detach-sign project.el`"
(string-trim-right
(shell-command-to-string
(concat
"gpg --status-fd 1 --verify" file ".sig " file "2>/dev/null"
"|grep VALIDSIG"
"|awk '{print $3}'"))))
(defun auto-load-project-trusted-gpg-origin-p (file)
"Return non-nil if the FILE is encrypted with a trusted key."
(member (auto-load-project-get-sign-key file) auto-load-project-trusted-gpg-key-fingerprints))
(defconst auto-load-project-project-file "project.el"
"Project configuration file name.")
(defun auto-load-project-init-project-el-auto-load ()
"Initialize the autoload of project.el for projects."
(with-eval-after-load 'projectile
(defvar auto-load-project-loaded-projects (list)
"Projects that have been loaded by `auto-load-project-load-project-file'.")
(defun auto-load-project-load-project-file ()
"Loads the `auto-load-project-project-file' for a project. This is run once
after the project is loaded signifying project setup."
(interactive)
(when (projectile-project-p)
(lexical-let* ((current-project-root (projectile-project-root))
(project-init-file (expand-file-name auto-load-project-project-file current-project-root)))
(when (and (not (member current-project-root auto-load-project-loaded-projects))
(file-exists-p project-init-file)
(auto-load-project-trusted-gpg-origin-p project-init-file))
(message "Loading project init file for %s" (projectile-project-name))
(condition-case ex
(progn (load project-init-file)
(add-to-list 'auto-load-project-loaded-projects current-project-root)
(message "%s loaded successfully" project-init-file))
('error
(message
"There was an error loading %s: %s"
project-init-file
(error-message-string ex))))))))
(add-hook 'find-file-hook #'auto-load-project-load-project-file t)
(add-hook 'dired-mode-hook #'auto-load-project-load-project-file t)))
(provide 'auto-load-project)
;;; auto-load-project.el ends here