All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.zahori.server.controller.ClientTestRepoController Maven / Gradle / Ivy

There is a newer version: 0.1.20
Show newest version
package io.zahori.server.controller;

/*-
 * #%L
 * zahori-server
 * $Id:$
 * $HeadURL:$
 * %%
 * Copyright (C) 2021 PANEL SISTEMAS INFORMATICOS,S.L
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * 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 Affero General Public License
 * along with this program.  If not, see .
 * #L%
 */

import io.zahori.server.model.Client;
import io.zahori.server.model.ClientTestRepo;
import io.zahori.server.model.TestRepository;
import io.zahori.server.repository.ClientTestRepository;
import io.zahori.server.repository.ClientsRepository;
import io.zahori.server.security.JWTUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;

import javax.servlet.http.HttpServletRequest;
import java.util.Optional;
import java.util.Set;

/**
 * The type Clients test repo controller.
 */
@RestController
@RequestMapping("/api/clienttestrepo/")

public class ClientTestRepoController {
    private static final Logger LOG = LoggerFactory.getLogger(ClientTestRepoController.class);

    @Autowired
    private ClientTestRepository clientTestRepository;

    @GetMapping()
    public ResponseEntity getClientTestRepo(HttpServletRequest request) {
        try{
            LOG.info("get client test repo");
            Iterable clientTestRepo = clientTestRepository.findByClientId(JWTUtils.getClientId(request));
            return new ResponseEntity<>(clientTestRepo, HttpStatus.OK);
        }catch (Exception e){
            LOG.error(e.getMessage());
            return new ResponseEntity<>(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR);
        }
    }
    @PostMapping("upgrade")
    public ResponseEntity saveClientTestRepository (@RequestBody ClientTestRepo clientTestRepo, HttpServletRequest request){
        try{
            LOG.info("upgarde client test repository");
            if(clientTestRepo.getId().getClientId()==null)
                clientTestRepo.getId().setClientId(Long.getLong("0"));
            clientTestRepo = clientTestRepository.save(clientTestRepo);
            return new ResponseEntity<>(clientTestRepo, HttpStatus.OK);
        }catch (Exception e){
            LOG.error(e.getMessage());
            return new ResponseEntity<>(e.getMessage(), HttpStatus.INTERNAL_SERVER_ERROR);
        }
    }
}