Search in sources :

Example 6 with InternalServiceException

use of i5.las2peer.api.execution.InternalServiceException in project Distributed-Noracle-Backend by Distributed-Noracle.

the class NoracleQuestionService method changeQuestionDepth.

@Override
public Question changeQuestionDepth(String questionId, int depth) throws ServiceInvocationException {
    if (questionId == null) {
        throw new InvocationBadArgumentException("No question id given");
    }
    try {
        Envelope questionEnvelope = Context.get().requestEnvelope(getQuestionEnvelopeIdentifier(questionId));
        Question question = (Question) questionEnvelope.getContent();
        question.setDepth(depth);
        question.setTimestampLastModified(Instant.now().toString());
        questionEnvelope.setContent(question);
        Context.get().storeEnvelope(questionEnvelope);
        return question;
    } catch (EnvelopeNotFoundException e) {
        throw new ResourceNotFoundException("Question not found");
    } catch (EnvelopeAccessDeniedException e) {
        throw new ServiceAccessDeniedException("Envelope Access Denied");
    } catch (EnvelopeOperationFailedException e) {
        throw new InternalServiceException("Could not fetch question envelope", e);
    }
}
Also used : EnvelopeOperationFailedException(i5.las2peer.api.persistency.EnvelopeOperationFailedException) EnvelopeNotFoundException(i5.las2peer.api.persistency.EnvelopeNotFoundException) Question(i5.las2peer.services.noracleService.model.Question) EnvelopeAccessDeniedException(i5.las2peer.api.persistency.EnvelopeAccessDeniedException) Envelope(i5.las2peer.api.persistency.Envelope)

Example 7 with InternalServiceException

use of i5.las2peer.api.execution.InternalServiceException in project Distributed-Noracle-Backend by Distributed-Noracle.

the class NoracleQuestionService method changeQuestionText.

@Override
public Question changeQuestionText(String questionId, String text) throws ServiceInvocationException {
    if (questionId == null) {
        throw new InvocationBadArgumentException("No question id given");
    }
    try {
        Envelope questionEnvelope = Context.get().requestEnvelope(getQuestionEnvelopeIdentifier(questionId));
        Question question = (Question) questionEnvelope.getContent();
        question.setText(text);
        question.setTimestampLastModified(Instant.now().toString());
        questionEnvelope.setContent(question);
        Context.get().storeEnvelope(questionEnvelope);
        return question;
    } catch (EnvelopeNotFoundException e) {
        throw new ResourceNotFoundException("Question not found");
    } catch (EnvelopeAccessDeniedException e) {
        throw new ServiceAccessDeniedException("Envelope Access Denied");
    } catch (EnvelopeOperationFailedException e) {
        throw new InternalServiceException("Could not fetch question envelope", e);
    }
}
Also used : EnvelopeOperationFailedException(i5.las2peer.api.persistency.EnvelopeOperationFailedException) EnvelopeNotFoundException(i5.las2peer.api.persistency.EnvelopeNotFoundException) Question(i5.las2peer.services.noracleService.model.Question) EnvelopeAccessDeniedException(i5.las2peer.api.persistency.EnvelopeAccessDeniedException) Envelope(i5.las2peer.api.persistency.Envelope)

Example 8 with InternalServiceException

use of i5.las2peer.api.execution.InternalServiceException in project Distributed-Noracle-Backend by Distributed-Noracle.

the class NoracleQuestionService method getQuestion.

@Override
public Question getQuestion(String questionId) throws ServiceInvocationException {
    if (questionId == null || questionId.isEmpty()) {
        throw new InvocationBadArgumentException("No question id given");
    }
    Envelope env;
    try {
        env = Context.get().requestEnvelope(getQuestionEnvelopeIdentifier(questionId));
    } catch (EnvelopeAccessDeniedException e) {
        throw new ServiceAccessDeniedException("Envelope Access Denied");
    } catch (EnvelopeOperationFailedException e) {
        throw new InternalServiceException("Could not fetch question envelope", e);
    } catch (EnvelopeNotFoundException e) {
        throw new ResourceNotFoundException("Question Not Found");
    }
    Question question = (Question) env.getContent();
    return question;
}
Also used : EnvelopeOperationFailedException(i5.las2peer.api.persistency.EnvelopeOperationFailedException) EnvelopeNotFoundException(i5.las2peer.api.persistency.EnvelopeNotFoundException) Question(i5.las2peer.services.noracleService.model.Question) EnvelopeAccessDeniedException(i5.las2peer.api.persistency.EnvelopeAccessDeniedException) Envelope(i5.las2peer.api.persistency.Envelope)

Example 9 with InternalServiceException

use of i5.las2peer.api.execution.InternalServiceException in project Distributed-Noracle-Backend by Distributed-Noracle.

the class NoracleVoteService method setVote.

@Override
public Vote setVote(String agentId, String objectId, int vote) throws ServiceInvocationException {
    Agent mainAgent = Context.get().getMainAgent();
    if (objectId == null || objectId.isEmpty()) {
        throw new InvocationBadArgumentException("No object id given");
    } else if (mainAgent instanceof AnonymousAgent) {
        throw new ServiceAccessDeniedException("You have to be logged in to vote");
    }
    String persEnvId = getAgentVoteEnvelopeIdentifier(agentId, objectId);
    try {
        try {
            Envelope persEnv = Context.get().requestEnvelope(persEnvId);
            VoteEntry voteEntry = (VoteEntry) persEnv.getContent();
            int pubIndex = voteEntry.getPubIndex();
            String pubEnvId = getPublicVoteEnvelopeIdentifier(objectId, pubIndex);
            Vote pubVote = updateOrCreatePubVoteEnv(pubEnvId, vote, mainAgent.getIdentifier());
            voteEntry = (VoteEntry) persEnv.getContent();
            voteEntry.setVote(pubVote);
            persEnv.setContent(voteEntry);
            Context.get().storeEnvelope(persEnv);
            return pubVote;
        } catch (EnvelopeNotFoundException e) {
            Envelope persEnv = Context.get().createEnvelope(persEnvId);
            String pubEnvId = null;
            int pubIndex = -1;
            for (int num = 1; num < MAX_VOTES_PER_OBJECT; num++) {
                try {
                    pubEnvId = getPublicVoteEnvelopeIdentifier(objectId, num);
                    Context.get().requestEnvelope(pubEnvId);
                } catch (EnvelopeNotFoundException e2) {
                    // found non taken vote index
                    pubIndex = num;
                    break;
                } catch (Exception e2) {
                // XXX logging
                }
            }
            if (pubEnvId == null || pubEnvId.isEmpty()) {
                throw new InternalServiceException("Public envelope id is null");
            } else if (pubIndex == -1) {
                throw new InternalServiceException("Too many votes for this object");
            }
            Vote pubVote = updateOrCreatePubVoteEnv(pubEnvId, vote, mainAgent.getIdentifier());
            VoteEntry voteEntry = new VoteEntry(objectId, pubIndex, pubVote);
            persEnv.setContent(voteEntry);
            Context.get().storeEnvelope(persEnv);
            return pubVote;
        }
    } catch (EnvelopeAccessDeniedException e) {
        throw new ServiceAccessDeniedException("Envelope Access Denied");
    } catch (EnvelopeOperationFailedException e) {
        throw new InternalServiceException("Could not create envelope for vote", e);
    }
}
Also used : AnonymousAgent(i5.las2peer.api.security.AnonymousAgent) Agent(i5.las2peer.api.security.Agent) Vote(i5.las2peer.services.noracleService.model.Vote) VoteEntry(i5.las2peer.services.noracleService.model.VoteEntry) EnvelopeOperationFailedException(i5.las2peer.api.persistency.EnvelopeOperationFailedException) InvocationBadArgumentException(i5.las2peer.api.execution.InvocationBadArgumentException) AnonymousAgent(i5.las2peer.api.security.AnonymousAgent) ServiceAccessDeniedException(i5.las2peer.api.execution.ServiceAccessDeniedException) EnvelopeAccessDeniedException(i5.las2peer.api.persistency.EnvelopeAccessDeniedException) Envelope(i5.las2peer.api.persistency.Envelope) EnvelopeAccessDeniedException(i5.las2peer.api.persistency.EnvelopeAccessDeniedException) EnvelopeOperationFailedException(i5.las2peer.api.persistency.EnvelopeOperationFailedException) InvocationBadArgumentException(i5.las2peer.api.execution.InvocationBadArgumentException) ServiceAccessDeniedException(i5.las2peer.api.execution.ServiceAccessDeniedException) ServiceInvocationException(i5.las2peer.api.execution.ServiceInvocationException) InternalServiceException(i5.las2peer.api.execution.InternalServiceException) EnvelopeNotFoundException(i5.las2peer.api.persistency.EnvelopeNotFoundException) InternalServiceException(i5.las2peer.api.execution.InternalServiceException) EnvelopeNotFoundException(i5.las2peer.api.persistency.EnvelopeNotFoundException)

Example 10 with InternalServiceException

use of i5.las2peer.api.execution.InternalServiceException in project Distributed-Noracle-Backend by Distributed-Noracle.

the class NoracleQuestionRelationService method createQuestionRelation.

@Override
public QuestionRelation createQuestionRelation(String spaceId, String name, String questionId1, String questionId2, Boolean directed) throws ServiceInvocationException {
    Agent mainAgent = Context.get().getMainAgent();
    if (mainAgent instanceof AnonymousAgent) {
        throw new ServiceAccessDeniedException("You have to be logged in to create a relation");
    }
    String relationId = buildQuestionRelationId();
    Envelope env;
    try {
        env = Context.get().createEnvelope(getQuestionRelationEnvelopeIdentifier(relationId));
    } catch (EnvelopeAccessDeniedException e) {
        throw new ServiceAccessDeniedException("Envelope Access Denied");
    } catch (EnvelopeOperationFailedException e) {
        throw new InternalServiceException("Could not create envelope for relation", e);
    }
    env.setPublic();
    String strNow = Instant.now().toString();
    QuestionRelation relation = new QuestionRelation(relationId, spaceId, mainAgent.getIdentifier(), name, questionId1, questionId2, directed, strNow);
    env.setContent(relation);
    try {
        Context.get().storeEnvelope(env, mainAgent);
    } catch (EnvelopeAccessDeniedException e) {
        throw new ServiceAccessDeniedException("Envelope Access Denied");
    } catch (EnvelopeOperationFailedException e) {
        throw new InternalServiceException("Could not store relation envelope", e);
    }
    if (spaceId != null && !spaceId.isEmpty()) {
        linkQuestionRelationToSpace(spaceId, relationId);
    }
    return relation;
}
Also used : AnonymousAgent(i5.las2peer.api.security.AnonymousAgent) Agent(i5.las2peer.api.security.Agent) EnvelopeOperationFailedException(i5.las2peer.api.persistency.EnvelopeOperationFailedException) AnonymousAgent(i5.las2peer.api.security.AnonymousAgent) QuestionRelation(i5.las2peer.services.noracleService.model.QuestionRelation) EnvelopeAccessDeniedException(i5.las2peer.api.persistency.EnvelopeAccessDeniedException) Envelope(i5.las2peer.api.persistency.Envelope)

Aggregations

Envelope (i5.las2peer.api.persistency.Envelope)15 EnvelopeAccessDeniedException (i5.las2peer.api.persistency.EnvelopeAccessDeniedException)15 EnvelopeOperationFailedException (i5.las2peer.api.persistency.EnvelopeOperationFailedException)15 EnvelopeNotFoundException (i5.las2peer.api.persistency.EnvelopeNotFoundException)12 ServiceNameVersion (i5.las2peer.api.p2p.ServiceNameVersion)7 InternalServiceException (i5.las2peer.api.execution.InternalServiceException)6 Agent (i5.las2peer.api.security.Agent)6 AnonymousAgent (i5.las2peer.api.security.AnonymousAgent)6 Serializable (java.io.Serializable)6 Question (i5.las2peer.services.noracleService.model.Question)4 Space (i5.las2peer.services.noracleService.model.Space)4 Vote (i5.las2peer.services.noracleService.model.Vote)4 QuestionRelation (i5.las2peer.services.noracleService.model.QuestionRelation)3 SpaceSubscription (i5.las2peer.services.noracleService.model.SpaceSubscription)3 SpaceSubscriptionList (i5.las2peer.services.noracleService.model.SpaceSubscriptionList)3 VoteEntry (i5.las2peer.services.noracleService.model.VoteEntry)2 VoteList (i5.las2peer.services.noracleService.model.VoteList)2 InvocationBadArgumentException (i5.las2peer.api.execution.InvocationBadArgumentException)1 ServiceAccessDeniedException (i5.las2peer.api.execution.ServiceAccessDeniedException)1 ServiceInvocationException (i5.las2peer.api.execution.ServiceInvocationException)1