-
Notifications
You must be signed in to change notification settings - Fork 787
/
Copy pathCourtListener.js
271 lines (254 loc) · 7.89 KB
/
CourtListener.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
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
{
"translatorID": "07890a30-866e-452a-ac3e-c19fcb39b597",
"label": "CourtListener",
"creator": "Sebastian Karcher",
"target": "^https?://www\\.courtlistener\\.com",
"minVersion": "5.0",
"maxVersion": "",
"priority": 100,
"inRepository": true,
"translatorType": 4,
"browserSupport": "gcsibv",
"lastUpdated": "2024-02-04 05:00:08"
}
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2024 Sebastian Karcher
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) {
if (url.includes('/opinion/')) {
return 'case';
}
else if (getSearchResults(doc, true)) {
return 'multiple';
}
return false;
}
function getSearchResults(doc, checkOnly) {
var items = {};
var found = false;
var rows = doc.querySelectorAll('article > h3 > a');
for (let row of rows) {
let href = row.href;
let title = ZU.trimInternal(row.textContent);
if (!href || !title) continue;
if (checkOnly) return true;
found = true;
items[href] = title;
}
return found ? items : false;
}
async function doWeb(doc, url) {
if (detectWeb(doc, url) == 'multiple') {
let items = await Zotero.selectItems(getSearchResults(doc, false));
if (!items) return;
for (let url of Object.keys(items)) {
await scrape(await requestDocument(url));
}
}
else {
await scrape(doc);
}
}
async function scrape(doc, url = doc.location.href) {
var item = new Zotero.Item('case');
let citeString = text(doc, 'h2');
let title = citeString.match(/^(.+?),\s\d+/);
item.caseName = title ? title[1] : citation;
item.court = text(doc, 'article h3');
item.reporter = text(doc, '.citation .reporter');
item.reporterVolume = text(doc, '.citation .volume');
item.firstPage = text(doc, '.citation .page');
let citation = text(doc, 'center b .citation');
if (!item.reporter && !item.reporterVolume) {
// the reporter elements aren't always tagged. We might have to parse them
// the best version is in the top of the opinion (we always want that for history matching,
// so getting that outside the conditional
// if that's not there, we're parsing from the title of the case
if (!citation) {
citation = citeString.match(/^.+?,\s(\d+.+)/)[1].replace(/\(.+?\)$/, "");
}
let citeExpr = citation.trim().match(/^(\d+)\s((?:[A-Z][a-z]?\.\s?)+(?:[2-3]d)?(?:Supp\.)?)\s(\d{1,4})(,|$)/);
if (citeExpr) {
item.reporterVolume = citeExpr[1];
item.reporter = citeExpr[2];
item.firstPage = citeExpr[3];
}
else {
// if we can't match the reporter elements properly, just write the whole thing to citation.
item.history = citation;
}
}
if (!item.history) {
// if we haven't already written case history, write the part that's not already included in the citation
// there are often stray spaces in either citation, so we need to check for the version without it.
let caseHistory = ZU.xpathText(doc, '//span[@class="meta-data-header" and contains(text(), "Citations:")]/following-sibling::span');
// Z.debug(caseHistory);
if (caseHistory.replace(/\s/g, "").startsWith(citation.replace(/\s/g, ""))
&& !(caseHistory.replace(/\s/g, "") == citation.replace(/\s/g, ""))) {
item.history = caseHistory.trim().replace(/^.+?,/, "");
}
}
// no good selctor for date, author, and docket number, so
let date = ZU.xpathText(doc, '//span[@class="meta-data-header" and contains(text(), "Filed:")]/following-sibling::span');
item.dateDecided = date ? date.trim() : "";
let docket = ZU.xpathText(doc, '//span[@class="meta-data-header" and contains(text(), "Docket Number:")]/following-sibling::span');
item.docketNumber = docket ? docket.trim() : "";
let authors = ZU.xpath(doc, '//span[@class="meta-data-header" and contains(text(), "Author:")]/following-sibling::span');
for (let author of authors) {
item.creators.push(ZU.cleanAuthor(author.textContent.trim(), "author", false));
}
item.url = url.replace(/\/\?.*/, "");
item.attachments.push({ document: doc, title: "Full Text" });
item.extra = "";
item.complete();
}
/** BEGIN TEST CASES **/
var testCases = [
{
"type": "web",
"url": "https://www.courtlistener.com/opinion/1872757/gibson-v-bossier-city-general-hosp/?type=o&q=testing&type=o&order_by=score%20desc&stat_Precedential=on",
"items": [
{
"itemType": "case",
"caseName": "Gibson v. Bossier City General Hosp.",
"creators": [],
"dateDecided": "November 26th, 1991",
"court": "Louisiana Court of Appeal",
"docketNumber": "22693-CA, 23002-CA",
"firstPage": "1332",
"reporter": "So.2d",
"reporterVolume": "594",
"url": "https://www.courtlistener.com/opinion/1872757/gibson-v-bossier-city-general-hosp",
"attachments": [
{
"title": "Full Text",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.courtlistener.com/opinion/1611405/blackwell-v-power-test-corp/?type=o&type=o&q=testing&order_by=score+desc&stat_Precedential=on&page=3",
"items": [
{
"itemType": "case",
"caseName": "Blackwell v. Power Test Corp.",
"creators": [
{
"firstName": "Henry Curtis",
"lastName": "Meanor",
"creatorType": "author"
}
],
"dateDecided": "August 19th, 1981",
"court": "District Court, D. New Jersey",
"docketNumber": "Civ. A. 80-2227",
"firstPage": "802",
"reporter": "F.Supp.",
"reporterVolume": "540",
"url": "https://www.courtlistener.com/opinion/1611405/blackwell-v-power-test-corp",
"attachments": [
{
"title": "Full Text",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.courtlistener.com/opinion/108284/griggs-v-duke-power-co/?q=testing",
"items": [
{
"itemType": "case",
"caseName": "Griggs v. Duke Power Co.",
"creators": [
{
"firstName": "Warren Earl",
"lastName": "Burger",
"creatorType": "author"
}
],
"dateDecided": "March 8th, 1971",
"court": "Supreme Court of the United States",
"docketNumber": "124",
"firstPage": "424",
"history": "91 S. Ct. 849, 28 L. Ed. 2d 158, 1971 U.S. LEXIS 134",
"reporter": "U.S.",
"reporterVolume": "401",
"url": "https://www.courtlistener.com/opinion/108284/griggs-v-duke-power-co",
"attachments": [
{
"title": "Full Text",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
},
{
"type": "web",
"url": "https://www.courtlistener.com/?q=testing",
"items": "multiple"
},
{
"type": "web",
"url": "https://www.courtlistener.com/opinion/3959231/state-v-martin/?q=State%20v.%20Martin&type=o&order_by=score%20desc&stat_Precedential=on",
"items": [
{
"itemType": "case",
"caseName": "State v. Martin",
"creators": [
{
"firstName": "Robert L.",
"lastName": "Black",
"creatorType": "author"
}
],
"dateDecided": "February 9th, 1983",
"court": "Ohio Court of Appeals",
"docketNumber": "C-820238",
"firstPage": "717",
"history": "20 Ohio App. 3d 172",
"reporter": "N.E.2d",
"reporterVolume": "485",
"url": "https://www.courtlistener.com/opinion/3959231/state-v-martin",
"attachments": [
{
"title": "Full Text",
"mimeType": "text/html"
}
],
"tags": [],
"notes": [],
"seeAlso": []
}
]
}
]
/** END TEST CASES **/