2014-11-17 14:23:59 +03:00
|
|
|
require "db/mongo/models/mongo_model"
|
|
|
|
|
|
2015-03-06 12:20:30 +03:00
|
|
|
module Devops
|
|
|
|
|
module Model
|
|
|
|
|
class Report < MongoModel
|
2014-11-17 14:23:59 +03:00
|
|
|
|
2015-03-06 12:20:30 +03:00
|
|
|
DEPLOY_TYPE = 1
|
|
|
|
|
SERVER_TYPE = 2
|
|
|
|
|
BOOTSTRAP_TYPE = 3
|
|
|
|
|
PROJECT_TEST_TYPE = 4
|
2014-11-17 14:23:59 +03:00
|
|
|
|
2015-03-06 12:20:30 +03:00
|
|
|
attr_accessor :id, :file, :created_at, :created_by, :project, :deploy_env, :type
|
2014-11-17 14:23:59 +03:00
|
|
|
|
2015-03-06 12:20:30 +03:00
|
|
|
def initialize r
|
|
|
|
|
self.id = r["_id"]
|
|
|
|
|
self.file = r["file"]
|
|
|
|
|
self.created_by = r["created_by"]
|
|
|
|
|
self.project = r["project"]
|
|
|
|
|
self.deploy_env = r["deploy_env"]
|
|
|
|
|
self.type = r["type"]
|
|
|
|
|
self.created_at = r["created_at"]
|
|
|
|
|
end
|
2014-11-17 14:23:59 +03:00
|
|
|
|
2015-03-06 12:20:30 +03:00
|
|
|
def to_hash_without_id
|
|
|
|
|
{
|
|
|
|
|
"file" => self.file,
|
|
|
|
|
"created_at" => self.created_at,
|
|
|
|
|
"created_by" => self.created_by,
|
|
|
|
|
"project" => self.project,
|
|
|
|
|
"deploy_env" => self.deploy_env,
|
|
|
|
|
"type" => self.type
|
|
|
|
|
}
|
|
|
|
|
end
|
2014-11-17 14:23:59 +03:00
|
|
|
|
2015-03-06 12:20:30 +03:00
|
|
|
end
|
|
|
|
|
end
|
2014-11-17 14:23:59 +03:00
|
|
|
end
|