Class: EricWeixin::Cms::Weixin::MediaNewsController
- Inherits:
-
BaseController
- Object
- BaseController
- EricWeixin::Cms::Weixin::MediaNewsController
- Defined in:
- app/controllers/eric_weixin/cms/weixin/media_news_controller.rb
Instance Method Summary collapse
- #index ⇒ Object
- #new ⇒ Object
- #preview ⇒ Object
- #query_media_articles ⇒ Object
- #query_weixin_users ⇒ Object
- #save_news ⇒ Object
- #send_news_now ⇒ Object
- #will_send_articles ⇒ Object
Instance Method Details
#index ⇒ Object
2 3 4 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 2 def index end |
#new ⇒ Object
6 7 8 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 6 def new end |
#preview ⇒ Object
127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 127 def preview begin if params[:media_news_id].blank? media_news = ::EricWeixin::MediaNews.save_news params.permit(:will_send_article_msg,:user_group_name, :send_at_fixed_time,:send_fixed_date, :send_fixed_time,:send_save_to_history,:public_account_id) media_news.preview params.permit(:preview_openid)[:preview_openid] render text: "#{media_news.id}" return else media_news = ::EricWeixin::MediaNews.find_by_id(params.permit(:media_news_id)[:media_news_id]) media_news.update_news params.permit(:will_send_article_msg,:user_group_name, :send_at_fixed_time,:send_fixed_date, :send_fixed_time,:send_save_to_history,:public_account_id) media_news.preview params.permit(:preview_openid)[:preview_openid] render text: "#{media_news.id}" end rescue Exception=>e dispose_exception e render text: "保存失败||预览失败:#{get_notice_str}" end end |
#query_media_articles ⇒ Object
10 11 12 13 14 15 16 17 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 10 def query_media_articles @media_articles = ::EricWeixin::MediaArticle.common_query params.permit(:tag, :start_date, :end_date, :public_account_id) @total_page = (@media_articles.count/4) + 1 page = params[:page] || 1 @media_articles = @media_articles.paginate(per_page: 4, page: page) @current_page = page.to_i render partial: 'select_article' end |
#query_weixin_users ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 19 def query_weixin_users begin BusinessException.raise '请指定微信公众号。' if params[:public_account_id].blank? = {} [:weixin_public_account_id] = params[:public_account_id] [:nickname] = params[:nickname] @weixin_users = ::EricWeixin::WeixinUser.where(weixin_public_account_id: params[:public_account_id]) @weixin_users = @weixin_users.where("nickname like ?", "%#{CGI::escape(params[:nickname])}%") unless params[:nickname].blank? render partial: 'select_user' rescue Exception=>e dispose_exception e render text: "查询失败:#{get_notice_str}" return end end |
#save_news ⇒ Object
99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 99 def save_news # will_send_article_msg: will_send_article_msg, # user_group_name: user_group_name, # send_at_fixed_time: send_at_fixed_time, # send_fixed_date: send_fixed_date, # send_fixed_time: send_fixed_time, # send_save_to_history: send_save_to_history # public_account_id begin if params[:media_news_id].blank? media_news = ::EricWeixin::MediaNews.save_news params.permit(:will_send_article_msg,:user_group_name, :send_at_fixed_time,:send_fixed_date, :send_fixed_time,:send_save_to_history,:public_account_id) render text: "#{media_news.id}" return else media_news = ::EricWeixin::MediaNews.find_by_id(params[:media_news_id]) media_news.update_news params.permit(:will_send_article_msg,:user_group_name, :send_at_fixed_time,:send_fixed_date, :send_fixed_time,:send_save_to_history,:public_account_id) render text: "#{media_news.id}" end rescue Exception=>e dispose_exception e render text: "保存失败: #{get_notice_str}" end end |
#send_news_now ⇒ Object
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 150 def send_news_now begin if params[:media_news_id].blank? media_news = ::EricWeixin::MediaNews.save_news params.permit(:will_send_article_msg,:user_group_name, :send_at_fixed_time,:send_fixed_date, :send_fixed_time,:send_save_to_history,:public_account_id) media_news.send_to_openids render text: "#{media_news.id}" return else media_news = ::EricWeixin::MediaNews.find_by_id(params[:media_news_id]) media_news.update_news params.permit(:will_send_article_msg,:user_group_name, :send_at_fixed_time,:send_fixed_date, :send_fixed_time,:send_save_to_history,:public_account_id) media_news.send_to_openids render text: "#{media_news.id}" end rescue Exception=>e dispose_exception e render text: "保存失败||立即发送失败:#{get_notice_str}" end end |
#will_send_articles ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 |
# File 'app/controllers/eric_weixin/cms/weixin/media_news_controller.rb', line 35 def will_send_articles articles = [] ids_msg = [] unless params[:existed_article_ids].blank? e_ids = params[:existed_article_ids].split(',') e_ids.each do |id| ma = ::EricWeixin::MediaArticle.find_by_id(id) articles << ma ids_msg << ma.id end end if params[:new_article_id].blank? # 处理调整顺序 unless params[:up_article_id].blank? index = ids_msg.index(params[:up_article_id].to_i) if index==0 render text: 'top' return else tmp_article = articles[index] articles[index] = articles[index-1] articles[index-1] = tmp_article tmp_id = ids_msg[index] ids_msg[index] = ids_msg[index-1] ids_msg[index-1] = tmp_id end else unless params[:down_article_id].blank? index = ids_msg.index(params[:down_article_id].to_i) if index==ids_msg.size-1 render text: 'bottom' return else tmp_article = articles[index] articles[index] = articles[index+1] articles[index+1] = tmp_article tmp_id = ids_msg[index] ids_msg[index] = ids_msg[index+1] ids_msg[index+1] = tmp_id end end end else # 处理新增文章 if ids_msg.include? params[:new_article_id].to_i # 文章已经存在 render text: 'existed' return else nma = ::EricWeixin::MediaArticle.find_by_id(params[:new_article_id]) articles << nma ids_msg << nma.id end end @will_send_articles = articles @will_send_article_msg = ids_msg.join(",") render partial: 'will_send_article' end |