annotate src/main/java/de/mpiwg/itgroup/annotations/restlet/AnnotatorAnnotations.java @ 65:c0dd5314bada

deal with special characters in urls.
author casties
date Wed, 05 Dec 2012 15:36:43 +0100
parents 9f8c9611848a
children 2b1e6df5e21a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
1 /**
47b53ae385d1 merging old code
casties
parents:
diff changeset
2 * Implements the "annotations" uri of the Annotator API. see
47b53ae385d1 merging old code
casties
parents:
diff changeset
3 * <https://github.com/okfn/annotator/wiki/Storage>
47b53ae385d1 merging old code
casties
parents:
diff changeset
4 */
47b53ae385d1 merging old code
casties
parents:
diff changeset
5 package de.mpiwg.itgroup.annotations.restlet;
47b53ae385d1 merging old code
casties
parents:
diff changeset
6
47b53ae385d1 merging old code
casties
parents:
diff changeset
7 import java.io.IOException;
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
8 import java.io.UnsupportedEncodingException;
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
9 import java.net.URLDecoder;
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
10 import java.util.ArrayList;
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
11 import java.util.List;
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
12
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
13 import org.json.JSONArray;
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
14 import org.json.JSONException;
47b53ae385d1 merging old code
casties
parents:
diff changeset
15 import org.json.JSONObject;
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
16 import org.restlet.data.Form;
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
17 import org.restlet.data.Status;
47b53ae385d1 merging old code
casties
parents:
diff changeset
18 import org.restlet.ext.json.JsonRepresentation;
47b53ae385d1 merging old code
casties
parents:
diff changeset
19 import org.restlet.representation.Representation;
47b53ae385d1 merging old code
casties
parents:
diff changeset
20 import org.restlet.resource.Delete;
47b53ae385d1 merging old code
casties
parents:
diff changeset
21 import org.restlet.resource.Get;
47b53ae385d1 merging old code
casties
parents:
diff changeset
22 import org.restlet.resource.Post;
47b53ae385d1 merging old code
casties
parents:
diff changeset
23 import org.restlet.resource.Put;
47b53ae385d1 merging old code
casties
parents:
diff changeset
24
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
25 import de.mpiwg.itgroup.annotations.Annotation;
15
58357a4b86de ASSIGNED - # 249: Annotations shared in groups
casties
parents: 14
diff changeset
26 import de.mpiwg.itgroup.annotations.Person;
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
27 import de.mpiwg.itgroup.annotations.neo4j.AnnotationStore;
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
28 import de.mpiwg.itgroup.annotations.restlet.utils.JSONObjectComparator;
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
29
47b53ae385d1 merging old code
casties
parents:
diff changeset
30 /**
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
31 * Implements the "annotations" uri of the Annotator API. see
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
32 * <https://github.com/okfn/annotator/wiki/Storage>
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
33 *
47b53ae385d1 merging old code
casties
parents:
diff changeset
34 * @author dwinter, casties
47b53ae385d1 merging old code
casties
parents:
diff changeset
35 *
47b53ae385d1 merging old code
casties
parents:
diff changeset
36 */
47b53ae385d1 merging old code
casties
parents:
diff changeset
37 public class AnnotatorAnnotations extends AnnotatorResourceImpl {
47b53ae385d1 merging old code
casties
parents:
diff changeset
38
47b53ae385d1 merging old code
casties
parents:
diff changeset
39 protected String getAllowedMethodsForHeader() {
47b53ae385d1 merging old code
casties
parents:
diff changeset
40 return "OPTIONS,GET,POST,PUT,DELETE";
47b53ae385d1 merging old code
casties
parents:
diff changeset
41 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
42
47b53ae385d1 merging old code
casties
parents:
diff changeset
43 /**
47b53ae385d1 merging old code
casties
parents:
diff changeset
44 * GET with JSON content-type.
47b53ae385d1 merging old code
casties
parents:
diff changeset
45 *
47b53ae385d1 merging old code
casties
parents:
diff changeset
46 * @param entity
47b53ae385d1 merging old code
casties
parents:
diff changeset
47 * @return
47b53ae385d1 merging old code
casties
parents:
diff changeset
48 */
47b53ae385d1 merging old code
casties
parents:
diff changeset
49 @Get("json")
47b53ae385d1 merging old code
casties
parents:
diff changeset
50 public Representation doGetJSON(Representation entity) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
51 logger.debug("AnnotatorAnnotations doGetJSON!");
47b53ae385d1 merging old code
casties
parents:
diff changeset
52 setCorsHeaders();
47b53ae385d1 merging old code
casties
parents:
diff changeset
53 // id from URI /annotations/{id}
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
54 String id = null;
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
55 String jsonId = (String) getRequest().getAttributes().get("id");
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
56 if (jsonId != null) {
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
57 // URL decode
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
58 try {
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
59 jsonId = URLDecoder.decode(jsonId, "UTF-8");
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
60 } catch (UnsupportedEncodingException e) {
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
61 // this shouldn't happen
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
62 }
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
63 id = decodeJsonId(jsonId);
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
64 logger.debug("annotation-id=" + id);
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
65 }
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
66
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
67 // do authentication
15
58357a4b86de ASSIGNED - # 249: Annotations shared in groups
casties
parents: 14
diff changeset
68 Person authUser = Person.createPersonWithId(this.checkAuthToken(entity));
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
69 logger.debug("request authenticated=" + authUser);
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
70
37
34b9d044d0bf authorisation added
dwinter
parents: 34
diff changeset
71 if (id == null) {
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
72 // no id -- send all annotations
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
73 Form form = getRequest().getResourceRef().getQueryAsForm();
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
74 int limit = getInt(form.getFirstValue("limit"));
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
75 int offset = getInt(form.getFirstValue("offset"));
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
76 String sortBy = form.getFirstValue("sortBy");
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
77 return getAllAnnotations(authUser, limit, offset, sortBy);
37
34b9d044d0bf authorisation added
dwinter
parents: 34
diff changeset
78 }
34b9d044d0bf authorisation added
dwinter
parents: 34
diff changeset
79
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
80 // send annotation with id
16
794077e6288c CLOSED - # 252: Tags for Annotations
casties
parents: 15
diff changeset
81 AnnotationStore store = getAnnotationStore();
794077e6288c CLOSED - # 252: Tags for Annotations
casties
parents: 15
diff changeset
82 Annotation annot = store.getAnnotationById(id);
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
83 if (annot != null) {
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
84 if (!annot.isActionAllowed("read", authUser, store)) {
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
85 setStatus(Status.CLIENT_ERROR_FORBIDDEN, "Not Authorized!");
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
86 return null;
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
87 }
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
88 JSONObject result = createAnnotatorJson(annot, (authUser == null));
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
89 return new JsonRepresentation(result);
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
90 } else {
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
91 // not found
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
92 setStatus(Status.CLIENT_ERROR_NOT_FOUND);
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
93 return null;
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
94 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
95 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
96
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
97 private Representation getAllAnnotations(Person authUser, int limit, int offset, String sortBy) {
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
98 AnnotationStore store = getAnnotationStore();
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
99 ArrayList<JSONObject> results = new ArrayList<JSONObject>();
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
100
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
101 // read all annotations
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
102 List<Annotation> annotations = store.getAnnotations(null, null);
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
103 for (Annotation annotation : annotations) {
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
104 // check permission
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
105 if (!annotation.isActionAllowed("read", authUser, store))
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
106 continue;
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
107 // add annotation to list
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
108 JSONObject jo = createAnnotatorJson(annotation, false);
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
109 results.add(jo);
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
110 }
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
111
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
112 // sort if necessary
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
113 if (sortBy != null) {
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
114 JSONObjectComparator.sortAnnotations(results, sortBy);
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
115 }
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
116
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
117 // put in JSON list
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
118 JSONArray rows = new JSONArray();
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
119 int cnt = 0;
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
120 for (JSONObject result : results) {
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
121 cnt += 1;
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
122 if (offset > 0 && cnt < offset)
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
123 continue;
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
124 rows.put(result);
65
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
125 if (limit > 0 && cnt >= limit)
c0dd5314bada deal with special characters in urls.
casties
parents: 63
diff changeset
126 break;
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
127 }
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
128
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
129 // assemble result object
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
130 JSONObject result = new JSONObject();
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
131 try {
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
132 result.put("rows", rows);
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
133 result.put("total", rows.length());
31
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
134 } catch (JSONException e) {
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
135 setStatus(Status.SERVER_ERROR_INTERNAL, "JSON Error");
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
136 return null;
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
137 }
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
138 return new JsonRepresentation(result);
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
139 }
9f653697437e annotationbrowser
dwinter
parents: 22
diff changeset
140
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
141 /**
20
715aa11d138b fixes in permission handling: admin and delete default to creator.
casties
parents: 16
diff changeset
142 * POST with JSON content-type. Creates a new Annotation.
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
143 *
47b53ae385d1 merging old code
casties
parents:
diff changeset
144 * @return
47b53ae385d1 merging old code
casties
parents:
diff changeset
145 */
47b53ae385d1 merging old code
casties
parents:
diff changeset
146 @Post("json")
47b53ae385d1 merging old code
casties
parents:
diff changeset
147 public Representation doPostJson(Representation entity) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
148 logger.debug("AnnotatorAnnotations doPostJSON!");
47b53ae385d1 merging old code
casties
parents:
diff changeset
149 // set headers
47b53ae385d1 merging old code
casties
parents:
diff changeset
150 setCorsHeaders();
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
151
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
152 // do authentication TODO: who's allowed to create?
15
58357a4b86de ASSIGNED - # 249: Annotations shared in groups
casties
parents: 14
diff changeset
153 Person authUser = Person.createPersonWithId(this.checkAuthToken(entity));
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
154 logger.debug("request authenticated=" + authUser);
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
155 if (authUser == null) {
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
156 setStatus(Status.CLIENT_ERROR_FORBIDDEN, "Not Authorized!");
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
157 return null;
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
158 }
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
159
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
160 Annotation annot = null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
161 try {
47b53ae385d1 merging old code
casties
parents:
diff changeset
162 JsonRepresentation jrep = new JsonRepresentation(entity);
47b53ae385d1 merging old code
casties
parents:
diff changeset
163 JSONObject jo = jrep.getJsonObject();
47b53ae385d1 merging old code
casties
parents:
diff changeset
164 if (jo == null) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
165 setStatus(Status.SERVER_ERROR_INTERNAL);
47b53ae385d1 merging old code
casties
parents:
diff changeset
166 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
167 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
168 // make sure id is not set for POST
47b53ae385d1 merging old code
casties
parents:
diff changeset
169 jo.remove("id");
47b53ae385d1 merging old code
casties
parents:
diff changeset
170 // get Annotation object from posted JSON
47b53ae385d1 merging old code
casties
parents:
diff changeset
171 annot = createAnnotation(jo, entity);
47b53ae385d1 merging old code
casties
parents:
diff changeset
172 } catch (IOException e1) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
173 setStatus(Status.SERVER_ERROR_INTERNAL);
47b53ae385d1 merging old code
casties
parents:
diff changeset
174 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
175 } catch (JSONException e) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
176 setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
47b53ae385d1 merging old code
casties
parents:
diff changeset
177 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
178 }
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
179 if (annot == null) {
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
180 setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
47b53ae385d1 merging old code
casties
parents:
diff changeset
181 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
182 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
183 Annotation storedAnnot;
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
184 // store Annotation
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
185 storedAnnot = getAnnotationStore().storeAnnotation(annot);
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
186 /*
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
187 * according to https://github.com/okfn/annotator/wiki/Storage we should
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
188 * return 303: see other. For now we return the annotation.
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
189 */
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
190 JSONObject jo = createAnnotatorJson(storedAnnot, (authUser == null));
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
191 JsonRepresentation retRep = new JsonRepresentation(jo);
47b53ae385d1 merging old code
casties
parents:
diff changeset
192 return retRep;
47b53ae385d1 merging old code
casties
parents:
diff changeset
193 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
194
47b53ae385d1 merging old code
casties
parents:
diff changeset
195 /**
20
715aa11d138b fixes in permission handling: admin and delete default to creator.
casties
parents: 16
diff changeset
196 * PUT with JSON content-type. Modifies an Annotation.
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
197 *
47b53ae385d1 merging old code
casties
parents:
diff changeset
198 * @param entity
47b53ae385d1 merging old code
casties
parents:
diff changeset
199 * @return
47b53ae385d1 merging old code
casties
parents:
diff changeset
200 */
47b53ae385d1 merging old code
casties
parents:
diff changeset
201 @Put("json")
47b53ae385d1 merging old code
casties
parents:
diff changeset
202 public Representation doPutJSON(Representation entity) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
203 logger.debug("AnnotatorAnnotations doPutJSON!");
47b53ae385d1 merging old code
casties
parents:
diff changeset
204 setCorsHeaders();
47b53ae385d1 merging old code
casties
parents:
diff changeset
205 // id from URI /annotations/{id}
47b53ae385d1 merging old code
casties
parents:
diff changeset
206 String jsonId = (String) getRequest().getAttributes().get("id");
47b53ae385d1 merging old code
casties
parents:
diff changeset
207 String id = decodeJsonId(jsonId);
47b53ae385d1 merging old code
casties
parents:
diff changeset
208 logger.debug("annotation-id=" + id);
47b53ae385d1 merging old code
casties
parents:
diff changeset
209
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
210 // do authentication
15
58357a4b86de ASSIGNED - # 249: Annotations shared in groups
casties
parents: 14
diff changeset
211 Person authUser = Person.createPersonWithId(this.checkAuthToken(entity));
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
212 logger.debug("request authenticated=" + authUser);
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
213
47b53ae385d1 merging old code
casties
parents:
diff changeset
214 Annotation annot = null;
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
215 AnnotationStore store = getAnnotationStore();
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
216 try {
47b53ae385d1 merging old code
casties
parents:
diff changeset
217 JsonRepresentation jrep = new JsonRepresentation(entity);
47b53ae385d1 merging old code
casties
parents:
diff changeset
218 JSONObject jo = jrep.getJsonObject();
47b53ae385d1 merging old code
casties
parents:
diff changeset
219 if (jo == null) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
220 setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
47b53ae385d1 merging old code
casties
parents:
diff changeset
221 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
222 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
223 // get stored Annotation
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
224 Annotation storedAnnot = store.getAnnotationById(id);
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
225 if (storedAnnot == null) {
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
226 setStatus(Status.CLIENT_ERROR_NOT_FOUND);
47b53ae385d1 merging old code
casties
parents:
diff changeset
227 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
228 }
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
229 if (!storedAnnot.isActionAllowed("update", authUser, store)) {
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
230 setStatus(Status.CLIENT_ERROR_FORBIDDEN);
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
231 return null;
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
232 }
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
233 // update from posted JSON
47b53ae385d1 merging old code
casties
parents:
diff changeset
234 annot = updateAnnotation(storedAnnot, jo, entity);
47b53ae385d1 merging old code
casties
parents:
diff changeset
235 // store Annotation
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
236 storedAnnot = store.storeAnnotation(annot);
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
237 /*
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
238 * according to https://github.com/okfn/annotator/wiki/Storage we
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
239 * should return 303: see other. but the client doesn't like it
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
240 * setStatus(Status.REDIRECTION_SEE_OTHER); // go to same URL as
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
241 * this one Reference thisUrl = this.getReference();
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
242 * this.getResponse().setLocationRef(thisUrl);
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
243 */
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
244 // return new annotation
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
245 jo = createAnnotatorJson(storedAnnot, (authUser == null));
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
246 JsonRepresentation retRep = new JsonRepresentation(jo);
47b53ae385d1 merging old code
casties
parents:
diff changeset
247 return retRep;
47b53ae385d1 merging old code
casties
parents:
diff changeset
248 } catch (JSONException e) {
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
249 logger.error("Error in doPutJSON", e);
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
250 setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
47b53ae385d1 merging old code
casties
parents:
diff changeset
251 } catch (IOException e) {
63
9f8c9611848a fixed bug with new rectangle shapes. added limit, offset and sortBy parameters to annotator/ and annotator/search.
casties
parents: 61
diff changeset
252 logger.error("Error in doPutJSON", e);
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
253 setStatus(Status.SERVER_ERROR_INTERNAL, "Other Error");
47b53ae385d1 merging old code
casties
parents:
diff changeset
254 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
255 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
256 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
257
47b53ae385d1 merging old code
casties
parents:
diff changeset
258 /**
20
715aa11d138b fixes in permission handling: admin and delete default to creator.
casties
parents: 16
diff changeset
259 * DELETE with JSON content-type. Deletes an Annotation.
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
260 *
47b53ae385d1 merging old code
casties
parents:
diff changeset
261 * @param entity
47b53ae385d1 merging old code
casties
parents:
diff changeset
262 * @return
47b53ae385d1 merging old code
casties
parents:
diff changeset
263 */
47b53ae385d1 merging old code
casties
parents:
diff changeset
264 @Delete("json")
47b53ae385d1 merging old code
casties
parents:
diff changeset
265 public Representation doDeleteJSON(Representation entity) {
47b53ae385d1 merging old code
casties
parents:
diff changeset
266 logger.debug("AnnotatorAnnotations doDeleteJSON!");
47b53ae385d1 merging old code
casties
parents:
diff changeset
267 setCorsHeaders();
47b53ae385d1 merging old code
casties
parents:
diff changeset
268 // id from URI /annotations/{id}
47b53ae385d1 merging old code
casties
parents:
diff changeset
269 String jsonId = (String) getRequest().getAttributes().get("id");
47b53ae385d1 merging old code
casties
parents:
diff changeset
270 String id = decodeJsonId(jsonId);
47b53ae385d1 merging old code
casties
parents:
diff changeset
271 logger.debug("annotation-id=" + id);
47b53ae385d1 merging old code
casties
parents:
diff changeset
272
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
273 // do authentication
15
58357a4b86de ASSIGNED - # 249: Annotations shared in groups
casties
parents: 14
diff changeset
274 Person authUser = Person.createPersonWithId(this.checkAuthToken(entity));
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
275 logger.debug("request authenticated=" + authUser);
16
794077e6288c CLOSED - # 252: Tags for Annotations
casties
parents: 15
diff changeset
276 AnnotationStore store = getAnnotationStore();
794077e6288c CLOSED - # 252: Tags for Annotations
casties
parents: 15
diff changeset
277 Annotation annot = store.getAnnotationById(id);
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
278 if (annot != null) {
61
b8ef15c8c4a5 implemented new shape format for image annotations.
casties
parents: 41
diff changeset
279 if (!annot.isActionAllowed("delete", authUser, store)) {
14
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
280 setStatus(Status.CLIENT_ERROR_FORBIDDEN, "Not Authorized!");
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
281 return null;
629e15b345aa permissions mostly work. need more server-side checking.
casties
parents: 4
diff changeset
282 }
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
283 }
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
284 // delete annotation
32
0731c4549065 UI for editing groups and persons works now. (still no authorisation!)
casties
parents: 22
diff changeset
285 store.deleteAnnotationById(id);
4
3599b29c393f store seems to work now :-)
casties
parents: 3
diff changeset
286 setStatus(Status.SUCCESS_NO_CONTENT);
3
47b53ae385d1 merging old code
casties
parents:
diff changeset
287 return null;
47b53ae385d1 merging old code
casties
parents:
diff changeset
288 }
47b53ae385d1 merging old code
casties
parents:
diff changeset
289
47b53ae385d1 merging old code
casties
parents:
diff changeset
290 }