+++ /dev/null
-/*
- * Sone - DefaultPostReplyBuilderFactory.java - Copyright © 2013–2019 David Roden
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sone.data.impl;
-
-import net.pterodactylus.sone.database.PostProvider;
-import net.pterodactylus.sone.database.PostReplyBuilder;
-import net.pterodactylus.sone.database.PostReplyBuilderFactory;
-import net.pterodactylus.sone.database.SoneProvider;
-
-import com.google.inject.Inject;
-
-/**
- * {@link PostReplyBuilderFactory} that creates {@link PostReplyBuilderImpl}s.
- */
-public class DefaultPostReplyBuilderFactory implements PostReplyBuilderFactory {
-
- /** The Sone provider. */
- private final SoneProvider soneProvider;
-
- /** The post provider. */
- private final PostProvider postProvider;
-
- /**
- * Creates a new default post reply builder factory.
- *
- * @param soneProvider
- * The Sone provider
- * @param postProvider
- * The post provider
- */
- @Inject
- public DefaultPostReplyBuilderFactory(SoneProvider soneProvider, PostProvider postProvider) {
- this.soneProvider = soneProvider;
- this.postProvider = postProvider;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public PostReplyBuilder newPostReplyBuilder() {
- return new PostReplyBuilderImpl(soneProvider, postProvider);
- }
-
-}
+++ /dev/null
-/*
- * Sone - PostReplyBuilderImpl.java - Copyright © 2013–2019 David Roden
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sone.data.impl;
-
-import static com.google.common.base.Preconditions.checkState;
-
-import java.util.UUID;
-
-import net.pterodactylus.sone.data.PostReply;
-import net.pterodactylus.sone.database.PostProvider;
-import net.pterodactylus.sone.database.PostReplyBuilder;
-import net.pterodactylus.sone.database.SoneProvider;
-
-/**
- * {@link PostReplyBuilder} implementation that creates {@link PostReplyImpl}
- * objects.
- */
-public class PostReplyBuilderImpl extends AbstractPostReplyBuilder {
-
- /** The Sone provider. */
- private final SoneProvider soneProvider;
-
- /** The post provider. */
- private final PostProvider postProvider;
-
- /**
- * Creates a new post reply builder.
- *
- * @param soneProvider
- * The Sone provider
- * @param postProvider
- * The post provider
- */
- public PostReplyBuilderImpl(SoneProvider soneProvider, PostProvider postProvider) {
- this.soneProvider = soneProvider;
- this.postProvider = postProvider;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public PostReply build() {
- validate();
-
- /* create new post reply. */
- return new PostReplyImpl(soneProvider, postProvider, randomId ? UUID.randomUUID().toString() : id, senderId, currentTime ? System.currentTimeMillis() : time, text, postId);
- }
-
-}
+++ /dev/null
-/*
- * Sone - PostReplyImpl.java - Copyright © 2010–2019 David Roden
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sone.data.impl;
-
-import static com.google.common.base.Optional.fromNullable;
-
-import net.pterodactylus.sone.data.Post;
-import net.pterodactylus.sone.data.PostReply;
-import net.pterodactylus.sone.database.PostProvider;
-import net.pterodactylus.sone.database.SoneProvider;
-
-import com.google.common.base.Optional;
-
-/**
- * Simple {@link PostReply} implementation.
- */
-public class PostReplyImpl extends ReplyImpl<PostReply> implements PostReply {
-
- /** The post provider. */
- private final PostProvider postProvider;
-
- /** The Post this reply refers to. */
- private final String postId;
-
- /**
- * Creates a new reply.
- *
- * @param soneProvider
- * The Sone provider
- * @param postProvider
- * The post provider
- * @param id
- * The ID of the reply
- * @param soneId
- * The ID of the Sone of the reply
- * @param time
- * The time of the reply
- * @param text
- * The text of the reply
- * @param postId
- * The ID of the post this reply refers to
- */
- public PostReplyImpl(SoneProvider soneProvider, PostProvider postProvider, String id, String soneId, long time, String text, String postId) {
- super(soneProvider, id, soneId, time, text);
- this.postProvider = postProvider;
- this.postId = postId;
- }
-
- //
- // ACCESSORS
- //
-
- /**
- * {@inheritDocs}
- */
- @Override
- public String getPostId() {
- return postId;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Optional<Post> getPost() {
- return fromNullable(postProvider.getPost(postId));
- }
-
-}
+++ /dev/null
-/*
- * Sone - ReplyImpl.java - Copyright © 2011–2019 David Roden
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-package net.pterodactylus.sone.data.impl;
-
-import net.pterodactylus.sone.data.Reply;
-import net.pterodactylus.sone.data.Sone;
-import net.pterodactylus.sone.database.SoneProvider;
-
-/**
- * Abstract base class for all replies.
- *
- * @param <T>
- * The type of the reply
- */
-public abstract class ReplyImpl<T extends Reply<T>> implements Reply<T> {
-
- /** The Sone provider. */
- private final SoneProvider soneProvider;
-
- /** The ID of the reply. */
- private final String id;
-
- /** The Sone that created this reply. */
- private final String soneId;
-
- /** The time of the reply. */
- private final long time;
-
- /** The text of the reply. */
- private final String text;
-
- /** Whether the reply is known. */
- private volatile boolean known;
-
- /**
- * Creates a new reply.
- *
- * @param soneProvider
- * The Sone provider
- * @param id
- * The ID of the reply
- * @param soneId
- * The ID of the Sone of the reply
- * @param time
- * The time of the reply
- * @param text
- * The text of the reply
- */
- protected ReplyImpl(SoneProvider soneProvider, String id, String soneId, long time, String text) {
- this.soneProvider = soneProvider;
- this.id = id;
- this.soneId = soneId;
- this.time = time;
- this.text = text;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public String getId() {
- return id;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public Sone getSone() {
- return soneProvider.getSone(soneId);
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public long getTime() {
- return time;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public String getText() {
- return text;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public boolean isKnown() {
- return known;
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- @SuppressWarnings("unchecked")
- public T setKnown(boolean known) {
- this.known = known;
- return (T) this;
- }
-
- //
- // OBJECT METHODS
- //
-
- /**
- * {@inheritDoc}
- */
- @Override
- public int hashCode() {
- return id.hashCode();
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public boolean equals(Object object) {
- if (!(object instanceof Reply<?>)) {
- return false;
- }
- Reply<?> reply = (Reply<?>) object;
- return reply.getId().equals(id);
- }
-
- /**
- * {@inheritDoc}
- */
- @Override
- public String toString() {
- return String.format("%s[id=%s,sone=%s,time=%d,text=%s]", getClass().getName(), id, soneId, time, text);
- }
-
-}