class BidsController < ApplicationController before_filter :find_bid, :only => [:show, :show_project, :create, :destroy, :more, :back, :add] helper :watchers def index if params[:bid_title] Bid.creat_bids(params[:bid_budget], params[:bid_deadline], params[:bid_title] , params[:bid_description]) end # @requirement_title = "4" @offset = 0 @limit = 20 @bids = Bid.offset(@offset).limit(@limit).all end def show @state = false @user = @bid.author @jour = @bid.journals_for_messages @jour.each_with_index {|j,i| j.indice = i+1} # # @journals = @bid.journals.includes(:user, :details).reorder("#{Journal.table_name}.id ASC").all #@journals.each_with_index {|j,i| j.indice = i+1} respond_to do |format| format.html { render :layout => 'base_bids' } format.api end end def show_project @user = @bid.author @bidding_project = @bid.biding_projects respond_to do |format| format.html { render :layout => 'base_bids' } format.api end end def add project_id = params[:bid_for_save][:project_id] bid_message = params[:bid_for_save][:bid_message] BidingProject.cerate_bidding(@bid.id, project_id, bid_message) @bidding_project = @bid.biding_projects respond_to do |format| # format.html { redirect_to_referer_or {render :text => 'Watcher added.', :layout => true}} format.js #format.api { render_api_ok } end end def create if params[:user_message].size>0 message = params[:user_message] @bid.add_jour(User.current, message) # if a_message.size > 5 # @message = a_message[-5, 5] # else # @message = a_message # end # @message_count = a_message.count end @jour = @bid.journals_for_messages @jour.each_with_index {|j,i| j.indice = i+1} @bid.set_commit(@jour.count) respond_to do |format| # format.html { redirect_to_referer_or {render :text => 'Watcher added.', :layout => true}} format.js #format.api { render_api_ok } end end def destroy JournalsForMessage.delete_message(params[:object_id]) @jour = @bid.journals_for_messages @jour.each_with_index {|j,i| j.indice = i+1} @bid.set_commit(@jour.count) # if a_message.size > 5 # @message = a_message[-5, 5] # else # @message = a_message # end # @message_count = a_message.count respond_to do |format| format.html { redirect_to :back } format.js #format.api { render_api_ok } end end def new @jour = JournalsForMessage.find(params[:journal_id]) if params[:journal_id] if @jour user = @jour.user text = @jour.notes else user = @bid.author text = @bid.description end # Replaces pre blocks with [...] text = text.to_s.strip.gsub(%r{
((.|\s)*?)}m, '[...]') @content = "#{ll(Setting.default_language, :text_user_wrote, user)}\n> " @content << text.gsub(/(\r?\n|\r\n?)/, "\n> ") + "\n\n" rescue ActiveRecord::RecordNotFound render_404 end def new_bid end def more @jour = @bid.journals_for_messages @jour.each_with_index {|j,i| j.indice = i+1} @state = true respond_to do |format| format.html { redirect_to :back } format.js #format.api { render_api_ok } end end def back @jour = @bid.journals_for_messages @jour.each_with_index {|j,i| j.indice = i+1} @state = false respond_to do |format| format.html { redirect_to :back } format.js #format.api { render_api_ok } end end private def find_bid if params[:bid_id] @bid = Bid.find(params[:bid_id]) end rescue render_404 end end