io.relution.jenkins.scmsqs.model.CodeCommitMessageParser.java Source code

Java tutorial

Introduction

Here is the source code for io.relution.jenkins.scmsqs.model.CodeCommitMessageParser.java

Source

/*
 * Copyright 2016 M-Way Solutions GmbH
 *
 * 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 io.relution.jenkins.scmsqs.model;

import com.amazonaws.services.sqs.model.Message;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;

import org.apache.commons.lang3.StringUtils;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

import io.relution.jenkins.scmsqs.interfaces.Event;
import io.relution.jenkins.scmsqs.interfaces.MessageParser;
import io.relution.jenkins.scmsqs.logging.Log;
import io.relution.jenkins.scmsqs.model.entities.codecommit.CodeCommit;
import io.relution.jenkins.scmsqs.model.entities.codecommit.CodeCommitEvent;
import io.relution.jenkins.scmsqs.model.entities.codecommit.MessageBody;
import io.relution.jenkins.scmsqs.model.entities.codecommit.Record;
import io.relution.jenkins.scmsqs.model.entities.codecommit.Records;
import io.relution.jenkins.scmsqs.model.entities.codecommit.Reference;

public class CodeCommitMessageParser implements MessageParser {

    private static final String EVENT_SOURCE_CODECOMMIT = "aws:codecommit";

    private final Gson gson;

    public CodeCommitMessageParser() {
        this.gson = new GsonBuilder().excludeFieldsWithoutExposeAnnotation().create();
    }

    @Override
    public List<Event> parseMessage(final Message message) {
        try {
            final MessageBody body = this.gson.fromJson(message.getBody(), MessageBody.class);
            Log.info("Got message with subject: %s", body.getSubject());
            final String json = body.getMessage();

            if (StringUtils.isEmpty(json)) {
                Log.warning("Message contains no text");
                return Collections.emptyList();
            }

            if (!json.startsWith("{") || !json.endsWith("}")) {
                Log.warning("Message text is no JSON");
                return Collections.emptyList();
            }

            return this.parseRecords(json);
        } catch (final com.google.gson.JsonSyntaxException e) {
            Log.warning("JSON syntax exception, cannot parse message: %s", e);
        }
        return Collections.emptyList();
    }

    private List<Event> parseRecords(final String json) {
        final Records records = this.gson.fromJson(json, Records.class);
        final List<Event> events = new ArrayList<>(records.size());

        for (final Record record : records) {
            this.parseEvents(events, record);
        }

        return events;
    }

    private void parseEvents(final List<Event> events, final Record record) {
        if (!this.isCodeCommitEvent(record)) {
            return;
        }

        final CodeCommit codeCommit = record.getCodeCommit();

        for (final Reference reference : codeCommit.getReferences()) {
            final Event event = new CodeCommitEvent(record, reference);
            events.add(event);
        }
    }

    private boolean isCodeCommitEvent(final Record record) {
        return StringUtils.equals(EVENT_SOURCE_CODECOMMIT, record.getEventSource());
    }
}