blob: 820487221624a89268abff3e2407465f53598370 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.servicecomb.pack.alpha.spec.tcc.db.test;
import com.fasterxml.jackson.annotation.JsonAutoDetect;
import com.fasterxml.jackson.annotation.JsonAutoDetect.Visibility;
import java.lang.invoke.MethodHandles;
import java.util.Collection;
import java.util.LinkedList;
import java.util.List;
import org.apache.servicecomb.pack.alpha.spec.tcc.db.jpa.TccTxEvent;
import org.apache.servicecomb.pack.alpha.spec.tcc.db.service.TccTxEventRepository;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.context.annotation.Profile;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
@Controller
@RequestMapping("/tcc")
@Profile("test")
public class AlphaTccEventController {
private static final Logger LOG = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
//As we doesn't enable migration for test, we don't need to access the history table here
private final TccTxEventRepository tccTxEventRepository;
public AlphaTccEventController(TccTxEventRepository tccTxEventRepository) {
this.tccTxEventRepository = tccTxEventRepository;
}
@GetMapping(value = "/events")
public ResponseEntity<Collection<TccTxEventVo>> events() {
LOG.info("Get the events request");
Iterable<TccTxEvent> events = tccTxEventRepository.findAll();
List<TccTxEventVo> eventVos = new LinkedList<>();
events.forEach(event -> eventVos.add(new TccTxEventVo(event)));
LOG.info("Get the event size " + eventVos.size());
return ResponseEntity.ok(eventVos);
}
@DeleteMapping("/events")
public ResponseEntity<String> clear() {
tccTxEventRepository.deleteAll();
return ResponseEntity.ok("All events deleted");
}
@JsonAutoDetect(fieldVisibility = Visibility.ANY)
private static class TccTxEventVo extends TccTxEvent {
private TccTxEventVo(TccTxEvent event) {
super(event);
}
}
}