aka) Author: Christian Davén Version: 2.0 Author URI: http://www.daven.se/usefulstuff/ */ # adds an options page to the options menu function SUP_add_options_page() { if(function_exists("add_options_page")) add_options_page("Smart Update Pinger", "Smart Update Pinger", 5, basename(__FILE__), "SUP_show_options_page"); } # shows the options page function SUP_show_options_page() { $ping = get_option("SUP_ping"); $uris = get_option("ping_sites"); $pingservicesnow = "今すぐ ping を送信!"; if(isset($_POST["ping"]) && $_POST["ping"] == $pingservicesnow) { SUP_log("手動で ping を送信中 ..."); SUP_ping_services(); } elseif(isset($_POST["submit"])) { $uris = $_POST["uris"]; $ping = 0; if($_POST["ping"] == 1) $ping = 1; update_option("SUP_ping", $ping); update_option("ping_sites", $uris); echo '

設定を保存しました.

'; } $checked = ''; if($ping == 1) $checked = 'checked="checked"'; echo '

ping 送信先のサーバ

以下に登録されている ping サーバへは記事を投稿する際,自動的に ping 送信や更新通知がなされます。WordPress が通常行うような,以前書いた記事の編集時ではありません

注意: このリストは オリジナルのアップデートサービスリストと同期します。.

複数サーバを登録する際は改行で URI を分けて下さい

Ping 送信ログ

このプラグインのログです(下に行くほど新しいログです)

'.SUP_get_last_log_entries(20).'

'; } # telling WordPress to ping if the post is new, but not if it's just been edited function SUP_ping_if_new($id) { global $wpdb, $post_title; if(get_option('SUP_ping') == 1 and get_option('ping_sites') != "") { # fetches data directly from database; the function "get_post" is cached, # and using it here will get the post as is was before the last save $row = mysql_fetch_array(mysql_query( "SELECT post_date,post_modified FROM $wpdb->posts WHERE id=$id")); # if time when created equals time when modified it is a new post, # otherwise the author has edited/modified it if($row["post_date"] == $row["post_modified"]) { if($post_title) SUP_log("Pinging services (new post: “".$post_title."”) ..."); else SUP_log("Pinging services (新規の記事の投稿) ..."); SUP_ping_services(); # Try commenting the line above, and uncommenting this line below # if pinging seems to be out of order. Please notify the author if it helps! # generic_ping(); } else { if($post_title) SUP_log("NOT pinging services (“".$post_title."” の設定が変更されました)"); else SUP_log("NOT pinging services (記事が編集されました)"); } } else SUP_log("NOT pinging services (管理者が ping 送信を無効にしています)"); } # More or less a copy of WP's "generic_ping" from functions.php, # but uses another function to send the actual XML-RPC messages. function SUP_ping_services() { $services = get_settings('ping_sites'); $services = preg_replace("|(\s)+|", '$1', $services); // Kill dupe lines $services = trim($services); if ( '' != $services ) { $services = explode("\n", $services); foreach ($services as $service) SUP_send_xmlrpc($service); } } # A slightly modified version of the WordPress built-in ping functionality ("weblog_ping" in functions.php). # This one uses correct extendedPing format (WP does not), and logs response from service. function SUP_send_xmlrpc($server = '', $path = '') { global $wp_version; include_once (ABSPATH . WPINC . '/class-IXR.php'); // using a timeout of 3 seconds should be enough to cover slow servers $client = new IXR_Client($server, ((!strlen(trim($path)) || ('/' == $path)) ? false : $path)); $client->timeout = 3; $client->useragent .= ' -- WordPress/'.$wp_version; // when set to true, this outputs debug messages by itself $client->debug = false; $home = trailingslashit( get_option('home') ); # the extendedPing format should be "blog name", "blog url", "check url" (whatever that is), and "feed url", # but it would seem as if the standard has been mixed up. it's therefore best to repeat the feed url. if($client->query('weblogUpdates.extendedPing', get_settings('blogname'), $home, get_bloginfo('rss2_url'), get_bloginfo('rss2_url'))) { SUP_log("- ".$server." への ping 送信が成功しました (拡張フォーマット)"); } else { # pinging was unsuccessful, trying regular ping format if($client->query('weblogUpdates.ping', get_settings('blogname'), $home)) { SUP_log("- ".$server." への ping 送信が成功しました"); } else { SUP_log("- ".$server." への ping 送信が失敗しました。 以下のエラーメッセージが返されました: “".$client->error->message."”"); } } } $post_title = ""; # Receives the title of the post from a filter below function SUP_post_title($title) { global $post_title; $post_title = $title; return $title; } # ----- # Log stuff $logfile = ABSPATH."wp-content/smart-update-pinger.log"; # for debugging function SUP_log($line) { global $logfile; $fh = @fopen($logfile, "a"); @fwrite($fh, strftime("%D %T")."\t$line\n"); @fclose($fh); } function SUP_get_last_log_entries($num) { global $logfile; $lines = @file($logfile); if($lines === false) return "Error reading log file (".$logfile."). This could mean that the wp-content directory is write-protected and no log data can be saved, that you have manually removed the log file, or that you have recently upgraded the plugin."; else { $lines = array_slice($lines, count($lines) - $num); $msg = ""; foreach($lines as $line) $msg .= trim($line)."
"; return $msg; } } # ----- # adds a filter to receive the title of the post before publishing add_filter("title_save_pre", "SUP_post_title"); # adds some hooks # shows the options in the administration panel add_action("admin_menu", "SUP_add_options_page"); # calls SUP_ping whenever a post is published add_action("publish_post", "SUP_ping_if_new"); # calls SUP_ping_draft when changing the status from private/draft to published # add_action("private_to_published', 'SUP_ping_draft'); # removes the "WordPress official" pinging hook remove_action("publish_post", "generic_ping"); # activates pinging if setting doesn't exist in database yet # (before the user has changed the settings the first time) if(get_option("SUP_ping") === false) { update_option("SUP_ping", 1); } ?> KGS Analytics 仕様という名の不具合まとめ - かずひろのKGS囲碁日記

かずひろのKGS囲碁日記

RSS (新着記事をお知らせします)

ブログトップ / カテゴリ「Analytics」 / 記事「KGS Analytics 仕様という名の不具合まとめ」

2009年6月30日

KGS Analytics 仕様という名の不具合まとめ

カテゴリー: Analytics — かずひろ@KGS @ 00:16

KGSの成績集計ツールのKGS Analyticsですが、そこそこ使っていただいているようで。たまに使えてると声を掛けていただいてます。嬉しいです。

(非公式の勝手ツールです。念のため。)

要望なども頂いているのですが、諸般の事情で(主に面倒)なかなか対応できません。せめて現状どんな課題を認識しているかまとめておきます。

  • 本当に仕様です
    • 一度に一月分しかデータを取得しない: 元データがKGSサーバの一月単位のWEBページなのでこうなります
    • 連続して取得すると遅い: KGSサーバに負荷を掛けないように時間待ちをしています。このため、自動的に複数の月のデータを取得したりもしません
    • 30分毎にしかデータが更新されない(Google Gadgetは丸1日毎): これも負荷が理由。また、この時間は予告も報告もなく調整することがあります
    • たまに使えないときがある: 元々他の事の実験用に借りているサーバなので、えいやっとOSのアップグレード掛けたりしてます(リモートなのに…そこは気合いで)。そうすると大抵調整が必要になったりするのですが、必ずしもすぐには対応できません。KGSサーバ自身が駄目なときも結構あるしね。
    • 名前がおかしい: たまーにですが、ググる Analytics(検索よけ表記)目当てで迷い込んでくる人がいますね。すみません。
  • 直した方がいいよねぇ…
    • 時間表記が標準時: でも、日本なら深夜の対局がその日の結果として集計されるのでちょうどよくないですか? 駄目ですか。
    • 日単位でしか個別の対局結果を表示できない: 適当な対局数になるまで、指定日以降の結果も表示した方が便利ですね。最近一日一局ぐらいしか打たないのでそう思います。*1
    • Google Gadgetでどの表示をデフォルトにするか選択出来た方がよい: 選択を記憶してくれるように設定したつもりなのですが…動いてませんね。はい、確かに選択できた方がいいと思います。
    • ガジェットサイズが自動調整されない: Google Gadgetとして表示した場合にサイズが調整されないので少し見苦しいです(詳細→「KGS Analytics: ガジェット表示時の自動サイズ調整機能を外しました」)
  • 不具合…ですよね
    • 取得データに抜けた月がある場合、集計開始月の指定のリストボックスの選択肢がおかしい: これは完全にバグだけど…、まぁ抜けてる月のデータを取得し直したりしているうちに直ったりしますよ?

まだまだあった気もしますが、基本的には「集計したい」(右の表)、「勝敗色分けしないとわかんね」(カレンダ部分)というだけのツールなのでこんなもんでしょう。

内部的な都合をいいますと、一月分ごとに個別にファイルにデータを保存しているのですが、これが色んな問題の元凶になっています。例えば時間帯を設定できるようにしようとしても、月の区切りの近くの数時間分、前月または次月のデータが必要になったりしまして…、面倒くさい。根本的な解決法としては、月ごとに分けないでRDBにでもつっこんでおけば、他の面でも何かとすっきりします。と、思っちゃったせいで今の仕組みのまま修正を入れるのも何だし、そうかといって今更根本的に作り直すのもねぇ、という状況です。

ちなみに、英語(?)でも使えるように一応なっているので、日本時間固定でいいじゃないかというのは無しです。ブラウザ言語毎のアクセス数見た場合、日本語と日本語以外がちょうど半々ぐらいです(日本語以外の人はみんなEngrishページを見る仕掛けになっています)。

そもそもKGSサーバの方にアクセスを拒否られちゃったらそれまでの非公式ツールですので、だましだまし使っていただければと思います。上記には無い、明らかな不具合があれば出来るだけ対応しますのでご連絡ください。

*1:これは簡単だったので修正しました。指定日から20局分のデータを表示します。ただし月はまたぎません。やっつけ修正なので新たな不具合があるかも…

2件のコメント »

  1. 今日からKGSを始めました。こちらのWebツールも使わせて頂きます。
    どうぞよろしくお願いします。

    コメント by dancing_infobio — 2010年1月7日 @ 20:57

  2. こちらこそよろしくお願いします(長いこと気付かなくてすみません)。
    kazuhiro[2k]としてたまに英語部屋で打ってますので見かけたら声を掛けてください。

    コメント by かずひろ@KGS — 2010年4月14日 @ 17:52

コメントをどうぞ



トラックバックURL

http://www.gosquares.net/blog/20090630/001609.html/trackback

過去の記事を検索

かずひろのKGS囲碁日記 by kazuhiro@KGS <kazuhiro あっと gosquares.net> → この日記について

Powered by WordPress, Hyper Estraier