;; -*- coding: utf-8; -*- ;; gitto -- Keep track of your git repositories ;; Copyright (C) 2012 Tom Willemse ;; This file is part of gitto. ;; gitto is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by ;; the Free Software Foundation, either version 3 of the License, or ;; (at your option) any later version. ;; gitto is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License ;; along with gitto. If not, see . (define-module (gitto main) #:use-module (gitto command) #:use-module (gitto commands help) #:use-module (gitto config) #:use-module (gitto git) #:use-module (gitto path) #:use-module (gitto ui) #:use-module (ice-9 popen) #:use-module (oop goops) #:use-module (srfi srfi-1) #:export (main)) (define (canonicalize-filename path) "Get a canonicalized name for PATH, unless it's already familiar." (if (member path repositories same-repository?) path (realpath path))) (define (config-dir) (storage-dir "XDG_CONFIG_HOME" "/.config")) (define (config-file file) (string-append (config-dir) "/" file)) (define (data-dir) (storage-dir "XDG_DATA_HOME" "/.local/share")) (define (data-file file) (string-append (data-dir) "/" file)) (define (known? repo) "Do we know REPO?" (and (valid-repo? repo) (registered? repo))) (define (list-repository-locations) "List the registered locations of repositories." (for-each print-repository-location (sort repositories repository-location (length repos) 1) (let* ((prompt "Which of the following repositories would you like to remove?") (location (repo-location (choose repos prompt repo-location)))) (when location (remove-repository-by-location location))) (remove-repository-by-location (repo-location (car repos))))) (define (remove-repository repository) "Remove REPOSITORY from the list of known repositories." (set! repositories (delete repository repositories same-repository?)) (save-repositories-list)) (define (remove-repository-by-location location) "Look for a repository in LOCATION and try to remove it." (set! location (canonicalize-filename location)) (if (known? location) (begin (remove-repository location) (simple-format #t "Repository ~A removed." location)) (display "Not a registered repository.")) (newline)) (define (repositories-by-name name) "Get the repositories identified by NAME." (filter (lambda (repo) (repository-name=? repo name)) repositories)) (define (save-repositories-list) "Save the list of repositories." (ensure-directory-exists. (data-dir)) ;; Sort first (set! repositories (sort repositories repository-name repo)) (format #t "Unknown repository: ~a~%" repo)) (for-each update-repo-config repositories))) (define (update-repo-config repo) "Merge the configured configuration with REPO's configuration. Don't do anything if REPO has been added to `config-exclusion-list'." (unless (member (repo-name repo) config-exclusion-list) (write-config (merge-config (repo-name repo) (read-config (repo-location repo)) global-config) (string-append (repo-location repo) "/.git/config")))) (define (valid-repo? repo) "Check if REPO is or could be made usable as a repository." (or (repository? repo) (string? repo))) (define (write-repositories!) "Write the repositories to the repositories file." (let ((port (open-output-file repositories-file)) (repos (map repo-location repositories))) (write repos port) (close-port port))) (define config-exclusion-list '()) (define repositories-file (data-file "repos.scm")) (define repositories (if (file-exists? repositories-file) (let* ((port (open-input-file repositories-file)) (result (read port))) (close-port port) (map-in-order (lambda (repo) (make repo)) result)) '())) (define-command (add repository) "Register a repository." "Usage: gitto add REPO Add REPO to the registered repository list. This command will fail if REPO does not indicate a git repository or if it has already been registered." (set! repository (make (realpath repository))) (if (not (known? repository)) (begin (set! repositories (append `(,repository) repositories)) (save-repositories-list) (simple-format #t "Repository ~A registered.~%" (repo-name repository)) ;; Ask the user if they would like to merge their config ;; template with the newly registered repository if they have ;; a configuration set-up and the current input port is a tty. (when (and (isatty? (current-input-port)) (not (eq? global-config '())) (y-or-n? "Would you like to merge your settings?" #:default #t)) (update-repo-config repository))) (display "Repository already registered.")) (newline)) (define-command (check repository) "Check to see if a repository has been registered." "Usage: gitto check REPO Checks whether or not the git repository REPO has been registered with gitto." (format #t "Repository is~a registered~%" (if (known? repository) "" " not"))) (define-command (config #:optional sub repository) "Manage your repositories' configurations." "Usage: gitto config gitto config global gitto config update [repository] The first form prints the configurations for each registered repository. The second form shows what your configured configuration template looks like as a git configuration file. This does not expand the `%a' format specifier which can be used to indicate the repository name. The third form merges the template in and existing configurations, overwriting settings when necessary. The repositories in the `config-exclusion-list' will be skipped. If REPOSITORY is specified it only updates the configuration for that repository. *Note:* This is a destructive operation, you should be mindful." (cond ((not sub) (for-each print-config repositories)) ((equal? sub "global") (show-global-config)) ((equal? sub "update") (update-config repository)))) (define-command (hooks #:optional sub repository) "Manage your repositories' hooks." "Usage: gitto hooks init [repository] Installs the configured hooks into each repository or the given repository." (cond ((equal? sub "init") (if repository (if (known? repository) (maybe-install-hooks. (make repository)) (format #t "Unknown repository: ~a~%" repository)) (for-each maybe-install-hooks. repositories))))) (define-command (list . args) "List information about every repository." "Usage: gitto list gitto list locations The first form shows an overview of the status of your registered repositories and their branches. By default branches without changer aren't shown, but you can change this behaviour by setting the `show-unchanged-branches?' variable in your init file. The second form prints the location on your filesystem for each registered repository as absolute paths." (if (and (not (eq? args '())) (equal? (car args) "locations")) (list-repository-locations) (for-each print repositories))) (define-command (purge) "Purge all registered repositories that can no longer be found." "Usage: gitto purge Go through the list of registered repositories and remove all the ones which no longer point to a git repository." (set! repositories (filter repository-location-exists? repositories)) (save-repositories-list)) (define-command (push #:optional repository) "Push all or the specified repository to its default upstream." "Usage: gitto push [repository] Go through the list of registered repositories and push all the ones with changes to their default upstream. If REPOSITORY has been specified just try to push that repository regardless of status." (define (push-and-report repo) (if (git-push repo) (format #t "Succesfully pushed ~a~%" (repo-name repo)) (format #f "Pushing ~a failed~%" (repo-name repo)))) (if repository (let* ((repositories-by-name (repositories-by-name repository)) (results (length repositories-by-name)) (repo #f)) (when (> results 0) (set! repo (if (= results 1) (car repositories-by-name) (choose repositories-by-name "Push to which repository?" repo-location)))) (if (or (> results 0) (known? repository)) (push-and-report (or repo (make repository))) (format #t "Unknown repository: ~a~%" repository))) (for-each push-and-report repositories))) (define-command (remove repository) "Unregister a repository." "Usage: gitto remove REPO Removes REPO from the registered repository list. This command will fail if REPO does not indicate a git repository of if it hasn't been registered. REPO should either be the name of a repository as displayed by the `list' command, or should be a absolute or relative path to a registered location. In case REPO is just a name and there is more than one repository with that name you are given a choice between the possible options." (let ((results (repositories-by-name repository))) (if (null? results) (remove-repository-by-location repository) (remove-one-repository results)))) (define-command (version) "Display version information." "Usage: gitto version Displays version and some copyright information." (display "gitto 0.1.0") (newline) (display "Copyright (C) 2012 Tom Willemse") (newline) (display "This program comes with ABSOLUTELY NO WARRANTY.") (newline) (display "You may redistribute copies of this program") (newline) (display "under the terms of the GNU General Public License.") (newline) (display "For more information about these matters, see the file named COPYING.") (newline)) (define (main args) "Parse the command line options and run the appropriate functions." (load-rc) (let* ((command-spec (cdr (member "gitto" args string-suffix?))) (command-specified? (not (eq? command-spec '()))) (command (car (if command-specified? command-spec '("list"))))) (if (command? command) (apply (command-function command) (if command-specified? (cdr command-spec) '())) (format #t "Unknown command: ~a~%" (car command-spec)))))