CloudSlang/cs-actions

View on GitHub
cs-utilities/src/main/java/io/cloudslang/content/utilities/actions/SchedulerTimeByHours.java

Summary

Maintainability
A
55 mins
Test Coverage
/*
 * Copyright 2022-2024 Open Text
 * This program and the accompanying materials
 * are made available under the terms of the Apache License v2.0 which accompany this distribution.
 *
 * The Apache License is available 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.cloudslang.content.utilities.actions;

import com.hp.oo.sdk.content.annotations.Action;
import com.hp.oo.sdk.content.annotations.Output;
import com.hp.oo.sdk.content.annotations.Param;
import com.hp.oo.sdk.content.annotations.Response;
import io.cloudslang.content.constants.ReturnCodes;
import io.cloudslang.content.utilities.services.SchedulerTimestampImpl;
import io.cloudslang.content.utils.StringUtilities;

import java.util.List;
import java.util.Map;

import static com.hp.oo.sdk.content.plugin.ActionMetadata.MatchType.COMPARE_EQUAL;
import static com.hp.oo.sdk.content.plugin.ActionMetadata.ResponseType.ERROR;
import static com.hp.oo.sdk.content.plugin.ActionMetadata.ResponseType.RESOLVED;
import static io.cloudslang.content.constants.OutputNames.EXCEPTION;
import static io.cloudslang.content.constants.OutputNames.RETURN_CODE;
import static io.cloudslang.content.constants.ResponseNames.FAILURE;
import static io.cloudslang.content.constants.ResponseNames.SUCCESS;
import static io.cloudslang.content.utilities.util.Constants.SchedulerTimeConstants.*;
import static io.cloudslang.content.utilities.util.Constants.SchedulerTimeConstants.NUMBER_OF_HOURS;
import static io.cloudslang.content.utilities.util.Descriptions.Counter.FAILURE_DESC;
import static io.cloudslang.content.utilities.util.Descriptions.Counter.SUCCESS_DESC;
import static io.cloudslang.content.utilities.util.Descriptions.SchedulerTime.*;
import static io.cloudslang.content.utilities.util.Descriptions.SchedulerTime.NUMBER_OF_HOURS_DESC;
import static io.cloudslang.content.utilities.util.InputsValidation.verifySchedulerTimeByHoursInputs;
import static io.cloudslang.content.utils.OutputUtilities.getFailureResultsMap;

public class SchedulerTimeByHours {


    @Action(name = SCHEDULER_TIME_OPERATION_NAME, description = SCHEDULER_TIME_OPERATION_DESC,
            outputs = {
                    @Output(value = SCHEDULER_START_TIME, description = SCHEDULER_START_TIME_DESC),
                    @Output(value = TRIGGER_EXPRESSION, description = TRIGGER_EXPRESSION_DESC),
                    @Output(value = TIME_ZONE, description = TIME_ZONE_DESC),
                    @Output(value = EXCEPTION, description = EXCEPTION_DESC)},

            responses = {
                    @Response(text = SUCCESS, field = RETURN_CODE, value = ReturnCodes.SUCCESS, matchType = COMPARE_EQUAL, responseType = RESOLVED, description = SUCCESS_DESC),
                    @Response(text = FAILURE, field = RETURN_CODE, value = ReturnCodes.FAILURE, matchType = COMPARE_EQUAL, responseType = ERROR, description = FAILURE_DESC)
            })
    public Map<String, String> execute(@Param(value = NUMBER_OF_HOURS, required = true, description = NUMBER_OF_HOURS_DESC) String numberOfHours,
                                       @Param(value = SCHEDULER_TIME_ZONE, required = true, description = TIME_ZONE_DESC) String schedulerTimeZone
    ) {

        try {
            List<String> exceptionMessage = verifySchedulerTimeByHoursInputs(numberOfHours, schedulerTimeZone);
            if (!exceptionMessage.isEmpty()) {
                return getFailureResultsMap(StringUtilities.join(exceptionMessage, NEW_LINE));
            }
            return SchedulerTimestampImpl.getSchedulerTimeByHours(numberOfHours, schedulerTimeZone);
        } catch (Exception exception) {
            return getFailureResultsMap(exception);
        }

    }
}