org.jbb.lib.eventbus.JbbEventBus.java Source code

Java tutorial

Introduction

Here is the source code for org.jbb.lib.eventbus.JbbEventBus.java

Source

/*
 * Copyright (C) 2018 the original author or authors.
 *
 * This file is part of jBB Application Project.
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  You may obtain a copy of the License at
 *        http://www.apache.org/licenses/LICENSE-2.0
 */

package org.jbb.lib.eventbus;

import com.google.common.eventbus.EventBus;

import org.apache.commons.lang3.StringUtils;
import org.jbb.lib.commons.RequestIdUtils;
import org.jbb.lib.commons.security.SecurityContentUser;
import org.jbb.lib.commons.security.UserDetailsSource;
import org.jbb.lib.commons.web.HttpServletRequestHolder;
import org.jbb.lib.eventbus.metrics.JbbEventMetrics;
import org.springframework.stereotype.Component;

import java.time.LocalDateTime;
import java.util.Optional;
import java.util.Set;

import javax.validation.ConstraintViolation;
import javax.validation.Validator;

import lombok.extern.slf4j.Slf4j;

import static org.apache.commons.lang3.math.NumberUtils.LONG_ZERO;

@Slf4j
@Component
public class JbbEventBus extends EventBus {

    private final Validator validator;
    private final JbbEventMetrics jbbEventMetrics;
    private final UserDetailsSource userDetailsSource;
    private final HttpServletRequestHolder servletRequestHolder;

    public JbbEventBus(EventExceptionHandler exceptionHandler, EventBusAuditRecorder auditRecorder,
            Validator validator, JbbEventMetrics jbbEventMetrics) {
        super(exceptionHandler);
        register(auditRecorder);
        this.validator = validator;
        this.jbbEventMetrics = jbbEventMetrics;
        this.userDetailsSource = new UserDetailsSource();
        this.servletRequestHolder = new HttpServletRequestHolder();
    }

    @Override
    public void post(Object event) {
        if (event instanceof JbbEvent) {
            JbbEvent jbbEvent = (JbbEvent) event;
            includeMetaData(jbbEvent);
            validateEvent(jbbEvent);
            jbbEvent.setPublishDateTime(LocalDateTime.now());
            super.post(event);
            jbbEventMetrics.incrementMetricCounter(jbbEvent);
        } else {
            throw new IllegalArgumentException(
                    "You should post only JbbEvents through JbbEventBus, not: " + event.getClass());
        }
    }

    private void includeMetaData(JbbEvent event) {
        String requestId = StringUtils.defaultIfBlank(RequestIdUtils.getCurrentRequestId(), null);
        event.setSourceRequestId(Optional.ofNullable(requestId));

        SecurityContentUser securityContentUser = userDetailsSource.getFromApplicationContext();
        if (securityContentUser != null && securityContentUser.getUserId() != null
                && !LONG_ZERO.equals(securityContentUser.getUserId())) {
            event.setSourceMemberId(Optional.of(securityContentUser.getUserId()));
        }

        event.setSourceIpAddress(Optional.ofNullable(servletRequestHolder.getCurrentIpAddress()));
        event.setSourceSessionId(Optional.ofNullable(servletRequestHolder.getCurrentSessionId()));
    }

    private void validateEvent(Object event) {
        Set<ConstraintViolation<Object>> violationSet = validator.validate(event);
        if (!violationSet.isEmpty()) {
            log.warn("Event {} is not valid. Violation set: {}", event, violationSet);
            throw new EventValidationException();
        }
    }
}