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

org.ctoolkit.restapi.client.agent.adaptee.GenericJsonMigrationBatchAdaptee 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.MigrationBatch;
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.ListExecutorAdaptee;
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.List;
import java.util.Locale;
import java.util.Map;

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

/**
 * The MigrationBatch as {@link MigrationBatch} concrete adaptee implementation.
 *
 * @author Jozef Pohorelec
 */
public class GenericJsonMigrationBatchAdaptee
        extends AbstractGoogleClientAdaptee
        implements
        GetExecutorAdaptee,
        InsertExecutorAdaptee,
        UpdateExecutorAdaptee,
        ListExecutorAdaptee,
        DeleteExecutorAdaptee
{
    @Inject
    public GenericJsonMigrationBatchAdaptee( CustomizedCtoolkitAgent ctoolkitAgent )
    {
        super( ctoolkitAgent );
    }

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

        return client().exportBatch().get( identifier.getLong() );
    }

    @Override
    public MigrationBatch 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.Get ) request ).execute( credential );
    }

    @Override
    public Object prepareInsert( @Nonnull MigrationBatch resource,
                                 @Nullable Identifier parentKey,
                                 @Nullable MediaProvider provider )
            throws IOException
    {
        checkNotNull( resource );
        return client().migrationBatch().insert( resource );
    }

    @Override
    public MigrationBatch 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.Insert ) request ).execute( credential );
    }

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

        return client().migrationBatch().update( identifier.getLong(), resource );
    }

    @Override
    public MigrationBatch 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.Update ) request ).execute( credential );
    }

    @Override
    public Object prepareDelete( @Nonnull Identifier identifier ) throws IOException
    {
        checkNotNull( identifier, "Identifier cannot be null" );
        return client().exportBatch().delete( identifier.getLong() );
    }

    @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.ExportBatch.Delete ) request ).execute( credential );
    }

    @Override
    public Object prepareList( @Nullable Identifier identifier ) throws IOException
    {
        return client().exportBatch().list();
    }

    @Override
    @SuppressWarnings( "unchecked" )
    public List executeList( @Nonnull Object request,
                                          @Nullable Map parameters,
                                          @Nullable Locale locale,
                                          @Nullable Integer start,
                                          @Nullable Integer length,
                                          @Nullable String orderBy,
                                          @Nullable Boolean ascending )
            throws IOException
    {
        checkNotNull( request );

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


        fill( request, parameters );
        return ( ( CustomizedCtoolkitAgent.MigrationBatch.List ) request ).execute( credential ).getItems();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy