ampersand/lib/generate-template.js

Maintainability

53.03

Lines of code

91

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 53.03

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 91

Difficulty

28.69

Estimated Errors

1.49

Function weight

By Complexity

Created with Raphaël 2.1.0module.exports14

By SLOC

Created with Raphaël 2.1.0module.exports79
1
var fs = require('fs');
2
var path = require('path');
3
var chalk = require('chalk');
4
var fsExtra = require('fs-extra');
5
var quit = require('./quit');
6
var stdin = require('./helpers/stdin');
7
var readFile = require('./readfilesync');
8
var processTemplate = require('./helpers/process-template');
9
var clean = require('./helpers/clean');
10
var genTypes = require('./gen-types');
11
 
12
 
13
module.exports = function (config) {
14
    var type = config._[1];
15
    var name = config._[2];
16
    var filePath;
17
    var folderPath;
18
    var file;
19
    var fileName;
20
 
21
    // allow names with js or not
22
    if (name && name.indexOf('.js') === -1) {
23
        fileName = name + '.js';
24
    } else {
25
        fileName = name;
26
    }
27
 
28
    if (type === 'router') {
29
        folderPath = path.join(config.approot, config.clientfolder);
30
        filePath = path.join(folderPath, (fileName || 'router.js'));
31
    } else if (type === 'model') {
32
        if (!name) quit('please specify a name: ampersand gen model ' + chalk.magenta('${your model name}'));
33
        folderPath = path.join(config.approot, config.clientfolder, config.modelfolder);
34
        filePath = path.join(folderPath, fileName);
35
    } else if (type === 'view') {
36
        if (!name) quit('please specify a name: ampersand gen view ' + chalk.magenta('${your view name}'));
37
        folderPath = path.join(config.approot, config.clientfolder, config.viewfolder);
38
        filePath = path.join(folderPath, fileName);
39
    } else if (type === 'page') {
40
        if (!name) quit('please specify a name: ampersand gen page ' + chalk.magenta('${your page name}'));
41
        folderPath = path.join(config.approot, config.clientfolder, config.pagefolder);
42
        filePath = path.join(folderPath, fileName);
43
    } else if (type === 'form') {
44
        if (!name) quit('please specify a path to the model: ampersand gen form ' + chalk.magenta('${path to model}'));
45
        folderPath = path.join(config.approot, config.clientfolder, config.formsfolder);
46
        filePath = path.join(folderPath, path.basename(fileName));
47
    }
48
 
49
    if (name) {
50
        config.folderPath = folderPath;
51
        config.relPath = path.relative(process.cwd(), filePath);
52
        if (!config.force && fs.existsSync(filePath)) return quit('file already exists at: ' +  chalk.magenta(config.relPath) + ' add ' + chalk.magenta('-f') + ' to force');
53
        stdin(function (input) {
54
            if (input) {
55
                config.data = input;
56
            }
57
            if (type === 'model') {
58
                config.name = name;
59
                genTypes.model(config, function (err, result) {
60
                    var modelFilePath = path.join(config.folderPath, result.modelFileName);
61
                    var collectionFilePath = path.join(config.folderPath, result.collectionFileName);
62
                    fsExtra.createFileSync(modelFilePath);
63
                    fs.writeFileSync(modelFilePath, clean(result.model, config), 'utf8');
64
                    console.log('\nnew ' + chalk.magenta('Model') + ' created as ' + chalk.magenta(path.relative(process.cwd(), modelFilePath)));
65
                    if (config.makecollection) {
66
                        fsExtra.createFileSync(collectionFilePath);
67
                        fs.writeFileSync(collectionFilePath, clean(result.collection, config), 'utf8');
68
                        console.log('new ' + chalk.magenta('Collection') + ' for ' + chalk.magenta(name) + ' created as ' + chalk.magenta(path.relative(process.cwd(), collectionFilePath)));
69
                    }
70
                    console.log('');
71
                    quit();
72
                });
73
            } else if (type === 'form') {
74
                genTypes.form({modelpath: name}, function (err, code) {
75
                    fsExtra.createFileSync(filePath);
76
                    fs.writeFileSync(filePath, clean(code, config), 'utf8');
77
                    quit('new ' + chalk.magenta('Form') + ' for ' + chalk.magenta(path.basename(fileName)) + ' created as ' + chalk.magenta(path.relative(process.cwd(), filePath)));
78
                });
79
            } else {
80
                file = readFile(config[type]);
81
                if (!file) return quit('no template file found at ' + config[type]);
82
                fsExtra.createFileSync(filePath);
83
                file = clean(processTemplate(file, config), config);
84
                fs.writeFileSync(filePath, file, 'utf8');
85
                quit('new ' + chalk.magenta(type) + ' created as ' + chalk.magenta(config.relPath), 0);
86
            }
87
        });
88
    } else {
89
        quit('no such command');
90
    }
91
};