1
0
ohmyform/app/models/form.server.model.js

183 lines
3.8 KiB
JavaScript
Raw Normal View History

2015-06-29 15:51:29 -07:00
'use strict';
/**
* Module dependencies.
*/
var mongoose = require('mongoose'),
FieldSchema = require('./form_field.server.model.js'),
Schema = mongoose.Schema,
pdfFiller = require('pdfFiller'),
_ = require('lodash'),
config = require('../../config/config'),
path = require('path'),
fs = require('fs-extra');
var Field = mongoose.model('Field', FieldSchema);
/**
* Form Schema
*/
var FormSchema = new Schema({
created: {
type: Date,
default: Date.now
},
// type: {
// type: String,
// default: 'template',
// enum: ['submission', 'template']
// },
title: {
type: String,
default: '',
trim: true,
unique: true,
required: 'Title cannot be blank'
},
description: {
type: String,
default: '',
},
form_fields: [Schema.Types.Mixed],
submission: [{
type: Schema.Types.ObjectId,
ref: 'FormSubmission'
}],
admin: {
type: Schema.Types.ObjectId,
ref: 'User'
},
pdf: {
type: Schema.Types.Mixed
},
pdfFieldMap: {
type: Schema.Types.Mixed
},
isGenerated: {
type: Boolean,
default: false,
},
autofillPDFs: {
type: Boolean,
default: false,
},
});
FormSchema.pre('save', function (next) {
// console.log(this.pdf);
// debugger;
//Move PDF to permanent location after first save
if(this.pdf){
if(this.pdf.modified){
var new_filename = this.pdf.title.trim()+'_template.pdf';
// TODO: DAVID - need to remove dependence on relative paths
var newDestination = path.join(config.pdfUploadPath+this.title+"/", this.pdf.title.trim()),
stat = null;
try {
stat = fs.statSync(newDestination);
} catch (err) {
fs.mkdirSync(newDestination);
}
if (stat && !stat.isDirectory()) {
console.log('Directory cannot be created');
next( new Error('Directory cannot be created because an inode of a different type exists at "' + config.pdfUploadPath + '"') );
}
console.log('about to move PDF');
fs.move(this.pdf.path, path.join(newDestination, new_filename), function (err) {
if (err) {
console.error(err);
next( new Error(err.message) );
}
console.log('PDF file successfully moved');
this.pdf.path = path.join(newDestination, new_filename);
this.pdf.name = new_filename;
next();
});
}
}else {
next();
}
});
// FormSchema.pre('save', function (next) {
// //Autogenerate FORM from PDF
// if(this.isGenerated && this.pdf && this.autofillPDFs){
// this.autofillPDFs = false;
// var _pdfConvMap = {
// 'Text': 'textfield',
// 'Button': 'checkbox'
// };
// var that = this;
// console.log('autogenerating form');
// try {
// pdfFiller.generateFieldJson(this.pdf.path, function(_form_fields){
// _form_fields.forEach(function(field){
// if(_pdfConvMap[ field.fieldType+'' ]){
// field.fieldType = _pdfConvMap[ field.fieldType+'' ];
// }
// field.created = Date.now();
// field.fieldValue = '';
// field.required = true;
// field.disabled = false;
// // field = new Field(field);
// // field.save()
// });
// // console.log('NEW FORM_FIELDS: ');
// // console.log(_form_fields);
// // console.log('\n\nOLD FORM_FIELDS: ');
// // console.log(that.form_fields);
// that.form_fields = _form_fields;
// next();
// });
// } catch(err){
// next( new Error(err.message) );
// }
// }
// //Throw error if we encounter form with invalid type
// next();
// });
FormSchema.methods.convertToJSON = function (cb) {
var _keys = _.pluck(this.form_fields, 'title'),
_values = _.pluck(this.form_fields, 'fieldValue');
_values.forEach(function(val){
if(val === true){
val = 'Yes';
}else if(val === false) {
val = 'Off';
}
});
var jsonObj = _.zipObject(_keys, _values);
return jsonObj;
};
mongoose.model('Form', FormSchema);