Extension:LandingCheck

This page is a translated version of the page Extension:LandingCheck and the translation is 50% complete.
MediaWiki 拡張機能マニュアル
LandingCheck
リリースの状態: 安定
実装 特別ページ
説明 Send users to localized landing pages with fallback options
作者 Ryan Kaldari
最新バージョン 2.1
MediaWiki >= 1.42
ライセンス GNU 一般公衆利用許諾書 2.0 以降
ダウンロード
  • landing_page
  • language
  • country
  • utm_source
  • utm_medium
  • utm_campaign
Quarterly downloads 1 (Ranked 148th)
translatewiki.net で翻訳を利用できる場合は、LandingCheck 拡張機能の翻訳にご協力ください
問題点 未解決のタスク · バグを報告

LandingCheck makes using localized and geotargeted landing pages easy. It was created as a replacement for the GeoLite extension.

When called with a landing page name and a set of user-specific parameters, the extension checks to see if a version of the landing page exists for the user's language and country. If not, it looks for a version localized for the user's language. If that doesn't exist either, it looks for the English version. If any of those exist, it then redirects the user.

インストール

  • ダウンロードして、ファイルをextensions/フォルダー内のLandingCheckという名前のディレクトリ内に配置します。
    開発者とコード寄稿者は、上記の代わりに以下を使用してGitからインストールします:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/LandingCheck
  • 以下のコードを LocalSettings.php ファイルの末尾に追加します:
    wfLoadExtension( 'LandingCheck' );
    
  •   完了 – ウィキの「Special:Version」に移動して、拡張機能が正しくインストールされたことを確認します。


設定

Configuration settings in extension.json
パラメーター 既定 コメント
$wgPriorityCountries array() If there are any countries for which the country page should be the fallback rather than a language page, add its country code to this array.
$wgLandingCheckPriorityURLBase null It is possible to configure a separate server running LandingCheck to handle requests for priority countries and another for non-priority countries. By default, the local instance of LandingCheck will handle both unless these variables are configured. The URLs contained in these variables should be the full URL to the location of LandingCheck - the query string will be appended. For example:

$wgLandingCheckPriorityURLBase = '//wikimediafoundation.org/wiki/Special:LandingCheck';

$wgLandingCheckNormalURLBase null It is possible to configure a separate server running LandingCheck to handle requests for priority countries and another for non-priority countries. By default, the local instance of LandingCheck will handle both unless these variables are configured. The URLs contained in these variables should be the full URL to the location of LandingCheck - the query string will be appended. For example:

$wgLandingCheckNormalURLBase = '//wikimediafoundation.org/wiki/Special:LandingCheck';

動作の仕組み

GeoIP lookup: Normally LandingCheck does not perform a GeoIP lookup, but depends on the referring page to supply the user's country. If the country parameter is not supplied, the extension checks to see if the geoip_country_code_by_name() function exists (from the php5-geoip package), and if so, performs its own GeoIP lookup. (As of 2010, all Wikimedia page views perform a GeoIP lookup and record the user's country in the global JavaScript variable Geo.country.)

Language: LandingCheck looks for whatever landing pages correspond to the user's wgUserLanguage variable. If none exist, it tries to find landing pages in the corresponding fallback language. So, for example, if JimmyAppeal/pt-br doesn't exist, it looks for JimmyAppeal/pt, and then JimmyAppeal/en (English is the final fallback for all languages).

使用法

Set up landing pages

First, create a set of localized landing pages using the following naming scheme: <pagename>/<language>/<country>. For a fundraising campaign, you might set up the following pages:

  • JimmyAppeal/en - landing page localized to English
    • JimmyAppeal/en/US - landing page localized to English and customized for users in the United States
    • JimmyAppeal/en/GB - landing page localized to English and customized for users in the United Kingdom
    • JimmyAppeal/en/FR - landing page localized to English and customized for users in France
  • JimmyAppeal/fr - landing page localized to French
    • JimmyAppeal/fr/FR - landing page localized to French and customized for users in France
    • JimmyAppeal/fr/CA - landing page localized to French and customized for users in Canada

Create link

Next, set up a link that uses JavaScript to construct the LandingCheck URL with user-specific query string parameters.

jQuery example

<script type="text/javascript">
var cn_rewrite_url = function() {
  var baseUrl = 'http://wikimediafoundation.org/wiki/Special:LandingCheck';
  var queryString = jQuery.param({'landing_page':'JimmyAppeal', 'language':wgUserLanguage, 'country':Geo.country});
  jQuery("a.variable_lp").attr("href", baseUrl + '?' + queryString);
}
jQuery(document).ready(cn_rewrite_url);
</script>
<a class="variable_lp" href="">Read an Appeal by Jimmy Wales</a>

jQuery example with tracking

<script type="text/javascript">
var cn_rewrite_url = function() {
  var baseUrl = 'http://wikimediafoundation.org/wiki/Special:LandingCheck';
  var queryString = jQuery.param({'landing_page':'JimmyAppeal', 'language':wgUserLanguage, 'country':Geo.country, 'utm_source':'banner22', 'utm_medium':'sitenotice', 'utm_campaign':'2010fundraiser'});
  jQuery("a.variable_lp").attr("href", baseUrl + '?' + queryString);
}
jQuery(document).ready(cn_rewrite_url);
</script>
<a class="variable_lp" href="">Read an Appeal by Jimmy Wales</a>

non-jQuery example

<a href="#" onclick="window.location.href='http://wikimediafoundation.org/wiki/Special:LandingCheck?landing_page=JimmyAppeal&language='+wgUserLanguage+'&country='+Geo.country">Read an Appeal by Jimmy Wales</a>

Add more landing pages

As additional localized and geotargeted landing pages are created, users will automatically start being directed to them. Make sure that any new landing pages added after your link has gone live are ready to use immediately. If you need to build new localized or geotargeted landing pages gradually, build them under different names and then move them into place once they are complete.

Overrides for level-1 chapters

During the 2010 fundraiser the Wikimedia Foundation was required to send all traffic from chapter countries to chapter-specific landing pages even if they did not support the user's language. To facilitate this, an override mechanism was built into LandingCheck. Level 1 chapters were instructed to build their landing pages using the following naming scheme: <pagename>/<country>/language>. For example:

The country codes of the level 1 chapters were then added to the $wgPriorityCountries global variable.