This file is indexed.

/usr/share/tdiary/js/appstore.js is in tdiary-contrib 5.0.8-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
/*
 * appstore.js : embeded iTunes information
 *
 * Copyright (C) 2011 by tamoot <tamoot+tdiary@gmail.com>
 * You can distribute it under GPL.
 */

$( function() {

	function appstore_desc(text) {
		return jQuery('<span><span/>').addClass("amazon-price").text(text).append("<br>");
	};

	function appstore_detail(app_url, app_id, appstore_a) {
		var params = {
			output : 'json',
			id : app_id
		};
		
		var price = "$";
		if($('html').attr('lang') == 'ja-JP') {
			$.extend(params, {
				lang : 'ja_jp',
				country : 'JP'
			});
			price = "\\"
		};
		
		
		$.ajax({
			type : 'GET',
			url : 'http://ax.itunes.apple.com/WebObjects/MZStoreServices.woa/wa/wsLookup?',
			data : params,
			dataType : 'jsonp',
			//
			// callback on error..
			//
			error : function() {
				var itunes_a = jQuery('<a>').attr({
					target : "_blank",
					href : app_url
				}).addClass("amazon-detail");

				$(appstore_a).prepend(itunes_a);
			},
			//
			// append dom
			//
			success : function(data) {
				app = data["results"][0];
				
				if(app == null) {
					appstore_a.text('Search Error: ' + app_url);
					return
				};
				$(appstore_a).addClass("amazon-detail");
				
				var appstore_spand = jQuery('<span></span>').addClass("amazon-detail");
				$(appstore_a).append(appstore_spand);

				appstore_spand.prepend(jQuery('<img />').attr({
					src : app["artworkUrl100"],
					width : 128,
					height : 128
				}).addClass("amazon-detail").addClass("left"));

				var appstore_spandd = jQuery('<span></span>');
				appstore_spandd.addClass("amazon-detail-desc");
				appstore_spand.append(appstore_spandd);

				appstore_spandd.append(jQuery('<span><span/>').addClass("amazon-title").text(app["trackCensoredName"] + " "));
				appstore_spandd.append(appstore_desc(app["version"]));
				appstore_spandd.append(appstore_desc(app["releaseDate"]));
				appstore_spandd.append(appstore_desc(app["sellerName"]));
				appstore_spandd.append(appstore_desc(price + app["price"]));
				appstore_spandd.append(appstore_desc(app["supportedDevices"].join(', ')));
				appstore_spand.append('<br style="clear: left;">');
			}
		});
	};

	function appstore(target) {
		$('.appstore', target).each( function() {
			var appstore_url = $(this).attr('href');
			var appstore_id  = $(this).attr('data-appstoreid')
			appstore_detail(appstore_url, appstore_id, this);
		});
	};

	// for AutoPagerize
	$(window).on('AutoPagerize_DOMNodeInserted', function(event) {
		appstore(event.target);
	});
	
	// for AuthPatchWork
	// NOTE: jQuery.bind() cannot handle an event that include a dot charactor.
	// see http://todayspython.blogspot.com/2011/06/autopager-autopagerize.html
	if(window.addEventListener) {
		window.addEventListener('AutoPatchWork.DOMNodeInserted', function(event) {
			appstore(event.target);
		}, false);
	} else if(window.attachEvent) {
		window.attachEvent('onAutoPatchWork.DOMNodeInserted', function(event) {
			appstore(event.target);
		});
	};

	appstore(document);
});