Skip to content

Commit 264d293

Browse files
committed
implement opac support
1 parent acbcd32 commit 264d293

File tree

2 files changed

+46
-3
lines changed

2 files changed

+46
-3
lines changed

src/views/components/FormLiteratureManual.vue

+44
Original file line numberDiff line numberDiff line change
@@ -170,12 +170,21 @@
170170
<button class="md-layout-item md-size-20" @click="generateQuery">
171171
QueryLaden
172172
</button>
173+
<div>
174+
<button @click="checkOpacLink(inputs.isbnNeu)">OPAC</button>
175+
<div v-if="this.opac.link.length > 0">
176+
Link: {{ this.opac.link }} <br />
177+
Ausleihbar: {{ this.opac.ausleihbar }} <br />
178+
Volltext verfügbar: {{ this.opac.volltext }} <br />
179+
</div>
180+
</div>
173181
</div>
174182
</div>
175183
</template>
176184

177185
<script>
178186
import { v4 as uuidv4 } from "uuid";
187+
import axios from "axios";
179188
180189
export default {
181190
name: "literatureManual",
@@ -213,6 +222,11 @@ export default {
213222
autorProfilLinkNeu: [],
214223
},
215224
],
225+
opac: {
226+
link: "",
227+
volltext: false,
228+
ausleihbar: false,
229+
},
216230
};
217231
},
218232
methods: {
@@ -223,6 +237,36 @@ export default {
223237
this[input].splice(index, 1);
224238
this.changedArray[input].push(index);
225239
},
240+
checkOpacLink(isbn) {
241+
this.opac.link = "";
242+
this.opac.ausleihbar = false;
243+
this.opac.volltext = false;
244+
245+
axios
246+
.get("https://opac.th-brandenburg.de/search?isbn=" + isbn, {
247+
headers: {
248+
Accept: "text/html",
249+
},
250+
crossdomain: true,
251+
})
252+
.then((response) => {
253+
if (response.data.includes("Signatur")) {
254+
this.opac.link =
255+
"https://opac.th-brandenburg.de/search?isbn=" + isbn;
256+
} else {
257+
this.opac.link = "Nicht verfügbar";
258+
}
259+
if (response.data.includes("ausleihbar")) {
260+
this.opac.ausleihbar = true;
261+
}
262+
if (response.data.includes("Volltext")) {
263+
this.opac.volltext = true;
264+
}
265+
})
266+
.catch((e) => {
267+
console.log(e);
268+
});
269+
},
226270
/*
227271
### Module GPMO
228272
module:GPMO schema:citation <http://doi.org/10.1007/978-3-8348-2428-8>.

vue.config.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,8 @@ module.exports = {
33
devServer: {
44
headers: {
55
"Access-Control-Allow-Origin": "*",
6-
"Access-Control-Allow-Methods": "GET, POST, PUT, DELETE, PATCH, OPTIONS",
7-
"Access-Control-Allow-Headers":
8-
"X-Requested-With, content-type, Authorization",
6+
"Access-Control-Allow-Methods": "*",
7+
"Access-Control-Allow-Headers": "*",
98
},
109
},
1110
};

0 commit comments

Comments
 (0)