mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 01:33:24 +08:00
2f2da72747
Our 'page_view_crawler' / 'page_view_anon' metrics are based purely on the User Agent sent by clients. This means that 'badly behaved' bots which are imitating real user agents are counted towards 'anon' page views. This commit introduces a new method of tracking visitors. When an initial HTML request is made, we assume it is a 'non-browser' request (i.e. a bot). Then, once the JS application has booted, we notify the server to count it as a 'browser' request. This reliance on a JavaScript-capable browser matches up more closely to dedicated analytics systems like Google Analytics. Existing data collection and graphs are unchanged. Data collected via the new technique is available in a new 'experimental' report.
14 lines
345 B
Ruby
14 lines
345 B
Ruby
# frozen_string_literal: true
|
|
|
|
class PageviewController < ApplicationController
|
|
skip_before_action :check_xhr,
|
|
:redirect_to_login_if_required,
|
|
:preload_json,
|
|
:verify_authenticity_token
|
|
|
|
def index
|
|
# pageview tracking is handled by middleware
|
|
render plain: "ok"
|
|
end
|
|
end
|