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

org.ctoolkit.restapi.client.agent.adaptee.GenericJsonMigrationItemAdaptee Maven / Gradle / Ivy

There is a newer version: 0.34
Show newest version
/*
 * Copyright (c) 2017 Comvai, s.r.o. All Rights Reserved.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */

package org.ctoolkit.restapi.client.agent.adaptee;

import org.ctoolkit.api.agent.model.MigrationItem;
import org.ctoolkit.restapi.client.Identifier;
import org.ctoolkit.restapi.client.RequestCredential;
import org.ctoolkit.restapi.client.adaptee.DeleteExecutorAdaptee;
import org.ctoolkit.restapi.client.adaptee.GetExecutorAdaptee;
import org.ctoolkit.restapi.client.adaptee.InsertExecutorAdaptee;
import org.ctoolkit.restapi.client.adaptee.MediaProvider;
import org.ctoolkit.restapi.client.adaptee.UpdateExecutorAdaptee;
import org.ctoolkit.restapi.client.adapter.AbstractGoogleClientAdaptee;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import javax.inject.Inject;
import java.io.IOException;
import java.util.Locale;
import java.util.Map;

import static com.google.common.base.Preconditions.checkNotNull;

/**
 * The MigrationItem as {@link MigrationItem} concrete adaptee implementation.
 *
 * @author Aurel Medvegy
 */
public class GenericJsonMigrationItemAdaptee
        extends AbstractGoogleClientAdaptee
        implements
        GetExecutorAdaptee,
        InsertExecutorAdaptee,
        UpdateExecutorAdaptee,
        DeleteExecutorAdaptee
{
    @Inject
    public GenericJsonMigrationItemAdaptee( CustomizedCtoolkitAgent ctoolkitAgent )
    {
        super( ctoolkitAgent );
    }

    @Override
    public Object prepareGet( @Nonnull Identifier identifier )
            throws IOException
    {
        checkNotNull( identifier, "Parent identifier cannot be null" );
        checkNotNull( identifier.child(), "Item identifier cannot be null" );

        Long metadataId = identifier.getLong();
        Long id = identifier.child().getLong();
        return client().exportBatch().item().get( metadataId, id );
    }

    @Override
    public MigrationItem executeGet( @Nonnull Object request,
                                  @Nullable Map parameters,
                                  @Nullable Locale locale )
            throws IOException
    {
        checkNotNull( request );

        RequestCredential credential = new RequestCredential();
        credential.fillInFrom( parameters, true );

        fill( request, parameters );
        return ( ( CustomizedCtoolkitAgent.MigrationBatch.Item.Get ) request ).execute( credential );
    }

    @Override
    public Object prepareInsert( @Nonnull MigrationItem resource,
                                 @Nullable Identifier parentKey,
                                 @Nullable MediaProvider provider )
            throws IOException
    {
        checkNotNull( resource );
        checkNotNull( parentKey );

        return client().migrationBatch().item().insert( parentKey.getLong(), resource );
    }

    @Override
    public MigrationItem executeInsert( @Nonnull Object request,
                                     @Nullable Map parameters,
                                     @Nullable Locale locale )
            throws IOException
    {
        checkNotNull( request );

        RequestCredential credential = new RequestCredential();
        credential.fillInFrom( parameters, true );

        fill( request, parameters );
        return ( ( CustomizedCtoolkitAgent.MigrationBatch.Item.Insert ) request ).execute( credential );
    }

    @Override
    public Object prepareUpdate( @Nonnull MigrationItem resource,
                                 @Nonnull Identifier identifier,
                                 @Nullable MediaProvider provider )
            throws IOException
    {
        checkNotNull( resource );
        checkNotNull( identifier, "Parent identifier cannot be null" );
        checkNotNull( identifier.child(), "Item identifier cannot be null" );

        Long metadataId = identifier.getLong();
        Long id = identifier.child().getLong();
        return client().migrationBatch().item().update( metadataId, id, resource );
    }

    @Override
    public MigrationItem executeUpdate( @Nonnull Object request,
                                     @Nullable Map parameters,
                                     @Nullable Locale locale )
            throws IOException
    {
        checkNotNull( request );

        RequestCredential credential = new RequestCredential();
        credential.fillInFrom( parameters, true );

        fill( request, parameters );
        return ( ( CustomizedCtoolkitAgent.MigrationBatch.Item.Update ) request ).execute( credential );
    }

    @Override
    public Object prepareDelete( @Nonnull Identifier identifier ) throws IOException
    {
        checkNotNull( identifier, "Parent identifier cannot be null" );
        checkNotNull( identifier.child(), "Item identifier cannot be null" );

        Long metadataId = identifier.getLong();
        Long id = identifier.child().getLong();
        return client().migrationBatch().item().delete( metadataId, id );
    }

    @Override
    public void executeDelete( @Nonnull Object request,
                               @Nullable Map parameters,
                               @Nullable Locale locale ) throws IOException
    {
        checkNotNull( request );

        RequestCredential credential = new RequestCredential();
        credential.fillInFrom( parameters, true );

        ( ( CustomizedCtoolkitAgent.MigrationBatch.Item.Delete ) request ).execute( credential );
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy