ツタヤ在庫一括表示
by
hotokediary
2018-11-29 [2018/11/29 12:40:03]
TSUTAYAの店頭在庫検索結果でこれを使うと表示されてる店舗の在庫を一括で取得し結果を表示します 連続取得は巡回速度1/(1+res)[page/s]にしてあるので取得に1秒かかる場合は20件40秒かかります 詳しい使い方の説明は https://1mu.info/texts/tsutayalet/
@@ -1,13 +1,11 @@
/*
* @title ツタヤ在庫一括表示
- * @description TSUTAYAの店頭在庫検索結果でこれを使うと表示されてる店舗の在庫を一括で取得し結果を表示します 巡回速度1/(0.5+res)[page/s]にしてあるので20件最短10秒かかります 詳しい使い方の説明は http://1mu.info/texts/tsutayalet/
+ * @description TSUTAYAの店頭在庫検索結果でこれを使うと表示されてる店舗の在庫を一括で取得し結果を表示します 連続取得は巡回速度1/(1+res)[page/s]にしてあるので取得に1秒かかる場合は20件40秒かかります 詳しい使い方の説明は http://1mu.info/texts/tsutayalet/
* @include
* @license
* @require jQuery
*/
-var wait = 500;
-
if (!location.href.indexOf('http://as.chizumaru.com/tsutaya/articleList?')) {
document.body.innerHTML = '<P>3秒後移動します。移動先でもう一度実行してください';
@@ -32,16 +30,19 @@
if (!window.tsutayaletIsProcessing)
return;
- if (!(
- (storeLinks.length && dispListArticle.contains(storeLinks[0])) ||
- (storeLinks = $('#DispListArticle table a.zaiko_btn').get())[0]
- )) {
- var nextPage = $('#DispListArticle span.next.last').get(0)
- if (nextPage) {
+ var nonstopProcessing = document.getElementById('nonstopProcessing').checked;
+
+ if (storeLinks.length && dispListArticle.contains(storeLinks[0])) {
+ if (storeLinks[0].className !== 'zaiko_btn')
+ return;
+ document.title = $('h1:first-child').text();
+ } else if (!(storeLinks = $('#DispListArticle table a.zaiko_btn').get())[0]) {
+ var nextPage;
+ if (nonstopProcessing && (nextPage = $('#DispListArticle span.next.last').get(0))) {
dispListArticle.parentNode.insertBefore($('#DispListArticle table').get(0), dispListArticle);
nextPage.parentNode.onclick();
} else {
- document.title = '取得完了 - ツタヤ在庫一括表示';
+ document.title = '取得完了 - ' + $('h1:first-child').text();
window.tsutayaletIsProcessing = false;
}
return;
@@ -54,11 +55,18 @@
type: 'GET',
url: link,
dataType: 'text',
- success: function(data){ t.nodeValue = (data.match(/在庫状況:<span>([^<]+)<\/span>/)||{1:'抽出失敗'})[1];},
+ success: function (data) {
+ t.nodeValue =
+ (data.match(/在庫状況:<span>([^<]+)<\/span>/) || {1 : '抽出失敗'})[1] +
+ (data.match(/レンタル返却予定日:\d+年\d+月\d+日/) || {0 : ''})[0];
+ var itemName;
+ if ($('h1:first-child span').get(0) && (itemName = (data.match(/<title>([^<]*)<\/title>/) || {})[1]))
+ $('h1:first-child').text(itemName);
+ },
error: function () { t.nodeValue = '取得失敗';},
complete: getStockInfo
});
- }, wait);
+ }, nonstopProcessing ? 1000 : 500);
};
if (window.tsutayaletIsProcessing === undefined) {
@@ -68,6 +76,9 @@
setTimeout(getStockInfo, 0);
return originalElementUpdate.apply(this, arguments);
};
+ $('h1:first-child').after(
+ '<p><input type="checkbox" id="nonstopProcessing" checked="checked"><label for="nonstopProcessing">連続取得</label></p>'
+ );
}
window.tsutayaletIsProcessing = true;
/*
* @title ツタヤ在庫一括表示
* @description TSUTAYAの店頭在庫検索結果でこれを使うと表示されてる店舗の在庫を一括で取得し結果を表示します 連続取得は巡回速度1/(1+res)[page/s]にしてあるので取得に1秒かかる場合は20件40秒かかります 詳しい使い方の説明は http://1mu.info/texts/tsutayalet/
* @include
* @license
* @require jQuery
*/
if (!location.href.indexOf('http://as.chizumaru.com/tsutaya/articleList?')) {
document.body.innerHTML = '<P>3秒後移動します。移動先でもう一度実行してください';
setTimeout(function() {
location.href = 'http://store-tsutaya.tsite.jp' + location.href.substr(23);
}, 3000);
} else if (!/^http:\/\/(?:store-tsutaya\.tsite\.jp|store\.tsutaya\.co\.jp)\/tsutaya\/articleList\?/.test(location.href)) {
if (confirm('TSUTAYAのページに移動しますか'))
location.href = 'http://store.tsutaya.co.jp/';
} else if (window.tsutayaletIsProcessing) {
window.tsutayaletIsProcessing = !confirm('取得を中止しますか');
} else {
var dispListArticle = document.getElementById('DispListArticle');
var storeLinks = [], getStockInfo = function () {
if (!window.tsutayaletIsProcessing)
return;
var nonstopProcessing = document.getElementById('nonstopProcessing').checked;
if (storeLinks.length && dispListArticle.contains(storeLinks[0])) {
if (storeLinks[0].className !== 'zaiko_btn')
return;
document.title = $('h1:first-child').text();
} else if (!(storeLinks = $('#DispListArticle table a.zaiko_btn').get())[0]) {
var nextPage;
if (nonstopProcessing && (nextPage = $('#DispListArticle span.next.last').get(0))) {
dispListArticle.parentNode.insertBefore($('#DispListArticle table').get(0), dispListArticle);
nextPage.parentNode.onclick();
} else {
document.title = '取得完了 - ' + $('h1:first-child').text();
window.tsutayaletIsProcessing = false;
}
return;
}
var link = storeLinks.shift(), t = link.parentNode.insertBefore(document.createTextNode('取得中...'), link);
link.className = '';
setTimeout(function () {
$.ajax({
type: 'GET',
url: link,
dataType: 'text',
success: function (data) {
t.nodeValue =
(data.match(/在庫状況:<span>([^<]+)<\/span>/) || {1 : '抽出失敗'})[1] +
(data.match(/レンタル返却予定日:\d+年\d+月\d+日/) || {0 : ''})[0];
var itemName;
if ($('h1:first-child span').get(0) && (itemName = (data.match(/<title>([^<]*)<\/title>/) || {})[1]))
$('h1:first-child').text(itemName);
},
error: function () { t.nodeValue = '取得失敗';},
complete: getStockInfo
});
}, nonstopProcessing ? 1000 : 500);
};
if (window.tsutayaletIsProcessing === undefined) {
var originalElementUpdate = Element_update;
window.Element_update = function (element) {
if (element && element.id === 'DispListArticle')
setTimeout(getStockInfo, 0);
return originalElementUpdate.apply(this, arguments);
};
$('h1:first-child').after(
'<p><input type="checkbox" id="nonstopProcessing" checked="checked"><label for="nonstopProcessing">連続取得</label></p>'
);
}
window.tsutayaletIsProcessing = true;
getStockInfo();
}
- Permalink
- このページへの個別リンクです。
- RAW
- 書かれたコードへの直接のリンクです。
- Packed
- 文字列が圧縮された書かれたコードへのリンクです。
- Userscript
- Greasemonkey 等で利用する場合の .user.js へのリンクです。
- Loader
- @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
- Metadata
- コード中にコメントで @xxx と書かれたメタデータの JSON です。