-
Notifications
You must be signed in to change notification settings - Fork 21
/
cachedTypes.js
193 lines (154 loc) · 5 KB
/
cachedTypes.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
/*
***** BEGIN LICENSE BLOCK *****
Copyright © 2011 Center for History and New Media
George Mason University, Fairfax, Virginia, USA
http://zotero.org
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 *****
*/
/**
* Emulates very small parts of cachedTypes.js and itemFields.js APIs for use with connector
*/
(function() {
var TypeSchema;
if (typeof ZOTERO_TYPE_SCHEMA != 'undefined') {
TypeSchema = ZOTERO_TYPE_SCHEMA;
}
var CachedTypes = new function() {
const schemaTypes = ["itemTypes", "creatorTypes", "fields"];
var typeData = {};
var itemTypes, creatorTypes, fields;
this.setTypeSchema = function(typeSchema) {
TypeSchema = typeSchema;
typeData = {};
// attach IDs and make referenceable by either ID or name
for (let i = 0; i < schemaTypes.length; i++) {
let schemaType = schemaTypes[i];
typeData[schemaType] = Zotero.Utilities.deepCopy(TypeSchema[schemaType]);
for (let id in TypeSchema[schemaType]) {
let entry = typeData[schemaType][id];
entry.unshift(parseInt(id, 10));
typeData[schemaType][entry[1]/* name */] = entry;
}
}
itemTypes = typeData.itemTypes;
creatorTypes = typeData.creatorTypes;
fields = typeData.fields;
};
if (TypeSchema) {
this.setTypeSchema(TypeSchema);
}
class Types {
constructor(schemeType) {
this.schemeType = schemeType;
}
get type() {
return typeData[this.schemeType];
}
getID(idOrName) {
var type = this.type[idOrName];
return (type ? type[0]/* id */ : false);
}
getName(idOrName) {
var type = this.type[idOrName];
return (type ? type[1]/* name */ : false);
}
getLocalizedString(idOrName) {
var type = this.type[idOrName];
return (type ? type[2]/* localizedString */ : false);
}
}
this.ItemTypes = new (class extends Types {
constructor() {
super("itemTypes");
}
})();
this.CreatorTypes = new (class extends Types {
constructor() {
super("creatorTypes");
}
getTypesForItemType(idOrName) {
var itemType = itemTypes[idOrName];
if(!itemType) return false;
var itemCreatorTypes = itemType[3]; // creatorTypes
if (!itemCreatorTypes
// TEMP: 'note' and 'attachment' have an array containing false
|| (itemCreatorTypes.length == 1 && !itemCreatorTypes[0])) {
return [];
}
var n = itemCreatorTypes.length;
var outputTypes = new Array(n);
for(var i=0; i<n; i++) {
var creatorType = creatorTypes[itemCreatorTypes[i]];
outputTypes[i] = {"id":creatorType[0]/* id */,
"name":creatorType[1]/* name */};
}
return outputTypes;
};
getPrimaryIDForType(idOrName) {
var itemType = itemTypes[idOrName];
if(!itemType) return false;
return itemType[3]/* creatorTypes */[0];
};
isValidForItemType(creatorTypeID, itemTypeID) {
let itemType = itemTypes[itemTypeID];
return itemType[3]/* creatorTypes */.includes(creatorTypeID);
};
})();
this.ItemFields = new (class extends Types {
constructor() {
super("fields");
}
isValidForType(fieldIdOrName, typeIdOrName) {
var field = fields[fieldIdOrName], itemType = itemTypes[typeIdOrName];
// mimics itemFields.js
if(!field || !itemType) return false;
/* fields */ /* id */
return itemType[4].indexOf(field[0]) !== -1;
};
isBaseField(fieldID) {
return fields[fieldID][2];
};
getFieldIDFromTypeAndBase(typeIdOrName, fieldIdOrName) {
var baseField = fields[fieldIdOrName], itemType = itemTypes[typeIdOrName];
if(!baseField || !itemType) return false;
// get as ID
baseField = baseField[0]/* id */;
// loop through base fields for item type
var baseFields = itemType[5];
for(var i in baseFields) {
if(baseFields[i] === baseField) {
return i;
}
}
return false;
};
getBaseIDFromTypeAndField(typeIdOrName, fieldIdOrName) {
var field = fields[fieldIdOrName], itemType = itemTypes[typeIdOrName];
if(!field || !itemType) {
throw new Error("Invalid field or type ID");
}
var baseField = itemType[5]/* baseFields */[field[0]/* id */];
return baseField ? baseField : false;
};
getItemTypeFields(typeIdOrName) {
return itemTypes[typeIdOrName][4]/* fields */.slice();
};
})();
}
if (typeof module !== 'undefined') {
module.exports = CachedTypes
} else if (typeof Zotero !== 'undefined') {
Object.assign(Zotero, CachedTypes);
}
})();