Merge pull request #2531 from riking/post-route
Fix /p/post/user route not saving referrals
This commit is contained in:
commit
c5cb126714
|
@ -314,7 +314,7 @@ class ApplicationController < ActionController::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def store_incoming_links
|
def store_incoming_links
|
||||||
IncomingLink.add(request,current_user) unless request.xhr?
|
IncomingLink.add(request, current_user) unless request.xhr?
|
||||||
end
|
end
|
||||||
|
|
||||||
def check_xhr
|
def check_xhr
|
||||||
|
|
|
@ -8,10 +8,17 @@ class PostsController < ApplicationController
|
||||||
before_filter :ensure_logged_in, except: [:show, :replies, :by_number, :short_link, :reply_history, :revisions, :expand_embed, :markdown, :raw, :cooked]
|
before_filter :ensure_logged_in, except: [:show, :replies, :by_number, :short_link, :reply_history, :revisions, :expand_embed, :markdown, :raw, :cooked]
|
||||||
|
|
||||||
skip_before_filter :store_incoming_links, only: [:short_link]
|
skip_before_filter :store_incoming_links, only: [:short_link]
|
||||||
skip_before_filter :check_xhr, only: [:markdown,:short_link]
|
skip_before_filter :check_xhr, only: [:markdown_id, :markdown_num, :short_link]
|
||||||
|
|
||||||
def markdown
|
def markdown_id
|
||||||
post = Post.find_by(topic_id: params[:topic_id].to_i, post_number: (params[:post_number] || 1).to_i)
|
markdown Post.find(params[:id].to_i)
|
||||||
|
end
|
||||||
|
|
||||||
|
def markdown_num
|
||||||
|
markdown Post.find_by(topic_id: params[:topic_id].to_i, post_number: (params[:post_number] || 1).to_i)
|
||||||
|
end
|
||||||
|
|
||||||
|
def markdown(post)
|
||||||
if post && guardian.can_see?(post)
|
if post && guardian.can_see?(post)
|
||||||
render text: post.raw, content_type: 'text/plain'
|
render text: post.raw, content_type: 'text/plain'
|
||||||
else
|
else
|
||||||
|
@ -26,7 +33,13 @@ class PostsController < ApplicationController
|
||||||
|
|
||||||
def short_link
|
def short_link
|
||||||
post = Post.find(params[:post_id].to_i)
|
post = Post.find(params[:post_id].to_i)
|
||||||
IncomingLink.add(request,current_user)
|
# Stuff the user in the request object, because that's what IncomingLink wants
|
||||||
|
if params[:user_id]
|
||||||
|
user = User.find(params[:user_id].to_i)
|
||||||
|
request['u'] = user.username_lower if user
|
||||||
|
end
|
||||||
|
IncomingLink.add(request, current_user)
|
||||||
|
|
||||||
redirect_to post.url
|
redirect_to post.url
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ class IncomingLink < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
if host != request.host && (user_id || referer)
|
if host != request.host && (user_id || referer)
|
||||||
cid = current_user.id if current_user
|
cid = current_user ? (current_user.id) : (nil)
|
||||||
unless cid && cid == user_id
|
unless cid && cid == user_id
|
||||||
IncomingLink.create(url: request.url,
|
IncomingLink.create(url: request.url,
|
||||||
referer: referer,
|
referer: referer,
|
||||||
|
|
|
@ -246,8 +246,6 @@ Discourse::Application.routes.draw do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
get "p/:post_id/:user_id" => "posts#short_link"
|
|
||||||
|
|
||||||
resources :notifications
|
resources :notifications
|
||||||
|
|
||||||
match "/auth/:provider/callback", to: "users/omniauth_callbacks#complete", via: [:get, :post]
|
match "/auth/:provider/callback", to: "users/omniauth_callbacks#complete", via: [:get, :post]
|
||||||
|
@ -365,9 +363,11 @@ Discourse::Application.routes.draw do
|
||||||
|
|
||||||
post "t/:topic_id/notifications" => "topics#set_notifications" , constraints: {topic_id: /\d+/}
|
post "t/:topic_id/notifications" => "topics#set_notifications" , constraints: {topic_id: /\d+/}
|
||||||
|
|
||||||
|
get "p/:post_id(/:user_id)" => "posts#short_link"
|
||||||
get "/posts/:id/cooked" => "posts#cooked"
|
get "/posts/:id/cooked" => "posts#cooked"
|
||||||
get "/posts/:id/expand-embed" => "posts#expand_embed"
|
get "/posts/:id/expand-embed" => "posts#expand_embed"
|
||||||
get "raw/:topic_id(/:post_number)" => "posts#markdown"
|
get "/posts/:id/raw" => "posts#markdown_id"
|
||||||
|
get "raw/:topic_id(/:post_number)" => "posts#markdown_num"
|
||||||
|
|
||||||
resources :invites do
|
resources :invites do
|
||||||
collection do
|
collection do
|
||||||
|
|
|
@ -49,10 +49,11 @@ describe PostsController do
|
||||||
|
|
||||||
describe 'short_link' do
|
describe 'short_link' do
|
||||||
let(:post) { Fabricate(:post) }
|
let(:post) { Fabricate(:post) }
|
||||||
|
let(:user) { Fabricate(:user) }
|
||||||
|
|
||||||
it 'logs the incoming link once' do
|
it 'logs the incoming link once' do
|
||||||
IncomingLink.expects(:add).once.returns(true)
|
IncomingLink.expects(:add).once.returns(true)
|
||||||
get :short_link, post_id: post.id, user_id: 999
|
get :short_link, post_id: post.id, user_id: user.id
|
||||||
response.should be_redirect
|
response.should be_redirect
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue