SubscriptionServlet.java
/*
* Copyright (C) 2020-2024 by Savoir-faire Linux
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.jami.jams.server.servlets.api.admin.update;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
import jakarta.servlet.ServletException;
import jakarta.servlet.annotation.WebServlet;
import jakarta.servlet.http.HttpServlet;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import net.jami.jams.common.annotations.JsonContent;
import net.jami.jams.common.annotations.ScopedServletMethod;
import net.jami.jams.common.objects.responses.SubscriptionStatusResponse;
import net.jami.jams.common.objects.user.AccessLevel;
import net.jami.jams.common.serialization.adapters.GsonFactory;
import net.jami.jams.server.Server;
import net.jami.jams.server.licensing.LicenseService;
import java.io.FileWriter;
import java.io.IOException;
@WebServlet("/api/admin/subscription")
public class SubscriptionServlet extends HttpServlet {
private final Gson gson = GsonFactory.createGson();
// Get the subscription status (see: SubscriptionStatusResponse.class)
@Override
@ScopedServletMethod(securityGroups = {AccessLevel.ADMIN})
@JsonContent
protected void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
SubscriptionStatusResponse subscriptionStatusResponse = new SubscriptionStatusResponse();
subscriptionStatusResponse.setLicenseInformation(
Server.licenseService.getLicenseInformation());
subscriptionStatusResponse.setActivated(Server.activated.get());
resp.getOutputStream().write(gson.toJson(subscriptionStatusResponse).getBytes());
resp.flushBuffer();
}
// Upload the license here, which is really just uploading a base64 representation of the
// keypair - and store it
// on disk..
@Override
@ScopedServletMethod(securityGroups = {AccessLevel.ADMIN})
@JsonContent
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException {
JsonObject jsonObject = gson.fromJson(req.getReader(), JsonObject.class);
String license = jsonObject.get("base64License").getAsString();
// create .dat file to be used later
FileWriter fw = new FileWriter("license.dat");
fw.write(license);
fw.close();
LicenseService licenseService = new LicenseService();
licenseService.loadLicense();
if (Server.activated.get()) {
resp.setStatus(200);
}
}
}