Skip to content

Commit 5554026

Browse files
committed
Refactor to reduce code
1 parent 4d8a377 commit 5554026

File tree

3 files changed

+47
-90
lines changed

3 files changed

+47
-90
lines changed

src/imdb.js

+1-43
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ function modifyPlexButton(el, action, title, key) {
3939
el.classList.add('imdb-to-plex-button--couchpotato');
4040
el.addEventListener('click', (e) => {
4141
e.preventDefault();
42-
addToCouchpotato();
42+
addToCouchpotato(config, imdbId);
4343
});
4444
}
4545

@@ -76,48 +76,6 @@ function initPlexThingy() {
7676
});
7777
}
7878

79-
function addToCouchpotato(action) {
80-
chrome.runtime.sendMessage({
81-
type: 'VIEW_COUCHPOTATO',
82-
url: `${config.couchpotatoUrl}/media.get`,
83-
imdbId,
84-
basicAuth: config.couchpotatoBasicAuth,
85-
}, function(res) {
86-
const movieExists = res.success;
87-
if (res.err) {
88-
showNotification('warning', 'CouchPotato request failed (look in DevTools for more info)');
89-
console.error('Error with viewing on CouchPotato:', res.err);
90-
return;
91-
}
92-
if (!movieExists) {
93-
addToCouchPotatoRequest(imdbId);
94-
return;
95-
}
96-
showNotification('info', `Movie is already in CouchPotato (status: ${res.status})`);
97-
});
98-
}
99-
100-
function addToCouchPotatoRequest(imdbId) {
101-
chrome.runtime.sendMessage({
102-
type: 'ADD_COUCHPOTATO',
103-
url: `${config.couchpotatoUrl}/movie.add`,
104-
imdbId,
105-
basicAuth: config.couchpotatoBasicAuth,
106-
}, function(res) {
107-
if (res.err) {
108-
showNotification('warning', 'Could not add to CouchPotato (look in DevTools for more info)');
109-
console.error('Error with adding on CouchPotato:', err);
110-
return;
111-
}
112-
if (res.success) {
113-
showNotification('info', 'Added movie on CouchPotato.');
114-
} else {
115-
showNotification('warning', 'Could not add to CouchPotato.');
116-
}
117-
});
118-
}
119-
120-
12179
let config;
12280
if (isMovie() && imdbId) {
12381
getOptions().then((options) => {

src/movieo.js

+1-47
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ function modifyPlexButton(el, action, title, key) {
105105
el.classList.add('movieo-to-plex-button--couchpotato');
106106
el.addEventListener('click', (e) => {
107107
e.preventDefault();
108-
addToCouchpotato();
108+
addToCouchpotato(config, getImdbId());
109109
});
110110
}
111111

@@ -121,49 +121,3 @@ function getImdbId() {
121121
}
122122
return null;
123123
}
124-
125-
function addToCouchpotato(action) {
126-
const imdbId = getImdbId();
127-
if (!imdbId) {
128-
console.log('Cancelled adding to CouchPotato since there is no IMDB ID');
129-
return;
130-
}
131-
chrome.runtime.sendMessage({
132-
type: 'VIEW_COUCHPOTATO',
133-
url: `${config.couchpotatoUrl}/media.get`,
134-
imdbId,
135-
basicAuth: config.couchpotatoBasicAuth,
136-
}, function(res) {
137-
const movieExists = res.success;
138-
if (res.err) {
139-
showNotification('warning', 'CouchPotato request failed (look in DevTools for more info)');
140-
console.error('Error with viewing on CouchPotato:', res.err);
141-
return;
142-
}
143-
if (!movieExists) {
144-
addToCouchPotatoRequest(imdbId);
145-
return;
146-
}
147-
showNotification('info', `Movie is already in CouchPotato (status: ${res.status})`);
148-
});
149-
}
150-
151-
function addToCouchPotatoRequest(imdbId) {
152-
chrome.runtime.sendMessage({
153-
type: 'ADD_COUCHPOTATO',
154-
url: `${config.couchpotatoUrl}/movie.add`,
155-
imdbId,
156-
basicAuth: config.couchpotatoBasicAuth,
157-
}, function(res) {
158-
if (res.err) {
159-
showNotification('warning', 'Could not add to CouchPotato (look in DevTools for more info)');
160-
console.error('Error with adding on CouchPotato:', err);
161-
return;
162-
}
163-
if (res.success) {
164-
showNotification('info', 'Added movie on CouchPotato.');
165-
} else {
166-
showNotification('warning', 'Could not add to CouchPotato.');
167-
}
168-
});
169-
}

src/utils.js

+45
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,48 @@ function showNotification(state, text) {
8787
document.body.removeChild(el);
8888
}, 5000);
8989
}
90+
91+
function addToCouchpotato(options, imdbId) {
92+
if (!imdbId) {
93+
console.log('Cancelled adding to CouchPotato since there is no IMDB ID');
94+
return;
95+
}
96+
chrome.runtime.sendMessage({
97+
type: 'VIEW_COUCHPOTATO',
98+
url: `${options.couchpotatoUrl}/media.get`,
99+
imdbId,
100+
basicAuth: options.couchpotatoBasicAuth,
101+
}, function(res) {
102+
const movieExists = res.success;
103+
if (res.err) {
104+
showNotification('warning', 'CouchPotato request failed (look in DevTools for more info)');
105+
console.error('Error with viewing on CouchPotato:', res.err);
106+
return;
107+
}
108+
if (!movieExists) {
109+
addToCouchPotatoRequest(imdbId);
110+
return;
111+
}
112+
showNotification('info', `Movie is already in CouchPotato (status: ${res.status})`);
113+
});
114+
}
115+
116+
function addToCouchPotatoRequest(imdbId) {
117+
chrome.runtime.sendMessage({
118+
type: 'ADD_COUCHPOTATO',
119+
url: `${config.couchpotatoUrl}/movie.add`,
120+
imdbId,
121+
basicAuth: config.couchpotatoBasicAuth,
122+
}, function(res) {
123+
if (res.err) {
124+
showNotification('warning', 'Could not add to CouchPotato (look in DevTools for more info)');
125+
console.error('Error with adding on CouchPotato:', err);
126+
return;
127+
}
128+
if (res.success) {
129+
showNotification('info', 'Added movie on CouchPotato.');
130+
} else {
131+
showNotification('warning', 'Could not add to CouchPotato.');
132+
}
133+
});
134+
}

0 commit comments

Comments
 (0)