driver733/VK-Uploader

View on GitHub
src/main/java/com/driver733/vkuploader/wallpost/attachment/support/string/AttachmentStringFromJson.java

Summary

Maintainability
A
45 mins
Test Coverage
/*
 * The MIT License (MIT)
 *
 * Copyright (c) 2018 Mikhail Yakushin
 *
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 * of this software and associated documentation files (the "Software"), to deal
 * in the Software without restriction, including without limitation the rights
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the Software is
 * furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included
 * in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 * SOFTWARE.
 */
package com.driver733.vkuploader.wallpost.attachment.support.string;

import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.jcabi.aspects.Immutable;
import java.io.IOException;

/**
 * Creates an attachment string
 *  from the response json.
 *
 *
 *
 * @since 0.1
 */
@Immutable
public final class AttachmentStringFromJson implements AttachmentString {

    /**
     * Group ID.
     */
    private final int group;

    /**
     * JsonElement that contains the response of the query.
     */
    private final JsonElement element;

    /**
     * Ctor.
     * @param element JsonElement that contains the response of the query.
     * @param group Group ID.
     */
    public AttachmentStringFromJson(
        final JsonElement element,
        final int group
    ) {
        this.element = element;
        this.group = group;
    }

    @Override
    @SuppressWarnings("PMD.AvoidDuplicateLiterals")
    public String attachmentString() throws IOException {
        final String formatted;
        final JsonObject object;
        if (this.element.isJsonPrimitive()) {
            formatted = String.format(
                "%s%d_%d",
                AttachmentType.AUDIO,
                -this.group,
                this.element.getAsInt()
            );
        } else if (this.element.isJsonObject()) {
            object = this.element.getAsJsonObject();
            if (object.has("artist")) {
                formatted = String.format(
                    "%s%d_%d",
                    AttachmentType.AUDIO.toString(),
                    object.get("owner_id").getAsInt(),
                    object.get("id").getAsInt()
                );
            } else if (object.has("photo_75")) {
                formatted = String.format(
                    "%s%d_%d",
                    AttachmentType.PHOTO,
                    object.get("owner_id").getAsInt(),
                    object.get("id").getAsInt()
                );
            } else if (object.has("ext")) {
                formatted = String.format(
                    "%s%d_%d",
                    AttachmentType.DOC,
                    object.get("owner_id").getAsInt(),
                    object.get("id").getAsInt()
                );
            } else {
                throw new IOException("Unknown AttachmentFormat");
            }
        } else {
            throw new IOException("Unknown AttachmentFormat");
        }
        return formatted;
    }

    /**
     * Attachment Type Enum.
     */
    @SuppressWarnings("unused")
    private enum AttachmentType {

        /**
         * PHOTO.
         */
        PHOTO("photo"),

        /**
         * VIDEO.
         */
        VIDEO("video"),

        /**
         * AUDIO.
         */
        AUDIO("audio"),

        /**
         * DOCUMENT.
         */
        DOC("doc"),

        /**
         * WIKI-PAGE.
         */
        PAGE("page"),

        /**
         * NOTE.
         */
        NOTE("note"),

        /**
         * POLL.
         */
        POLL("poll"),

        /**
         * PHOTO ALBUM.
         */
        ALBUM("album");

        /**
         * String for the corresponding Attachment type.
         */
        private final String type;

        /**
         * Ctor.
         * @param type String for the corresponding Attachment type.
         */
        AttachmentType(final String type) {
            this.type = type;
        }

        @Override
        public String toString() {
            return this.type;
        }
    }

}