annotate webapp/src/main/webapp/jquery/jquery.digilib.annotator.js @ 1121:efe4b0f18cf8

annotator plugin does regions now.
author robcast
date Thu, 08 Nov 2012 18:42:57 +0100
parents 8bd10cd04169
children 1fad569ccb4f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
1 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
2 digilib plugin for annotations.
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
3
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
4 currently only point-like annotations (like marks).
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
5
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
6 Annotations are stored on a Annotator http://annotateit.org compatible server.
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
7
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
8 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
9
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
10 (function($) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
11
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
12 // affine geometry
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
13 var geom = null;
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
14 // plugin object with digilib data
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
15 var digilib = null;
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
16
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
17 var buttons = {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
18 annotations : {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
19 onclick : "toggleAnnotations",
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
20 tooltip : "show or hide annotations",
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
21 icon : "annotations.png"
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
22 },
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
23 annotationuser : {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
24 onclick : "setAnnotationUser",
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
25 tooltip : "set user account for annotations",
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
26 icon : "annotation-user.png"
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
27 },
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
28 annotationmark : {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
29 onclick : "setAnnotationMark",
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
30 tooltip : "create an annotation for a point",
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
31 icon : "annotation-mark.png"
1121
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
32 },
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
33 annotationregion : {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
34 onclick : "setAnnotationRegion",
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
35 tooltip : "create an annotation for a region",
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
36 icon : "annotation-region.png"
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
37 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
38 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
39
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
40 var defaults = {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
41 // are annotations active?
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
42 'isAnnotationsVisible' : true,
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
43 // buttonset of this plugin
1121
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
44 'annotationSet' : ['annotations', 'annotationuser', 'annotationmark', 'annotationregion', 'lessoptions'],
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
45 // URL of annotation server
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
46 'annotationServerUrl' : 'http://virtuoso.mpiwg-berlin.mpg.de:8080/AnnotationManager/annotator',
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
47 // URL of authentication token server
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
48 'annotationTokenUrl' : 'http://localhost:8080/test/annotator/token',
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
49 // annotation user name
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
50 'annotationUser' : 'anonymous',
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
51 // function to translate user name from annotation server format
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
52 'annotationServerUserString' : function() {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
53 if (this.user && this.user.name) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
54 return this.user.name;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
55 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
56 return this.user;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
57 },
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
58
1118
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
59 // Annotator plugin settings (some values provided in handleSetup)
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
60 'annotatorPlugins' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
61 //'Tags' : {},
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
62 'Auth' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
63 //token : data.annotationToken
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
64 //tokenUrl: data.settings.annotationTokenUrl
1118
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
65 autoFetch: true,
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
66 requestMethod: 'POST',
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
67 requestData: {
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
68 //'user': data.settings.annotationUser,
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
69 //'password': data.annotationPassword
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
70 }
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
71 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
72 'Permissions' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
73 //user: data.settings.annotationUser,
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
74 userString : function(user) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
75 if (user && user.name) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
76 return user.name;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
77 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
78 return user;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
79 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
80 userId: function (user) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
81 if (user && user.id) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
82 return user.id;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
83 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
84 return user;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
85 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
86 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
87 'Store' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
88 //prefix : data.settings.annotationServerUrl,
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
89 annotationData: {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
90 //'uri': getAnnotationPageUrl()
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
91 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
92 loadFromSearch: {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
93 'limit': 20,
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
94 //'uri': getAnnotationPageUrl()
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
95 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
96 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
97 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
98
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
99 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
100
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
101 var actions = {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
102 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
103 * show/hide annotations
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
104 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
105 toggleAnnotations : function (data) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
106 var show = !data.settings.isAnnotationsVisible;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
107 data.settings.isAnnotationsVisible = show;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
108 digilib.fn.highlightButtons(data, 'annotations', show);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
109 renderAnnotations(data);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
110 },
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
111
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
112 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
113 * set user account for annotations
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
114 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
115 setAnnotationUser : function (data, user, password) {
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
116 var annotator = data.annotator;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
117 var auth = annotator.plugins.Auth;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
118 if (auth == null) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
119 console.error("setAnnotationUser: No Auth plugin!!");
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
120 return;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
121 }
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
122 setAnnotationUser(data, auth, user, password);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
123 // get new token
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
124 auth.token = null;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
125 auth._unsafeToken = null;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
126 auth.requestToken();
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
127 // save new token in cookie
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
128 auth.withToken(function (tkn) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
129 data.dlOpts.annotationToken = auth.token;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
130 digilib.fn.storeOptions(data);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
131 // reload annotations
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
132 data.annotations = [];
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
133 renderAnnotations(data);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
134 annotator.plugins.Store.pluginInit();
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
135 });
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
136 },
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
137
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
138 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
139 * set a mark-annotation by clicking (or giving a position and a text)
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
140 *
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
141 * @param data
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
142 * @param mpos
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
143 * @param text
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
144 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
145 setAnnotationMark : function (data, mpos, text) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
146 if (mpos == null) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
147 // interactive
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
148 setAnnotationMark(data);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
149 } else {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
150 // use position and text (and user-id)
1118
f0474c1faaff trying new annotator authentication.
robcast
parents: 1116
diff changeset
151 console.error("Currently only interactive annotations!");
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
152 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
153 },
1121
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
154
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
155 /**
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
156 * set a region-annotation by clicking (or giving a position and a text)
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
157 *
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
158 * @param data
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
159 * @param mpos
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
160 * @param text
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
161 */
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
162 setAnnotationRegion : function (data, rect, text) {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
163 if (rect == null) {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
164 // interactive
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
165 setAnnotationRegion(data);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
166 } else {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
167 // use position and text (and user-id)
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
168 console.error("Currently only interactive annotations!");
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
169 }
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
170 }
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
171 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
172
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
173 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
174 * returns an annotatable url to this digilib image
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
175 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
176 var getAnnotationPageUrl = function(data) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
177 var url = data.settings.digilibBaseUrl + '/jquery/digilib.html?';
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
178 url += digilib.fn.getParamString(data.settings, ['fn', 'pn'], digilib.defaults);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
179 return url;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
180 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
181
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
182 /**
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
183 * sets annotation user and password in digilib and Annotator.Auth plugin.
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
184 * auth is Auth plugin instance.
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
185 */
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
186 var setAnnotationUser = function (data, auth, user, password) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
187 if (user == null) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
188 // user name entered in JS-prompt
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
189 user = window.prompt("Please authenticate: User name", data.settings.annotationUser);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
190 if (user != null && user != 'anonymous') {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
191 // password entered in JS-prompt
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
192 password = window.prompt("Please authenticate: Password", '');
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
193 // set params for Auth plugin
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
194 auth.options.requestData.password = password;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
195 } else {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
196 // use anonymous user
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
197 user = 'anonymous';
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
198 delete auth.options.requestData.password;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
199 }
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
200 }
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
201 // set user in digilib
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
202 data.settings.annotationUser = user;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
203 data.dlOpts.annotationUser = user;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
204 digilib.fn.storeOptions(data);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
205 // set params for Auth plugin
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
206 auth.options.requestData.user = user;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
207 // set params for Permissions plugin
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
208 var perms = data.annotator.plugins.Permissions;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
209 if (perms != null) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
210 perms.options.user = user;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
211 }
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
212 };
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
213
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
214
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
215 /**
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
216 * add a mark-annotation where clicked.
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
217 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
218 var setAnnotationMark = function(data) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
219 var $scaler = data.$scaler;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
220 // unbind other handler TODO: do we need to do this?
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
221 $scaler.off(".dlZoomDrag");
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
222 // start event capturing
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
223 $scaler.one('mousedown.dlSetAnnotationMark', function(evt) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
224 // event handler adding a new mark
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
225 console.log("setAnnotationMark at=", evt);
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
226 var annotator = data.annotator;
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
227 var mpos = geom.position(evt);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
228 var pos = data.imgTrafo.invtransform(mpos);
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
229 // mark selected areas
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
230 annotator.selectedAreas = [geom.rectangle(pos)];
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
231 // create and edit new annotation
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
232 var annotation = annotator.createAnnotation();
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
233 annotator.showEditor(annotation, mpos.getAsCss());
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
234 return false;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
235 });
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
236 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
237
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
238 /**
1121
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
239 * add a region-annotation where clicked.
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
240 */
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
241 var setAnnotationRegion = function(data) {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
242 var annotator = data.annotator;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
243 digilib.fn.defineArea(data, function (data, rect) {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
244 if (rect == null) return;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
245 // event handler adding a new mark
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
246 console.log("setAnnotationRegion at=", rect);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
247 // mark selected areas
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
248 annotator.selectedAreas = [rect];
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
249 // create and edit new annotation
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
250 var mpos = rect.getPt1();
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
251 var pos = data.imgTrafo.transform(mpos);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
252 var annotation = annotator.createAnnotation();
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
253 annotator.showEditor(annotation, pos.getAsCss());
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
254 });
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
255 };
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
256
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
257 /**
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
258 * place annotations on the image
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
259 */
1114
1525c820ee27 annotator annotations even show up now.
casties
parents: 1113
diff changeset
260 var renderAnnotations = function (data) {
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
261 console.debug("renderAnnotations!");
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
262 if (data.annotations == null || data.annotator == null || data.$img == null || data.imgTrafo == null)
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
263 return;
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
264 var annotations = data.annotations;
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
265 var cssPrefix = data.settings.cssPrefix;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
266 var $elem = data.$elem;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
267 // try to show annotation user state
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
268 $elem.find('div#'+cssPrefix+'button-annotationuser').attr('title', 'annotation user: '+data.settings.annotationUser);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
269 // clear annotations
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
270 $elem.find('div.' + cssPrefix + 'annotationmark').remove();
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
271 if (!data.settings.isAnnotationsVisible) return;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
272 for (var i = 0; i < annotations.length; i++) {
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
273 renderAnnotation(data, annotations[i]);
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
274 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
275 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
276
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
277 /**
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
278 * place single annotation on the image
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
279 */
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
280 var renderAnnotation = function (data, annot) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
281 console.debug("renderAnnotation: annotation=", annot);
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
282 if (annot == null || annot.annotation == null || annot.annotation.areas == null
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
283 || data.$img == null || data.imgTrafo == null)
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
284 return;
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
285 if (!data.settings.isAnnotationsVisible) return;
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
286 var cssPrefix = data.settings.cssPrefix;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
287 var $elem = data.$elem;
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
288 var annotator = data.annotator;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
289 var annotation = annot.annotation;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
290 var idx = annot.idx ? annot.idx : '?';
1121
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
291 var area = geom.rectangle(annotation.areas[0]);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
292 var screenRect = null;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
293 var $annotation = null;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
294 if (area.isRectangle()) {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
295 var clippedArea = data.zoomArea.intersect(area);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
296 if (clippedArea == null) return;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
297 screenRect = data.imgTrafo.transform(clippedArea);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
298 // console.debug("renderRegion: pos=",geom.position(screenRect));
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
299 $annotation = $('<div class="'+cssPrefix+'annotationregion '+cssPrefix+'overlay annotator-hl">'+idx+'</div>');
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
300 //addRegionAttributes(data, $regionDiv, attr);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
301 } else {
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
302 var pos = area.getPosition();
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
303 if (!data.zoomArea.containsPosition(pos)) return;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
304 var screenRect = data.imgTrafo.transform(pos);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
305 console.debug("renderannotations: pos=", pos);
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
306 // create annotation
1114
1525c820ee27 annotator annotations even show up now.
casties
parents: 1113
diff changeset
307 var html = '<div class="'+cssPrefix+'annotationmark '+cssPrefix+'overlay annotator-hl">'+idx+'</div>';
1121
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
308 $annotation = $(html);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
309 }
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
310 // save annotation in data for Annotator
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
311 $annotation.data('annotation', annotation);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
312 // save reference to div
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
313 annot.$div = $annotation;
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
314 $elem.append($annotation);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
315 // hook up Annotator events
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
316 $annotation.on("mouseover", annotator.onHighlightMouseover);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
317 $annotation.on("mouseout", annotator.startViewerHideTimer);
efe4b0f18cf8 annotator plugin does regions now.
robcast
parents: 1120
diff changeset
318 screenRect.adjustDiv($annotation);
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
319 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
320
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
321 /**
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
322 * returns setupAnnotation function using the given data.
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
323 */
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
324 var getSetupAnnotation = function(data) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
325 return function (annotation) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
326 // create annotation wrapper
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
327 var ann = {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
328 'annotation' : annotation,
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
329 'idx' : data.annotations.length+1
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
330 };
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
331 // add to list
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
332 data.annotations.push(ann);
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
333 // render this annotation
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
334 renderAnnotation(data, ann);
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
335 };
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
336 };
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
337
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
338 /**
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
339 * returns annotationDeleted function using the given data.
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
340 */
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
341 var getAnnotationDeleted = function(data) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
342 return function (annotation) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
343 // remove annotation mark
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
344 var annots = data.annotations;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
345 for (var i = 0; i < annots.length; ++i) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
346 var annot = annots[i];
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
347 if (annot.annotation === annotation) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
348 // this is the right wrapper
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
349 if (annot.$div != null) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
350 // remove from screen
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
351 annot.$div.remove();
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
352 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
353 // remove from list
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
354 delete annots[i];
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
355 break;
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
356 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
357 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
358 };
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
359 };
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
360
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
361 /**
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
362 * returns handleUnauthorized function for Annotator.Auth plugin.
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
363 */
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
364 var getHandleUnauthorized = function (data) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
365 return function (auth) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
366 // prompt for user name and set user
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
367 setAnnotationUser(data, auth);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
368 // then try again
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
369 return true;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
370 };
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
371 };
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
372
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
373 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
374 * install additional buttons
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
375 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
376 var installButtons = function(data) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
377 var settings = data.settings;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
378 var mode = settings.interactionMode;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
379 var buttonSettings = settings.buttonSettings[mode];
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
380 // configure buttons through digilib "annotationSet" option
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
381 var buttonSet = settings.annotationSet || annotationSet;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
382 // set annotationSet to [] or '' for no buttons (when showing annotations only)
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
383 if (buttonSet.length && buttonSet.length > 0) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
384 buttonSettings.annotationSet = buttonSet;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
385 buttonSettings.buttonSets.push('annotationSet');
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
386 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
387 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
388
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
389 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
390 * plugin installation. called by digilib on plugin object.
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
391 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
392 var install = function(plugin) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
393 digilib = plugin;
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
394 console.debug('installing annotator plugin. digilib:', digilib);
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
395 // import geometry classes
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
396 geom = digilib.fn.geometry;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
397 FULL_AREA = geom.rectangle(0, 0, 1, 1);
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
398 // add defaults, actions, buttons
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
399 $.extend(digilib.defaults, defaults);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
400 $.extend(digilib.actions, actions);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
401 $.extend(digilib.buttons, buttons);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
402 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
403
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
404 /** plugin initialization */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
405 var init = function(data) {
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
406 console.debug('initialising annotator plugin. data:', data);
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
407 var $data = $(data);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
408 // set up
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
409 data.annotations = [];
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
410 if (digilib.plugins.buttons != null) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
411 installButtons(data);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
412 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
413 if (data.dlOpts.annotationUser != null) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
414 // get annotation user from cookie
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
415 data.settings.annotationUser = data.dlOpts.annotationUser;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
416 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
417 // install event handler
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
418 $data.bind('setup', handleSetup);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
419 $data.bind('update', handleUpdate);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
420 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
421
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
422 /**
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
423 * setup creates Annotator object.
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
424 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
425 var handleSetup = function(evt) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
426 console.debug("annotations: handleSetup");
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
427 var data = this;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
428 // set up annotator (after html has been set up)
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
429 var uri = getAnnotationPageUrl(data);
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
430 var annotator = new Annotator(data.$elem.get(0));
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
431 // set plugin parameters
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
432 var pluginParams = {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
433 'Auth' : {
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
434 'token' : data.dlOpts.annotationToken,
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
435 'tokenUrl' : data.settings.annotationTokenUrl,
1119
036efe7361c8 working on new auth for annotations.
robcast
parents: 1118
diff changeset
436 'autoFetch' : true,
036efe7361c8 working on new auth for annotations.
robcast
parents: 1118
diff changeset
437 'requestMethod' : 'POST',
036efe7361c8 working on new auth for annotations.
robcast
parents: 1118
diff changeset
438 'requestData' : {
036efe7361c8 working on new auth for annotations.
robcast
parents: 1118
diff changeset
439 'user': data.settings.annotationUser,
036efe7361c8 working on new auth for annotations.
robcast
parents: 1118
diff changeset
440 },
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
441 'unauthorizedCallback' : getHandleUnauthorized(data)
1116
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
442 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
443 'Permissions' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
444 'user' : data.settings.annotationUser
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
445 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
446 'Store' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
447 'prefix' : data.settings.annotationServerUrl,
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
448 'annotationData' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
449 'uri': uri
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
450 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
451 'loadFromSearch' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
452 'uri': uri
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
453 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
454 },
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
455 'DigilibIntegrator' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
456 'hooks' : {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
457 'setupAnnotation' : getSetupAnnotation(data),
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
458 'annotationDeleted' : getAnnotationDeleted(data)
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
459 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
460 }
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
461 };
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
462 // merge with settings
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
463 $.extend(true, pluginParams, data.settings.annotatorPlugins);
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
464 // add plugins
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
465 $.each(pluginParams, function (name, params) {
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
466 console.debug("plugin:", name, params);
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
467 annotator.addPlugin(name, params);
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
468 });
08206603c7dc annotations use new Annotator-digilibintegration plugin.
robcast
parents: 1115
diff changeset
469 // save annotator reference
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
470 data.annotator = annotator;
1120
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
471 // save annotation token in cookie
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
472 var auth = annotator.plugins.Auth;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
473 // save new token in cookie
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
474 auth.withToken(function (tkn) {
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
475 data.dlOpts.annotationToken = auth.token;
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
476 digilib.fn.storeOptions(data);
8bd10cd04169 authentication for annotations with password works now. (permissions are still flaky.)
robcast
parents: 1119
diff changeset
477 });
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
478 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
479
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
480 /**
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
481 * update renders all annotations.
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
482 */
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
483 var handleUpdate = function(evt) {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
484 console.debug("annotations: handleUpdate");
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
485 var data = this;
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
486 renderAnnotations(data);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
487 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
488
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
489 // plugin object with name and init
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
490 // shared objects filled by digilib on registration
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
491 var plugin = {
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
492 name : 'annotator',
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
493 install : install,
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
494 init : init,
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
495 buttons : {},
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
496 actions : {},
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
497 fn : {},
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
498 plugins : {}
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
499 };
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
500
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
501 if ($.fn.digilib == null) {
1115
526dafa4690d using annotator in digilib works now. code still ugly.
robcast
parents: 1114
diff changeset
502 $.error("jquery.digilib.annotator must be loaded after jquery.digilib!");
1113
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
503 } else {
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
504 $.fn.digilib('plugin', plugin);
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
505 }
7affda55c10e using annotator in digilib works somewhat now.
robcast
parents:
diff changeset
506 })(jQuery);