forked from technomancy/leiningen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclean.clj
More file actions
92 lines (83 loc) · 3.34 KB
/
Copy pathclean.clj
File metadata and controls
92 lines (83 loc) · 3.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
(ns leiningen.clean
"Remove all files from project's target-path."
(:require [clojure.java.io :as io]
[leiningen.core.utils :as utils])
(:import [java.io IOException]))
(defn real-directory?
"Returns true if this file is a real directory, false if it is a symlink or a
normal file."
[f]
(if (= :windows (utils/get-os))
(.isDirectory f)
(and (.isDirectory f)
(not (utils/symlink? f)))))
(defn delete-file-recursively
"Delete file f. If it's a directory, recursively delete all its contents.
Raise an exception if any deletion fails unless silently is true."
[f & [silently]]
(let [f (io/file f)]
(when (real-directory? f)
(doseq [child (.listFiles f)]
(delete-file-recursively child silently)))
(.setWritable f true)
(io/delete-file f silently)))
(defn- ancestor?
"Is a an ancestor of b?"
[a b]
(let [hypothetical-ancestor (.getCanonicalPath (io/file a))
hypothetical-descendant (.getCanonicalPath (io/file b))]
(and (.startsWith hypothetical-descendant hypothetical-ancestor)
(not (= hypothetical-descendant hypothetical-ancestor)))))
(defn- protected-paths
"Returns a set of leiningen project source directories and important files."
[project]
(let [root-dir (:root project)]
(->> [:source-paths :java-source-paths :test-paths :resource-paths]
(select-keys project)
vals
flatten
(cons (io/file root-dir "doc"))
(cons (io/file root-dir "project.clj"))
(map io/file)
(map #(.getCanonicalPath %))
set)))
(defn- protected-path?
"Is path one of the leiningen project files or directories (which we expect to
be version controlled), or a descendant?"
[project path]
(let [protected-paths (protected-paths project)]
(or (protected-paths (.getCanonicalPath (io/file path)))
(some #(ancestor? % path) protected-paths))))
(defn- protect-clean-targets?
"Returns the value of :protect in the metadata map for the :clean-targets
value."
[project]
(-> project :clean-targets meta (get :protect true)))
(defn- error-msg [pre]
(str pre " "
"Check :clean-targets or override this behavior by adding metadata -> "
":clean-targets ^{:protect false} [...targets...]"))
(defn- sanity-check
"Ensure that a clean-target string refers to a directory that is sensible to
delete."
[project clean-target]
(when (and (string? clean-target)
(protect-clean-targets? project))
(cond (not (ancestor? (:root project) clean-target))
(throw (IOException.
(error-msg
(format "Deleting a path outside of the project root [\"%s\"] is not allowed." clean-target))))
(protected-path? project clean-target)
(throw (IOException.
(error-msg
(format "Deleting non-target project paths [\"%s\"] is not allowed." clean-target)))))))
(defn clean
"Remove all files from paths in project's clean-targets."
[project]
(doseq [target-key (:clean-targets project)]
(when-let [target (cond (vector? target-key) (get-in project target-key)
(keyword? target-key) (target-key project)
(string? target-key) target-key)]
(doseq [f (flatten [target])]
(sanity-check project f)
(delete-file-recursively f :silently)))))