forked from alice0775/userChrome.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdownloadSoundPlay.uc.js
112 lines (103 loc) · 3.57 KB
/
downloadSoundPlay.uc.js
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
110
111
112
// ==UserScript==
// @name downloadSoundPlay.uc
// @namespace http://space.geocities.yahoo.co.jp/gl/alice0775
// @description ダウンロードマネージャー用のダウンロードを監視し音を鳴らす
// @include main
// @compatibility Firefox 3.0 more
// @author Alice0775
// @version 2009/11/28
// ==/UserScript==
var downloadPlaySound = {
// -- config --
DL_START : "",
DL_DONE : "file:///C:/WINDOWS/Media/chimes.wav",
DL_CANCEL: "",
DL_FAILED: "",
// -- config --
observerService: null,
init: function sampleDownload_init() {
//window.removeEventListener("load", this, false);
window.addEventListener("unload", this, false);
//**** ダウンロード監視の追加
this.observerService = Components.classes["@mozilla.org/observer-service;1"]
.getService(Components.interfaces.nsIObserverService);
this.observerService.addObserver(this, "dl-start", false);
this.observerService.addObserver(this, "dl-done", false);
this.observerService.addObserver(this, "dl-cancel", false);
this.observerService.addObserver(this, "dl-failed", false);
},
uninit: function() {
window.removeEventListener("unload", this, false);
this.observerService.removeObserver(this, "dl-start");
this.observerService.removeObserver(this, "dl-done");
this.observerService.removeObserver(this, "dl-cancel");
this.observerService.removeObserver(this, "dl-failed");
},
// ******************************
// DownloadObserver
// ******************************
observe: function (subject, topic, state) {
var oDownload = subject.QueryInterface(Components.interfaces.nsIDownload);
//**** ダウンロードファイルを持つオブジェクトを取得
var oFile = null;
try{
oFile = oDownload.targetFile; // New firefox 0.9+
} catch (e){
oFile = oDownload.target; // Old firefox 0.8
}
//**** ダウンロード開始イベント
if (topic == "dl-start"){
//alert('Start download to - '+oFile.path);
if (this.DL_START)
this.playSoundFile(this.DL_START);
}
//**** ダウンロードキャンセルイベント
if(topic == "dl-cancel"){
//alert('Canceled download to - '+oFile.path);
if (this.DL_CANCEL)
this.playSoundFile(this.DL_CANCEL);
}
//**** ダウンロード失敗
else if(topic == "dl-failed"){
//alert('Failed download to - '+oFile.path);
if (this.DL_FAILED)
this.playSoundFile(this.DL_FAILED);
}
//**** ダウンロード完了
else if(topic == "dl-done"){
//alert('Done download to - '+oFile.path);
if (this.DL_DONE)
this.playSoundFile(this.DL_DONE);
}
},
playSoundFile: function(aFilePath) {
var ios = Components.classes["@mozilla.org/network/io-service;1"]
.createInstance(Components.interfaces["nsIIOService"]);
try {
var uri = ios.newURI(aFilePath, "UTF-8", null);
} catch(e) {
return;
}
var file = uri.QueryInterface(Components.interfaces.nsIFileURL).file;
if (!file.exists())
return;
this.play(uri);
},
play: function(aUri) {
var sound = Components.classes["@mozilla.org/sound;1"]
.createInstance(Components.interfaces["nsISound"]);
sound.play(aUri);
},
handleEvent: function(event) {
switch (event.type) {
case "load":
this.init();
break;
case "unload":
this.uninit();
break;
}
}
}
//window.addEventListener("load", downloadPlaySound.init, false);
downloadPlaySound.init();