
tech.aroma.data.sql.SQLFollowerRepository.kt Maven / Gradle / Ivy
/*
* Copyright 2017 RedRoma, Inc.
*
* 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 tech.aroma.data.sql
import org.springframework.jdbc.core.JdbcOperations
import tech.aroma.data.FollowerRepository
import tech.aroma.data.sql.SQLStatements.*
import tech.aroma.thrift.Application
import tech.aroma.thrift.User
import tech.aroma.thrift.exceptions.InvalidArgumentException
import javax.inject.Inject
/**
*
* @author SirWellington
*/
internal class SQLFollowerRepository
@Inject constructor(val database: JdbcOperations,
val appSerializer: DatabaseSerializer,
val userSerializer: DatabaseSerializer) : FollowerRepository
{
override fun saveFollowing(user: User, application: Application)
{
checkUserId(user.userId)
checkAppId(application.applicationId)
val userId = user.userId?.toUUID() ?: throw InvalidArgumentException("Invalid userId: $user")
val appId = application.applicationId?.toUUID() ?: throw InvalidArgumentException("Invalid appId: $application")
val sql = Inserts.FOLLOWING
try
{
database.update(sql, appId, userId)
}
catch (ex: Exception)
{
failWithMessage("Could not save following for User[$userId] and App[$appId]", ex)
}
}
override fun deleteFollowing(userId: String, applicationId: String)
{
checkUserId(userId)
checkAppId(applicationId)
val sql = Deletes.FOLLOWING
try
{
database.update(sql, applicationId.toUUID(), userId.toUUID())
}
catch (ex: Exception)
{
failWithMessage("Could not delete following for User[$userId] and App[$applicationId", ex)
}
}
override fun followingExists(userId: String, applicationId: String): Boolean
{
checkUserId(userId)
checkAppId(applicationId)
val sql = Queries.CHECK_FOLLOWING_EXISTS
return try
{
database.queryForObject(sql, Boolean::class.java, applicationId.toUUID(), userId.toUUID())
}
catch (ex: Exception)
{
failWithMessage("Could not check if user [$userId] follows App[$applicationId]", ex)
}
}
override fun getApplicationsFollowedBy(userId: String): MutableList
{
checkUserId(userId)
val sql = Queries.SELECT_APPS_FOLLOWING
return try
{
database.query(sql, appSerializer, userId.toUUID()) ?: mutableListOf()
}
catch (ex: Exception)
{
failWithMessage("Could not determine apps being followed by User[$userId]", ex)
}
}
override fun getApplicationFollowers(applicationId: String): MutableList
{
checkAppId(applicationId)
val sql = Queries.SELECT_APP_FOLLOWERS
return try
{
database.query(sql, userSerializer, applicationId.toUUID()) ?: mutableListOf()
}
catch (ex: Exception)
{
failWithMessage("Could not determine who follows App [$applicationId]", ex)
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy