aboutsummaryrefslogtreecommitdiff
path: root/templater
blob: 402af36e848853b3822701745e1baca858b41444 (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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
#!/bin/bash
#
# Setup a new code project.
#

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

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

# 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_//'
}

# Message
function __templater_echo {
  #echo ""
  echo "-> $*"
}

# Checkout to develop branch if available
function __templater_checkout_develop {
  if git branch --list develop | grep -q develop; then
    git checkout develop
  fi
}

# Copy or append source file into destination
function __templater_copy_or_append {
  local implementation="$1"
  local file="$2"

  if [ -z "$file" ]; then
    return
  fi

  if [ ! -e "$file" ]; then
    cp $DIRNAME/share/$implementation/$file .
  elif ! grep -q -f $DIRNAME/share/$implmenentation/$file $file; then
    cat $DIRNAME/share/$implementation/$file >> $file
  fi
}

# Basic implementation
function templater_basic {
  if [ ! -e "README.md" ]; then
    echo "$PROJECT"                           > README.md
    basename $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

    touch ChangeLog
  else
    __templater_echo "Basic files already set"
  fi
}

# Git implementation
function templater_git {
  if [ ! -d ".git" ]; then
    __templater_echo "Setting up git..."
    touch .gitignore

    git init
    git add .
    #git commit -m "Initial import"
  else
    __templater_echo "Git already set"
  fi
}

# Git hooks implementation
function templater_githooks {
  # TODO: check if githooks are already set
  if [ -d ".git" ]; then
    if which git-hooks &> /dev/null; then
      __templater_echo "Setting up git-hooks..."
      git hooks --install
    fi
  else
    __templater_echo "Git hooks already set"
  fi
}

# Setup git-flow implementation
function templater_gitflow {
  if ! grep -q '^\[gitflow' .git/config; then
    if ! git branch --list develop | grep -q develop; then
      __templater_echo "Setting up git-flow..."

      git branch develop

      if [ -e "/usr/lib/git-core/git-flow" ]; then
        echo ""
        __templater_echo "Setting up git-flow..."
        git flow init -d
      fi
    fi
  else
    __templater_echo "Git flow already set"
  fi
}

# Vagrant implementation
function templater_vagrant {
  if [ ! -e "Vagrantfile" ]; then
    __templater_echo "Setting up vagrant..."
    #__templater_checkout_develop
    vagrant init
    echo '.vagrant' >> .gitignore
    #git commit -a -m "Adds vagrant support"
  else
    __templater_echo "Vagrant already set"
  fi
}

# KVMX implementation
function templater_kvmx {
  if [ ! -e "kvmxfile" ]; then
    __templater_echo "Setting up kvmx..."
    kvmx init
    #git commit -a -m "Adds kvmx support"
  else
    __templater_echo "KVMX already set"
  fi
}

# Puppet implementation
function templater_puppet {
  if [ ! -d "puppet" ]; then
    __templater_echo "Setting up puppet..."

    if [ ! -d '.git' ]; then
      __templater_echo "Error: puppet needs a working git setup, skipping"
      return
    fi

    if [ "`git status -s | wc -l`" != 0 ]; then
      __templater_echo "Please commit changes before running setting up puppet"
      return
    fi

    # Use the best approach
    #git clone $BOOSTRAP puppet
    #git submodule add $BOOSTRAP puppet
    git remote add puppet $BOOTSTRAP
    git subtree add --prefix puppet $BOOTSTRAP master --squash
  else
    __templater_echo "Puppet already set"
  fi
}

# Ikiwiki implementation
function templater_ikiwiki {
  if [ ! -e "ikiwiki.yaml" ]; then
    __templater_echo "Setting up ikiwiki..."

    #__templater_checkout_develop
    __templater_copy_or_append ikiwiki .gitignore

    #if [ ! -e "index.md" ]; then
    #  cp $DIRNAME/share/ikiwiki/index.md .
    #fi
    cp $DIRNAME/share/ikiwiki/index.md .

    if [ ! -e "ikiwiki.yaml" ]; then
      cp $DIRNAME/share/ikiwiki/ikiwiki.yaml.
    fi

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

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

    if [ ! -d "bootstrap" ]; then
      cp -r $DIRNAME/share/ikiwiki/bootstrap .
    fi

    #if [ -d ".git" ]; then
    #  git add .
    #  git commit -a -m "Static site generation support using ikiwiki"
    #fi
  else
    __templater_echo "Ikiwiki already set"
  fi
}

# Sphinx implementation
function templater_sphinx {
  if [ ! -e "conf.py" ]; then
    __templater_echo "Setting up sphinx..."

    #__templater_checkout_develop
    __templater_copy_or_append sphinx .gitignore

    cp $DIRNAME/share/sphinx/conf.py .

    if [ ! -e "Makefile" ]; then
      cp $DIRNAME/share/sphinx/Makefile .
    #elif ! grep -q sphinx Makefile; then
    #  grep -v '^#' $DIRNAME/share/sphinx/Makefile >> Makefile
    else
      cp $DIRNAME/share/ikiwiki/Makefile Makefile.sphinx
    fi

    if [ ! -d "_static" ]; then
      cp -r $DIRNAME/share/sphinx/_static .
    fi

    if [ ! -d "_themes" ]; then
      mkdir _themes
      git submodule add https://github.com/snide/sphinx_rtd_theme _themes/sphinx_rtd_theme
    fi
  else
    __templater_echo "Sphinx already set"
  fi
}

# Pelican implementation
function templater_pelican {
  if [ ! -e "pelicanconf.py" ]; then
    __templater_echo "Setting up pelican..."

    #__templater_checkout_develop
    __templater_copy_or_append pelican .gitignore

    cp $DIRNAME/share/sphinx/pelicanconf.py .

    if [ ! -e "Makefile" ]; then
      cp $DIRNAME/share/pelican/Makefile .
    #elif ! grep -q pelican Makefile; then
    #  grep -v '^#' $DIRNAME/share/pelican/Makefile >> Makefile
    else
      cp $DIRNAME/share/ikiwiki/Makefile Makefile.pelican
    fi

    if [ ! -d "content" ]; then
      cp -r $DIRNAME/share/pelican/content .
    fi
  else
    __templater_echo "Pelican already set"
  fi
}

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

# Jekyll implementation
function templater_jekyll {
  echo "TODO: jekyll"
  true
}

# Drupal7 implementation
function templater_drupal7 {
  if [ ! -e 'settings.dev.php' ]; then
    __templater_echo "Setting up Drupal 7..."

    #if [ ! -e "Makefile" ]; then
    #  cp $DIRNAME/share/drupal7/Makefile .
    ##elif ! grep -q ^drupal: Makefile; then
    ##  grep -v '^#' $DIRNAME/share/drupal7/Makefile >> Makefile
    #else
    #  cp $DIRNAME/share/drupal7/Makefile Makefile.drupal7
    #fi

    if [ ! -e "drupal.make.yml" ]; then
      cp $DIRNAME/share/drupal7/drupal.make.yml .
    fi

    mkdir -p files themes modules libraries
    mkdir -p vendor
  else
    __templater_echo "Drupal already set"
  fi
}

# Drupal8 implementation
function templater_drupal8 {
  if [ ! -e 'settings.dev.php' ]; then
    __templater_echo "Setting up Drupal 8..."

    if [ ! -e "Makefile" ]; then
      cp $DIRNAME/share/drupal8/Makefile .
    #elif ! grep -q ^drupal: Makefile; then
    #  grep -v '^#' $DIRNAME/share/drupal8/Makefile >> Makefile
    else
      cp $DIRNAME/share/drupal8/Makefile Makefile.drupal8
    fi

    if [ ! -e "drupal.make.yml" ]; then
      cp $DIRNAME/share/drupal8/drupal.make.yml .
    fi

    mkdir -p files config themes modules libraries
    mkdir -p vendor
  else
    __templater_echo "Drupal already set"
  fi
}

# 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 ""
  echo "examples":
  echo ""
  echo -e "\t templater myproject git ikiwiki # adds git and ikiwiki config into myproject"
  echo -e "\t templater . pelican             # add pelican config into the current folder"
  echo ""
  echo "available modules:"
  echo ""
  __templater_implementations | xargs -L 6 | column -t -c 6 | sed -e 's/^/\t/'
  echo ""
  exit 1
fi

# Initialize
__templater_init

# Go to project folder
cd $PROJECT &> /dev/null

# 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
cd $CWD
__templater_echo "Done processing the project :)"