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

org.commonjava.indy.setback.rest.SetBackController Maven / Gradle / Ivy

/**
 * Copyright (C) 2011-2018 Red Hat, Inc. (https://github.com/Commonjava/indy)
 *
 * 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 org.commonjava.indy.setback.rest;

import javax.enterprise.context.ApplicationScoped;
import javax.inject.Inject;

import org.commonjava.indy.IndyWorkflowException;
import org.commonjava.indy.data.IndyDataException;
import org.commonjava.indy.data.StoreDataManager;
import org.commonjava.indy.model.core.ArtifactStore;
import org.commonjava.indy.model.core.StoreKey;
import org.commonjava.indy.setback.conf.SetbackConfig;
import org.commonjava.indy.setback.data.SetBackDataException;
import org.commonjava.indy.setback.data.SetBackSettingsManager;
import org.commonjava.indy.subsys.datafile.DataFile;
import org.commonjava.indy.util.ApplicationStatus;

@ApplicationScoped
public class SetBackController
{
    @Inject
    private SetBackSettingsManager manager;

    @Inject
    private StoreDataManager storeManager;

    @Inject
    private SetbackConfig config;

    protected SetBackController()
    {
    }

    public SetBackController( final SetBackSettingsManager manager, final StoreDataManager storeManager, SetbackConfig config )
    {
        this.manager = manager;
        this.storeManager = storeManager;
        this.config = config;
    }

    public DataFile getSetBackSettings( final StoreKey key )
        throws IndyWorkflowException
    {
        checkEnabled();
        return manager.getSetBackSettings( key );
    }

    public boolean deleteSetBackSettings( final StoreKey key )
        throws IndyWorkflowException
    {
        checkEnabled();
        try
        {
            final ArtifactStore store = storeManager.getArtifactStore( key );
            if ( store != null )
            {
                if ( manager.deleteStoreSettings( store ) )
                {
                    manager.generateStoreSettings( store );
                    return true;
                }
            }
        }
        catch ( final SetBackDataException e )
        {
            throw new IndyWorkflowException( "Failed to delete SetBack settings.xml for: %s. Reason: %s", e, key,
                                              e.getMessage() );
        }
        catch ( final IndyDataException e )
        {
            throw new IndyWorkflowException( "Failed to retrieve ArtifactStore for: %s. Reason: %s", e, key,
                                              e.getMessage() );
        }

        return false;
    }

    private void checkEnabled()
            throws IndyWorkflowException
    {
        if ( !config.isEnabled() )
        {
            throw new IndyWorkflowException( ApplicationStatus.BAD_REQUEST.code(), "SetBack is disabled." );
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy