Sha256: 33ac809856cf5c9446aaf0ba4e45188e47bc06e73e864c390c141ed9f2ec4289
Contents?: true
Size: 1.81 KB
Versions: 1
Compression:
Stored size: 1.81 KB
Contents
require_dependency "hubstats/application_controller" module Hubstats class DeploysController < ApplicationController def index #deploy_id = Hubstats::Deploy # .order_with_timespan(@timespan, "ASC") # .belonging_to_users(params[:users]) # .belonging_to_repos(params[:repo]) # .has_many_pull_requests(params[:pull_requests]) # .map(&:id) # sets to include user and repo, and sorts data @deploys = Hubstats::Deploy.includes(:repo) .order_with_timespan(@timespan, params[:order]) # .belonging_to_users(params[:users]).belonging_to_repos(params[:repos]) # .paginate(:page => params[:page], :per_page => 15).order("deployed_at DESC") if params[:group] == 'user' @groups = @deploys.to_a.group_by(&:user_name) elsif params[:group] == 'repo' @groups = @deploys.to_a.group_by(&:repo_name) else @groups = nil end end def show end def create if params[:deployed_by].nil? || params[:git_revision].nil? || params[:repo_name].nil? render text: "Missing a necessary parameter: deployer, git revision, or repository name.", :status => 400 and return else @deploy = Deploy.new @deploy.deployed_at = params[:deployed_at] @deploy.deployed_by = params[:deployed_by] @deploy.git_revision = params[:git_revision] @repo = Hubstats::Repo.where(full_name: params[:repo_name]) if @repo.empty? render text: "Repository name is invalid.", :status => 400 and return else @deploy.repo_id = @repo.first.id.to_i end if @deploy.save render :nothing =>true, :status => 200 and return else render :nothing => true, :status => 400 and return end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hubstats-0.3.1 | app/controllers/hubstats/deploys_controller.rb |