forked from MoeweX/homebridge-octoprint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
executable file
·183 lines (160 loc) · 4.97 KB
/
index.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
var Service, Characteristic;
var axios = require("axios");
module.exports = function(homebridge) {
Service = homebridge.hap.Service;
Characteristic = homebridge.hap.Characteristic;
// registration of each accessory
homebridge.registerAccessory("homebridge-octoprint-plus", "OctoPrintPlus", OctoPrintPlus);
}
//**************************************************************************************************
// General Functions
//**************************************************************************************************
//**************************************************************************************************
// Bricklet Remote Switch
//**************************************************************************************************
function OctoPrintPlus(log, config) {
this.log = log;
// parse config
this.name = config["name"];
this.server = config["server"] || 'http://octopi.local';
this.apiKey = config["api_key"];
log.info("Initialized OctoPrint Plus Accessory at " + this.server);
}
OctoPrintPlus.prototype = {
getServices: function() {
var informationService = new Service.AccessoryInformation();
informationService
.setCharacteristic(Characteristic.Manufacturer, "Guy Sheffer and the Community")
.setCharacteristic(Characteristic.Model, "OctoPrint");
var controlService = new Service.Lightbulb();
controlService
.getCharacteristic(Characteristic.On)
.on('get', this.getPrintingState.bind(this))
.on('set', this.setPrintingState.bind(this));
controlService
.getCharacteristic(Characteristic.Brightness)
.on('get', this.getProgress.bind(this))
.on('set', this.setProgress.bind(this));
// set name
controlService.setCharacteristic(Characteristic.Name, this.name);
return [informationService, controlService];
},
// This function gets the current printing state (1 = printing, 0 = not printing)
getPrintingState(callback) {
this.log('Getting current printing state: GET ' + this.server + '/api/printer');
var options = {
method: 'GET',
uri: this.server + '/api/printer',
headers: {
"X-Api-Key": this.apiKey
},
json: true
};
axios.request(options).then(function(printState) {
var state = printState.state.flags.printing;
console.log("Printer is printing: " + state)
if (state == false) {
callback(null, 0);
} else {
callback(null, 1);
}
})
.catch(function(error) {
callback(error);
});
},
setPrintingState(value, callback) {
if (value == 1) {
console.log("Resuming print.");
var options = {
method: 'POST',
uri: this.server + '/api/job',
headers: {
"X-Api-Key": this.apiKey
},
body: {
"command": "resume"
},
json: true
};
axios.request(options).then(function(printState) {
console.log("Print resumed successfully.")
callback(null);
})
.catch(function(error) {
callback(error);
});
} else {
console.log("Pausing print.");
var options = {
method: 'POST',
uri: this.server + '/api/job',
headers: {
"X-Api-Key": this.apiKey
},
body: {
"command": "pause"
},
json: true
};
axios.request(options).then(function(printState) {
console.log("Print paused successfully.")
callback(null);
})
.catch(function(error) {
callback(error);
});
}
},
getProgress(callback) {
this.log('Getting current job data: GET ' + this.server + '/api/job');
var options = {
method: 'GET',
uri: this.server + '/api/job',
headers: {
"X-Api-Key": this.apiKey
},
json: true
};
axios.request(options).then(function(printState) {
var completion = printState.progress.completion;
if (completion == null) {
console.log("Printer currently not printing.")
callback(null, 0);
} else {
console.log("Current completion: " + JSON.stringify(completion));
completionInt = Math.round(parseFloat(completion));
callback(null, completionInt);
}
})
.catch(function(error) {
callback(error);
});
},
setProgress(value, callback) {
if (value === 100) {
console.log("Cancelling print.");
var options = {
method: 'POST',
uri: this.server + '/api/job',
headers: {
"X-Api-Key": this.apiKey
},
body: {
"command": "cancel"
},
json: true
};
axios.request(options).then(function(printState) {
console.log("Print cancelled successfully.")
callback(null);
})
.catch(function(error) {
callback(error);
});
} else {
console.log("Cannot set custom progress!");
callback(1);
}
}
}