aboutsummaryrefslogtreecommitdiff
path: root/templater
blob: 03b1448ebdf23bfad742dc955f616d26ad9578d7 (plain)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
#!/bin/bash
#
# Setup a new code project.
#

# Parameters
PROGRAM="$0"
BASENAME="`basename $0`"
PROJECT="$1"
shift
MODULES="$*"
BOOTSTRAP="https://git.fluxo.info/puppet-bootstrap.git"
TEMPLATES="https://git.fluxo.info/templates.git"

# Read a parameter from user
function __templater_ask {
  local input
  local function="$1"
  local default="n"
  shift 2

  read -rep "Setup $function? (defaults to $default): " input

  if [ "$input" == "y" ]; then
    templater_$function
  fi
}

# Return list of implementations
function __templater_implementations {
  # Do not sort this list: the order in which functions are present in the code is important
  grep "^function templater_" $PROGRAM | cut -d ' ' -f 2 | sed -e 's/templater_//'
}

# Checkout to develop branch if available
function __templater_checkout_develop {
  (
    cd $PROJECT

    if git branch --list develop | grep -q develop; then
      git checkout develop
    fi
  )
}

# Initialize project
function __templater_init {
  if [ ! -d "$PROJECT" ]; then
    echo "Initializing $PROJECT..."
    mkdir -p $PROJECT
  fi
}

# Git implementation
function templater_git {
  if [ ! -d "$PROJECT/.git" ]; then
  (
    cd $PROJECT
    touch .gitignore

    echo "$PROJECT"                                     > README.md
    echo "=========`echo $PROJECT | sed -e 's|.|=|g'`" >> README.md
    echo ""                                            >> README.md
    echo "This is the $PROJECT repository."            >> README.md

    echo "TODO"                > TODO.md
    echo "===="               >> TODO.md
    echo ""                   >> TODO.md
    echo "* Nothing here? :P" >> TODO.md

    git init
    git add .
    git commit -m "Initial import"

    if which git-hooks &> /dev/null; then
      echo ""
      echo "Installing hooks..."
      git hooks --install
    fi
  )
  fi
}

# Setup git-flow implementation
function templater_gitflow {
  if ! grep -q '^\[gitflow' $PROJECT/.git/config; then
  (
    cd $PROJECT

    if ! git branch --list develop | grep -q develop; then
      git branch develop

      if [ -e "/usr/lib/git-core/git-flow" ]; then
        echo ""
        echo "Setting up git-flow..."
        git flow init -d
      fi
    fi
  )
  fi
}

# Vagrant implementation
function templater_vagrant {
  if [ ! -e "$PROJECT/Vagrantfile" ]; then
  (
    echo ""
    echo "Setting up vagrant implementation..."
    cd $PROJECT
    #__templater_checkout_develop
    vagrant init
    echo '.vagrant' >> .gitignore
    git commit -a -m "Adds vagrant support"
  )
  fi
}

# KVMX implementation
function templater_kvmx {
  if [ ! -e "$PROJECT/kvmxfile" ]; then
  (
    echo ""
    echo "Setting up vagrant implementation..."
    cd $PROJECT
    kvmx init
    git commit -a -m "Adds kvmx support"
  )
  fi
}

# Puppet implementation
function templater_puppet {
  if [ ! -d "$PROJECT/puppet" ]; then
  (
    echo ""
    echo "Setting up puppet implementation..."
    cd $PROJECT

    # Use the best approach
    #git clone $BOOSTRAP $PROJECT/puppet
    #git submodule add $BOOSTRAP puppet
    git remote add puppet $BOOTSTRAP
    git subtree add --prefix puppet $BOOTSTRAP master --squash
  )
  fi
}

# Ikiwiki implementation
function templater_ikiwiki {
  (
    if [ ! -d "$HOME/file/templates" ]; then
      echo "Please clone $TEMPLATES into $HOME/file/templates"
    else
      echo ""
      echo "Setting up ikiwiki implementation..."
      cd $PROJECT
      #__templater_checkout_develop

      if [ ! -e ".gitignore" ]; then
        cp $HOME/file/templates/ikiwiki/.gitignore .
      elif ! grep -q -f $HOME/file/templates/ikiwiki/.gitignore .gitignore; then
        cat $HOME/file/templates/ikiwiki/.gitignore >> .gitignore
      fi

      if [ ! -e "index.mdwn" ]; then
        cp $HOME/file/templates/ikiwiki/index.mdwn .
      fi

      if [ ! -e "ikiwiki.setup" ]; then
        cp $HOME/file/templates/ikiwiki/ikiwiki.setup .
      fi

      if [ ! -e "Makefile" ]; then
        cp $HOME/file/templates/ikiwiki/Makefile .
      elif ! grep -q ^wiki: Makefile; then
        grep -v '^#' $HOME/file/templates/ikiwiki/Makefile >> Makefile
      fi

      if [ ! -d "templates" ]; then
        cp -r $HOME/file/templates/ikiwiki/templates .
      fi

      if [ ! -d "bootstrap" ]; then
        cp -r $HOME/file/templates/ikiwiki/bootstrap .
      fi

      git add .
      git commit -a -m "Static site generation support using ikiwiki"
    fi
  )
}

# Sphinx implementation
function templater_sphinx {
  echo "TODO: sphinx"
  true
}

# Pelican implementation
function templater_pelican {
  echo "TODO: pelican"
  true
}

# Hugo implementation
function templater_hugo {
  echo "TODO: hugo"
  true
}

# Syntax check
if [ -z "$PROJECT" ]; then
  echo "$BASENAME: create a new project folder and/or setup helper utilities"
  echo ""
  echo "usage: $BASENAME <path> [<module1> ... <moduleN>]"
  echo "available modules:"
  echo ""
  __templater_implementations | xargs -L 6 | column -t -c 6 | sed -e 's/^/\t/'
  echo ""
  exit 1
fi

# Initialize
__templater_init

# Setup modules
if [ ! -z "$MODULES" ]; then
  for project in `__templater_implementations`; do
    __templater_ask $project
  done
else
  for module in $MODULES; do
    templater_$module
  done
fi

# Teardown
echo "Done processing the project :)"