forked from Dylancyclone/goodreads-libby-userscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
goodreads-libby-adguard.user.js
238 lines (231 loc) · 10.6 KB
/
goodreads-libby-adguard.user.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
// ==UserScript==
// @name Goodreads and Amazon Libby Results
// @namespace https://github.com/holyspiritomb
// @version 1.3.2
// @description Searches for the book you are looking at on Goodreads or Amazon across all your libby libraries with cards. Originally forked from Dylancyclone's Goodreads Libby Results script.
// @author holyspiritomb
// @updateURL https://raw.githubusercontent.com/holyspiritomb/libby-userscript/main/goodreads-libby-adguard.user.js
// @match https://libbyapp.com/interview/menu
// @include /^https?://.*\.goodreads\.com/book/show.*$/
// @include *://*.amazon.tld/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=libbyapp.com
// @grant GM.setValue
// @grant GM.getValue
// @grant GM_addStyle
// @grant unsafeWindow
// @run-at document-idle
// @license MIT
// ==/UserScript==
(function () {
"use strict";
const syncLibraries = () => {
// Grab libraries from libby and remove circular references
// Use current cards instead of all libraries in history
let libraries = unsafeWindow.APP.patron.cards.all.map((card) => {
return {
baseKey: card.library.baseKey,
_: { activeKey: card.library._.activeKey, name: card.library._.name },
};
});
console.log("library sync button clicked");
console.log(libraries);
libraries = JSON.stringify(libraries);
GM.setValue("libraries", libraries);
};
const createLibbyButton = () => {
let builderDiv = document.createElement("div");
builderDiv.innerHTML = `
<div class="menu-library-buttons">
<button class="menu-library-buttons-add-library halo" role="button" type="button">
<span role="text" id="libby-script-forked">Save Libraries (userscript)</span>
</button>
</div>
`.trim();
let libbySyncButton = builderDiv.firstChild;
libbySyncButton.onclick = syncLibraries;
return libbySyncButton;
};
/**
* Add the button
* Might outrun the rest of the dom,
* so keep retrying until the container is ready
*/
const addLibbyButton = () => {
let container = document.getElementsByClassName("menu-library-buttons");
if (container && container[0]) {
container[0].parentNode.insertBefore(
createLibbyButton(),
container[0].nextSibling
);
} else {
setTimeout(addLibbyButton, 10);
}
};
const addGoodreadsResults = async () => {
// let bookTitle;
let bookTitleEl;
// let bookAuthor;
let bookAuthorEl;
if (unsafeWindow.location.host == "www.amazon.com") {
let findAmTitleEl = () => document.querySelector("span#ebooksTitle") || document.querySelector("span#productTitle");
bookTitleEl = findAmTitleEl();
let findBookAuthorEl = () => document.querySelector("div#bylineInfo > span.author > a") || document.querySelector("div#bylineInfo > a#bylineContributor");
bookAuthorEl = findBookAuthorEl();
} else if (unsafeWindow.location.host == "www.goodreads.com") {
bookTitleEl = document.querySelector("[data-testid='bookTitle']");
let findBookAuthorEl = () => document.querySelector("[aria-label^='By: ']") || document.querySelector("span.ContributorLink__name");
bookAuthorEl = findBookAuthorEl();
}
let bookTitle = bookTitleEl.innerText;
let searchTitle = bookTitle.replace(/\(.*\)/, "").replace(/^\s+|\s+$/g, '').replace(/[&|,]/g, ' ').replace(/: .*/, '').replace(/[ ]+/, ' ');
let searchString;
if (bookAuthorEl == null) {
searchString = encodeURIComponent(searchTitle);
} else {
let bookAuthor = bookAuthorEl.innerText;
searchString = encodeURIComponent(searchTitle) + "&creator=" + encodeURIComponent(bookAuthor);
}
//console.log(searchString);
let libraries = JSON.parse(await GM.getValue("libraries", "[]"));
var previousBox;
if (unsafeWindow.location.host == "www.amazon.com") {
let findPreviousBox = () => document.getElementById("shopAllFormats_feature_div") || document.getElementById("bookDescription_feature_div") || document.getElementById("tmmSwatches");
previousBox = findPreviousBox();
} else if (unsafeWindow.location.host == "www.goodreads.com") {
previousBox = document.querySelector(".BookDetails");
if (previousBox == null) {
let findPreviousBox = () => document.querySelector("[itemprop='description']") || document.getElementById("descriptionContainer");
previousBox = findPreviousBox();
}
}
let libbyContainer = document.createElement("div");
libbyContainer.id = "grLibbyBoxforked";
libbyContainer.style.margin = "10px";
let libbyResultsHeader;
if (unsafeWindow.location.host == "www.amazon.com") {
libbyResultsHeader = document.createElement("h3");
libbyResultsHeader.className = "rpi-header a-spacing-small";
} else if (unsafeWindow.location.host == "www.goodreads.com") {
libbyResultsHeader = document.createElement("h4");
libbyResultsHeader.className = "Text__title4";
}
libbyResultsHeader.innerHTML = "Libby Results";
libbyContainer.appendChild(libbyResultsHeader);
let libbyResultsContainer = document.createElement("div");
libbyResultsContainer.id = "libby-results-forked";
libbyResultsContainer.style.padding = "5px";
if (unsafeWindow.location.host == "www.goodreads.com") {
libbyResultsContainer.style.marginLeft = "1em";
libbyResultsContainer.style.overflowY = "auto";
libbyResultsContainer.style.maxHeight = "30vh";
}
libbyResultsContainer.style.display = "flex";
libbyResultsContainer.style.flexDirection = "column";
libbyContainer.appendChild(libbyResultsContainer);
if (unsafeWindow.location.host == "www.amazon.com") {
previousBox.insertAdjacentElement("beforebegin", libbyContainer);
let hr = document.createElement("hr");
previousBox.insertAdjacentElement("beforebegin", hr);
} else if (unsafeWindow.location.host == "www.goodreads.com") {
previousBox.insertAdjacentElement("afterend", libbyContainer);
}
if (libraries.length === 0) {
document.getElementById(
"libby-results-forked"
).innerHTML = `No libraries found. Please visit <a href="https://libbyapp.com/interview/menu" target="_blank">here</a> to sync your libraries.`;
}
libraries.map((library) => {
let libraryKey = library._.activeKey || library.baseKey;
let url = `https://thunder.api.overdrive.com/v2/libraries/${libraryKey}/media?query=${searchString}`;
fetch(url)
.then((response) => response.json())
.then((result) => {
if (result.totalItems === 0){
console.log(`none found at ${library.baseKey}`);
let noresultsElem = document.createElement('div');
noresultsElem.className=library.baseKey;
noresultsElem.style.paddingBottom="5px";
noresultsElem.style.display = "flex";
noresultsElem.style.flexDirection = "row";
let noresultsElementLink = document.createElement("a");
noresultsElementLink.id = `libby-forked-${library.baseKey}`;
noresultsElementLink.href = `https://libbyapp.com/search/${library.baseKey}/search/query-${searchString}/page-1`;
noresultsElementLink.style.color = "#555";
noresultsElementLink.innerText = "none found";
noresultsElem.appendChild(noresultsElementLink);
document.getElementById("libby-results-forked").appendChild(noresultsElem);
} else {
let resultsElement = document.createElement('div');
resultsElement.className=library.baseKey;
resultsElement.style.paddingBottom="5px";
resultsElement.style.display = "flex";
resultsElement.style.flexDirection = "row";
let resultsElementLink = document.createElement("a");
resultsElementLink.id = `libby-forked-${library.baseKey}`;
// resultsElementLink.href = `https://${library.baseKey}.overdrive.com/search/title?query=${searchString}`;
resultsElementLink.href = `https://libbyapp.com/search/${library.baseKey}/search/query-${searchString}/page-1`;
resultsElement.appendChild(resultsElementLink);
document.getElementById("libby-results-forked").appendChild(resultsElement);
let resultItems = result.items;
resultItems.forEach(item => {
console.log(item);
var itemFormat = "";
if (item.type.id === "audiobook"){
itemFormat = '\uD83C\uDFA7'
}
if (item.type.id === "ebook"){
itemFormat = '\uD83D\uDCDA'
}
var bookLinkText;
var linkColor;
if (item.ownedCopies != 0) {
if (item.availableCopies === 0) {
bookLinkText = `${item.holdsCount}/${item.ownedCopies} holds ${itemFormat}`;
linkColor = (document.querySelector("html[data-theme='light']")) ? "orange" : "#ffbe3d";
} else {
bookLinkText = `${item.availableCopies} available ${itemFormat}`;
linkColor = (document.querySelector("html[data-theme='light']")) ? "limegreen" : "#6dff6d";
}
} else {
bookLinkText = "request"
linkColor = (document.querySelector("html[data-theme='light']")) ? "orange" : "#ffbe3d";
}
let resultElem = document.createElement('div');
resultElem.className = "result";
resultElem.title = `${library.baseKey}: ${item.title} by ${item.creators[0].name} ${itemFormat}`;
resultElem.style.color = linkColor;
resultElem.innerHTML = bookLinkText;
document.getElementById(
`libby-forked-${library.baseKey}`
).appendChild(resultElem);
});
}
});
});
// put something here in case of no resulrs
};
if (unsafeWindow.location.host == "libbyapp.com") {
addLibbyButton();
} else if ((unsafeWindow.location.host == "www.goodreads.com") || (unsafeWindow.location.host == "www.amazon.com")) {
GM_addStyle(`#libby-results-forked > div::before {
content: attr(class) ': ';
flex-basis: 7.5em;
line-height: inherit;
}
#libby-results-forked {
line-height: 1.5em;
}
#libby-results-forked > div,
#libby-results-forked > div > a,
#libby-results-forked > div > a > div{
line-height: inherit;
}
#libby-results-forked > div > a{
text-decoration: none;
}
#libby-results-forked > div > a:hover {
text-decoration: underline;
}`);
addGoodreadsResults();
}
})();