aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/web/BaseServletResource.java
blob: 318f0d7b6c291b149605f64f3920abe1f2c586f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/*
 * Copyright 2015 Anton Tananaev (anton.tananaev@gmail.com)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.traccar.web;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.traccar.Context;
import org.traccar.helper.CommandCall;
import org.traccar.helper.Clazz;

/**
 *
 * @author Rafael
 */
public abstract class BaseServletResource<T> extends BaseServlet {

    private final Class<T> clazz = Clazz.getGenericArgumentType(getClass());

    public static final String GET = "GET";
    public static final String POST = "POST";
    public static final String PUT = "PUT";
    public static final String DELETE = "DELETE";

    public static final String PATH_PARAM_ID = "/\\d";
    public static final String SLASH = "/";
    public static final String VOID = "";

    @Override
    protected String getCommand(HttpServletRequest req) {
        String command = req.getPathInfo();
        if (command == null || command.matches(PATH_PARAM_ID)) {
            switch (req.getMethod()) {
                case GET:
                    command = "/get";
                    break;
                case POST:
                    command = "/add";
                    break;
                case PUT:
                    command = "/update";
                    break;
                case DELETE:
                    command = "/remove";
                    break;
                default:
                    command = "";
            }
        }
        return command;
    }

    protected String getPathParamId(String pathInfo) {
        if (pathInfo != null && pathInfo.matches(PATH_PARAM_ID)) {
            return pathInfo.replaceAll(SLASH, VOID);
        }
        return null;
    }

    protected abstract void get(HttpServletRequest req, HttpServletResponse resp) throws Exception;

    protected void add(HttpServletRequest req, HttpServletResponse resp) throws Exception {
        add(req, resp, null);
    }

    protected void update(HttpServletRequest req, HttpServletResponse resp) throws Exception {
        update(req, resp, null);
    }

    protected void remove(HttpServletRequest req, HttpServletResponse resp) throws Exception {
        remove(req, resp, null);
    }

    protected void add(HttpServletRequest req, HttpServletResponse resp, CommandCall<T> commandCall) throws Exception {
        if (commandCall != null) {
            commandCall.before();
        }

        T entity = JsonConverter.objectFromJson(req.getReader(), this.clazz);
        long userId = getUserId(req);
        if (commandCall != null) {
            commandCall.setUserId(userId);
            commandCall.setEntity(entity);
            commandCall.check();
        }

        Context.getDataManager().add(entity);

        long entityId = Clazz.getId(entity);
        Context.getDataManager().link(this.clazz, userId, entityId);

        if (commandCall != null) {
            commandCall.after();
        }

        sendResponse(resp.getWriter(), JsonConverter.objectToJson(entity));
    }

    protected void update(HttpServletRequest req, HttpServletResponse resp,
                          CommandCall<T> commandCall) throws Exception {
        if (commandCall != null) {
            commandCall.before();
        }

        T entity = JsonConverter.objectFromJson(req.getReader(), this.clazz);
        String entityId = getPathParamId(req.getPathInfo());
        if (entityId != null) {
            Clazz.setId(entity, Long.parseLong(entityId));
        }
        long userId = getUserId(req);

        if (commandCall != null) {
            commandCall.setUserId(userId);
            commandCall.setEntity(entity);
            commandCall.check();
        }

        Context.getDataManager().update(entity);

        if (commandCall != null) {
            commandCall.after();
        }

        sendResponse(resp.getWriter(), true);
    }

    protected void remove(HttpServletRequest req, HttpServletResponse resp,
                          CommandCall<T> commandCall) throws Exception {
        if (commandCall != null) {
            commandCall.before();
        }

        T entity = Clazz.newInstance(this.clazz);
        String entityId = getPathParamId(req.getPathInfo());
        if (entityId != null) {
            Clazz.setId(entity, Long.parseLong(entityId));
        } else {
            entity = JsonConverter.objectFromJson(req.getReader(), this.clazz);
        }
        long userId = getUserId(req);

        if (commandCall != null) {
            commandCall.setUserId(userId);
            commandCall.setEntity(entity);
            commandCall.check();
        }

        Context.getDataManager().remove(entity);

        if (commandCall != null) {
            commandCall.after();
        }

        sendResponse(resp.getWriter(), true);
    }

}