2017-09-04 02:20:56 +00:00
|
|
|
import $ from 'jquery';
|
2017-09-21 02:05:00 +00:00
|
|
|
import 'signalr';
|
2017-09-04 02:20:56 +00:00
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import { Component } from 'react';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { createSelector } from 'reselect';
|
2017-10-07 06:47:28 +00:00
|
|
|
import { repopulatePage } from 'Utilities/pagePopulator';
|
2017-09-04 02:20:56 +00:00
|
|
|
import { updateCommand, finishCommand } from 'Store/Actions/commandActions';
|
|
|
|
import { setAppValue, setVersion } from 'Store/Actions/appActions';
|
|
|
|
import { update, updateItem, removeItem } from 'Store/Actions/baseActions';
|
|
|
|
import { fetchHealth } from 'Store/Actions/systemActions';
|
|
|
|
import { fetchQueue, fetchQueueDetails } from 'Store/Actions/queueActions';
|
|
|
|
|
|
|
|
function getState(status) {
|
|
|
|
switch (status) {
|
|
|
|
case 0:
|
|
|
|
return 'connecting';
|
|
|
|
case 1:
|
|
|
|
return 'connected';
|
|
|
|
case 2:
|
|
|
|
return 'reconnecting';
|
|
|
|
case 4:
|
|
|
|
return 'disconnected';
|
|
|
|
default:
|
|
|
|
throw new Error(`invalid status ${status}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createMapStateToProps() {
|
|
|
|
return createSelector(
|
|
|
|
(state) => state.app.isReconnecting,
|
2017-10-07 06:47:28 +00:00
|
|
|
(state) => state.app.isDisconnected,
|
2017-09-04 02:20:56 +00:00
|
|
|
(state) => state.queue.paged.isPopulated,
|
2017-10-07 06:47:28 +00:00
|
|
|
(isReconnecting, isDisconnected, isQueuePopulated) => {
|
2017-09-04 02:20:56 +00:00
|
|
|
return {
|
|
|
|
isReconnecting,
|
2017-10-07 06:47:28 +00:00
|
|
|
isDisconnected,
|
2017-09-04 02:20:56 +00:00
|
|
|
isQueuePopulated
|
|
|
|
};
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const mapDispatchToProps = {
|
|
|
|
updateCommand,
|
|
|
|
finishCommand,
|
|
|
|
setAppValue,
|
|
|
|
setVersion,
|
|
|
|
update,
|
|
|
|
updateItem,
|
|
|
|
removeItem,
|
|
|
|
fetchHealth,
|
|
|
|
fetchQueue,
|
|
|
|
fetchQueueDetails
|
|
|
|
};
|
|
|
|
|
|
|
|
class SignalRConnector extends Component {
|
|
|
|
|
|
|
|
//
|
|
|
|
// Lifecycle
|
|
|
|
|
|
|
|
constructor(props, context) {
|
|
|
|
super(props, context);
|
|
|
|
|
2017-09-21 02:05:00 +00:00
|
|
|
this.signalRconnectionOptions = { transport: ['webSockets', 'longPolling'] };
|
2017-09-04 02:20:56 +00:00
|
|
|
this.signalRconnection = null;
|
|
|
|
this.retryInterval = 5;
|
|
|
|
this.retryTimeoutId = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
|
console.log('starting signalR');
|
|
|
|
|
|
|
|
this.signalRconnection = $.connection('/signalr', { apiKey: window.Sonarr.apiKey });
|
|
|
|
|
|
|
|
this.signalRconnection.stateChanged(this.onStateChanged);
|
|
|
|
this.signalRconnection.received(this.onReceived);
|
|
|
|
this.signalRconnection.reconnecting(this.onReconnecting);
|
|
|
|
this.signalRconnection.disconnected(this.onDisconnected);
|
|
|
|
|
|
|
|
this.signalRconnection.start(this.signalRconnectionOptions);
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount() {
|
|
|
|
this.signalRconnection.stop();
|
|
|
|
this.signalRconnection = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Control
|
|
|
|
|
|
|
|
retryConnection = () => {
|
|
|
|
this.retryTimeoutId = setTimeout(() => {
|
|
|
|
this.signalRconnection.start(this.signalRconnectionOptions);
|
|
|
|
this.retryInterval = Math.min(this.retryInterval + 5, 30);
|
|
|
|
}, this.retryInterval * 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleMessage = (message) => {
|
|
|
|
const {
|
|
|
|
name,
|
|
|
|
body
|
|
|
|
} = message;
|
|
|
|
|
|
|
|
if (name === 'calendar') {
|
|
|
|
this.handleCalendar(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'command') {
|
|
|
|
this.handleCommand(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'episode') {
|
|
|
|
this.handleEpisode(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-24 05:10:24 +00:00
|
|
|
if (name === 'track') {
|
|
|
|
this.handleTrack(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-09-04 02:20:56 +00:00
|
|
|
if (name === 'episodefile') {
|
2017-09-25 02:58:13 +00:00
|
|
|
this.handleTrackFile(body);
|
2017-09-04 02:20:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'health') {
|
|
|
|
this.handleHealth(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'series') {
|
|
|
|
this.handleSeries(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'queue') {
|
|
|
|
this.handleQueue(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'queue/details') {
|
|
|
|
this.handleQueueDetails(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'queue/status') {
|
|
|
|
this.handleQueueStatus(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'version') {
|
|
|
|
this.handleVersion(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'wanted/cutoff') {
|
|
|
|
this.handleWantedCutoff(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (name === 'wanted/missing') {
|
|
|
|
this.handleWantedMissing(body);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCalendar = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.updateItem({
|
|
|
|
section: 'calendar',
|
|
|
|
updateOnly: true,
|
2017-10-07 06:47:28 +00:00
|
|
|
...body.resource
|
|
|
|
});
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommand = (body) => {
|
|
|
|
const resource = body.resource;
|
|
|
|
const state = resource.state;
|
|
|
|
|
2017-09-17 20:39:13 +00:00
|
|
|
// Both sucessful and failed commands need to be
|
|
|
|
// completed, otherwise they spin until they timeout.
|
|
|
|
|
|
|
|
if (state === 'completed' || state === 'failed') {
|
2017-09-04 02:20:56 +00:00
|
|
|
this.props.finishCommand(resource);
|
|
|
|
} else {
|
|
|
|
this.props.updateCommand(resource);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleEpisode = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.updateItem({
|
|
|
|
section: 'episodes',
|
|
|
|
updateOnly: true,
|
2017-10-07 06:47:28 +00:00
|
|
|
...body.resource
|
|
|
|
});
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-24 05:10:24 +00:00
|
|
|
handleTrack = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.updateItem({
|
|
|
|
section: 'tracks',
|
|
|
|
updateOnly: true,
|
2017-10-07 06:47:28 +00:00
|
|
|
...body.resource
|
|
|
|
});
|
2017-09-24 05:10:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-25 02:58:13 +00:00
|
|
|
handleTrackFile = (body) => {
|
2017-09-04 02:20:56 +00:00
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.updateItem({
|
2017-09-25 02:58:13 +00:00
|
|
|
section: 'trackFiles',
|
2017-10-07 06:47:28 +00:00
|
|
|
...body.resource
|
|
|
|
});
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleHealth = (body) => {
|
|
|
|
this.props.fetchHealth();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleSeries = (body) => {
|
|
|
|
const action = body.action;
|
|
|
|
const section = 'series';
|
|
|
|
|
|
|
|
if (action === 'updated') {
|
|
|
|
this.props.updateItem({ section, ...body.resource });
|
|
|
|
} else if (action === 'deleted') {
|
|
|
|
this.props.removeItem({ section, id: body.resource.id });
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleQueue = (body) => {
|
|
|
|
if (this.props.isQueuePopulated) {
|
|
|
|
this.props.fetchQueue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleQueueDetails = (body) => {
|
|
|
|
this.props.fetchQueueDetails();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleQueueStatus = (body) => {
|
|
|
|
this.props.update({ section: 'queueStatus', data: body.resource });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleVersion = (body) => {
|
2017-09-21 02:05:00 +00:00
|
|
|
const version = body.Version;
|
2017-09-04 02:20:56 +00:00
|
|
|
|
|
|
|
this.props.setVersion({ version });
|
|
|
|
}
|
|
|
|
|
|
|
|
handleWantedCutoff = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.updateItem({
|
|
|
|
section: 'cutoffUnmet',
|
|
|
|
updateOnly: true,
|
2017-10-07 06:47:28 +00:00
|
|
|
...body.resource
|
|
|
|
});
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
handleWantedMissing = (body) => {
|
|
|
|
if (body.action === 'updated') {
|
|
|
|
this.props.updateItem({
|
|
|
|
section: 'missing',
|
|
|
|
updateOnly: true,
|
2017-10-07 06:47:28 +00:00
|
|
|
...body.resource
|
|
|
|
});
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Listeners
|
|
|
|
|
|
|
|
onStateChanged = (change) => {
|
|
|
|
const state = getState(change.newState);
|
|
|
|
console.log(`SignalR: [${state}]`);
|
|
|
|
|
|
|
|
if (state === 'connected') {
|
2017-10-07 06:47:28 +00:00
|
|
|
// Repopulate the page (if a repopulator is set) to ensure things
|
|
|
|
// are in sync after reconnecting.
|
|
|
|
|
|
|
|
if (this.props.isReconnecting || this.props.isDisconnected) {
|
|
|
|
repopulatePage();
|
|
|
|
}
|
|
|
|
|
2017-09-04 02:20:56 +00:00
|
|
|
this.props.setAppValue({
|
|
|
|
isConnected: true,
|
|
|
|
isReconnecting: false,
|
|
|
|
isDisconnected: false
|
|
|
|
});
|
|
|
|
|
|
|
|
this.retryInterval = 5;
|
|
|
|
|
|
|
|
if (this.retryTimeoutId) {
|
|
|
|
clearTimeout(this.retryTimeoutId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onReceived = (message) => {
|
|
|
|
console.debug('SignalR: received', message.name, message.body);
|
|
|
|
|
|
|
|
this.handleMessage(message);
|
|
|
|
}
|
|
|
|
|
|
|
|
onReconnecting = () => {
|
|
|
|
if (window.Sonarr.unloading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.setAppValue({
|
|
|
|
isReconnecting: true
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
onDisconnected = () => {
|
2017-10-02 03:05:28 +00:00
|
|
|
if (window.Sonarr.unloading) {
|
|
|
|
return;
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
2017-10-02 03:05:28 +00:00
|
|
|
|
|
|
|
this.props.setAppValue({
|
|
|
|
isConnected: false,
|
|
|
|
isReconnecting: true,
|
|
|
|
isDisconnected: true
|
|
|
|
});
|
|
|
|
|
|
|
|
this.retryConnection();
|
2017-09-04 02:20:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//
|
|
|
|
// Render
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
SignalRConnector.propTypes = {
|
|
|
|
isReconnecting: PropTypes.bool.isRequired,
|
2017-10-07 06:47:28 +00:00
|
|
|
isDisconnected: PropTypes.bool.isRequired,
|
2017-09-04 02:20:56 +00:00
|
|
|
isQueuePopulated: PropTypes.bool.isRequired,
|
|
|
|
updateCommand: PropTypes.func.isRequired,
|
|
|
|
finishCommand: PropTypes.func.isRequired,
|
|
|
|
setAppValue: PropTypes.func.isRequired,
|
|
|
|
setVersion: PropTypes.func.isRequired,
|
|
|
|
update: PropTypes.func.isRequired,
|
|
|
|
updateItem: PropTypes.func.isRequired,
|
|
|
|
removeItem: PropTypes.func.isRequired,
|
|
|
|
fetchHealth: PropTypes.func.isRequired,
|
|
|
|
fetchQueue: PropTypes.func.isRequired,
|
|
|
|
fetchQueueDetails: PropTypes.func.isRequired
|
|
|
|
};
|
|
|
|
|
|
|
|
export default connect(createMapStateToProps, mapDispatchToProps)(SignalRConnector);
|