-
Notifications
You must be signed in to change notification settings - Fork 786
/
Copy pathFailed Architecture.js
114 lines (97 loc) · 3.11 KB
/
Failed Architecture.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
{
"translatorID": "31807458-4c59-4a9c-b78f-e6267aca53be",
"label": "Failed Architecture",
"creator": "Abe Jellinek",
"target": "^https?://failedarchitecture\\.com/",
"minVersion": "3.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2021-09-05 21:18:37"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2021 Abe Jellinek
This file is part of Zotero.
Zotero is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Zotero is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with Zotero. If not, see <http://www.gnu.org/licenses/>.
***** END LICENSE BLOCK *****
*/
function detectWeb(doc, _url) {
// we should support the podcast, but the page has such minimal metadata
// that we won't get anything very useful.
if (doc.body.classList.contains('non-podcast')
&& doc.querySelector('.post-content')) {
return "blogPost";
}
// no search
return false;
}
function doWeb(doc, url) {
scrape(doc, url);
}
function scrape(doc, url) {
var translator = Zotero.loadTranslator('web');
// Embedded Metadata
translator.setTranslator('951c027d-74ac-47d4-a107-9c3069ab7b48');
translator.setDocument(doc);
translator.setHandler('itemDone', function (obj, item) {
if (!item.date) {
item.date = ZU.strToISO(text(doc, '.post-content__date'));
}
item.creators = [];
for (let author of doc.querySelectorAll('.post-header .author')) {
item.creators.push(ZU.cleanAuthor(author.textContent, 'author'));
}
item.complete();
});
translator.getTranslatorObject(function (trans) {
trans.itemType = 'blogPost';
trans.doWeb(doc, url);
});
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://failedarchitecture.com/any-challenge-to-the-uks-hostile-environment-has-to-start-by-exposing-its-data-infrastructure/",
"items": [
{
"itemType": "blogPost",
"title": "Any Challenge to the UK’s Hostile Environment Has to Start by Exposing Its Data Infrastructure",
"creators": [
{
"firstName": "Jake",
"lastName": "Arnfield",
"creatorType": "author"
}
],
"date": "2021-08-06",
"abstractNote": "Hidden data infrastructure is integral to advancements in the UK's immigration enforcement capabilities. Exposing this infrastructure will therefore b...",
"blogTitle": "Failed Architecture",
"language": "en",
"url": "https://failedarchitecture.com/any-challenge-to-the-uks-hostile-environment-has-to-start-by-exposing-its-data-infrastructure/",
"attachments": [
{
"title": "Snapshot",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/