appirio-tech/lc1-challenge-service

View on GitHub
api/models/file.js

Summary

Maintainability
B
4 hrs
Test Coverage
/**
 * Copyright (c) 2014 TopCoder, Inc. All rights reserved.
 */
/**
 * Represent File in the system.
 *
 * @version 1.0
 * @author peakpado
 */
'use strict';

/**
* Defining File model
*/
module.exports = function(sequelize, DataTypes) {
  var File = sequelize.define('File', {
    // primary key
    id: {
      type: DataTypes.BIGINT, primaryKey: true, autoIncrement: true,
      get: function() {
        return parseInt(this.getDataValue('id'));
      }
    },
    challengeId: {
      type: DataTypes.BIGINT,
      get: function() {
        return parseInt(this.getDataValue('challengeId'));
      }
    },
    submissionId: {
      type: DataTypes.BIGINT,
      get: function() {
        return parseInt(this.getDataValue('submissionId'));
      }
    },
    title : {type: DataTypes.TEXT},
    size : {
      type: DataTypes.BIGINT, allowNull: false,
      get: function() {
        return parseInt(this.getDataValue('size'));
      }
    },
    // file storage location
    storageLocation : {type: DataTypes.STRING(128), allowNull: false},
    fileUrl : {type: DataTypes.TEXT, allowNull: false},
    createdBy: {
      type: DataTypes.BIGINT,
      get: function() {
        return parseInt(this.getDataValue('createdBy'));
      }
    },
    updatedBy: {
      type: DataTypes.BIGINT,
      get: function() {
        return parseInt(this.getDataValue('updatedBy'));
      }
    }
  }, {
    tableName : 'files',
    associate : function(models) {
      File.belongsTo(models.Challenge, {foreignKey : 'challengeId'});
      File.belongsTo(models.Submission, {foreignKey : 'submissionId'});

    }
  });

  return File;

};