|
|
|
package controllers
|
|
|
|
|
|
|
|
import javax.inject.Inject
|
|
|
|
|
|
|
|
import com.alexitc.playsonify.models.{Limit, Offset, OrderingQuery, PaginatedQuery}
|
|
|
|
import com.xsn.explorer.services.{AddressService, TransactionService}
|
|
|
|
import controllers.common.{MyJsonController, MyJsonControllerComponents}
|
|
|
|
|
|
|
|
class AddressesController @Inject() (
|
|
|
|
addressService: AddressService,
|
|
|
|
transactionService: TransactionService,
|
|
|
|
cc: MyJsonControllerComponents)
|
|
|
|
extends MyJsonController(cc) {
|
|
|
|
|
|
|
|
def getBy(address: String) = publicNoInput { _ =>
|
|
|
|
addressService.getBy(address)
|
|
|
|
}
|
|
|
|
|
|
|
|
def getTransactions(address: String, offset: Int, limit: Int, ordering: String) = publicNoInput { _ =>
|
|
|
|
val paginatedQuery = PaginatedQuery(Offset(offset), Limit(limit))
|
|
|
|
|
|
|
|
transactionService.getTransactions(address, paginatedQuery, OrderingQuery(ordering))
|
|
|
|
}
|
|
|
|
|
|
|
|
def getUnspentOutputs(address: String) = publicNoInput { _ =>
|
|
|
|
addressService.getUnspentOutputs(address)
|
|
|
|
}
|
|
|
|
}
|