mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 09:11:59 -07:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8be70baff2 | ||
|
|
7e5c314000 | ||
|
|
9669112d69 | ||
|
|
9a71763f79 | ||
|
|
1a96eac8c9 | ||
|
|
a2acdef539 | ||
|
|
58ddbbcc4e | ||
|
|
5ff33ff19f | ||
|
|
682f599261 | ||
|
|
7c26e33a8c | ||
|
|
2595ee8295 | ||
|
|
531685c0e4 | ||
|
|
476fdcd0aa | ||
|
|
b6762b215e | ||
|
|
3cdf49bb56 | ||
|
|
28615403b8 | ||
|
|
bb10bd819a | ||
|
|
3882217e6a | ||
|
|
8cd2896115 | ||
|
|
e570519ec8 | ||
|
|
2f74b74110 | ||
|
|
fddb5499f0 | ||
|
|
fed98d51be | ||
|
|
8e3ee3a0fb | ||
|
|
e57faf8f26 | ||
|
|
61fa6b0ed6 | ||
|
|
99843061ab | ||
|
|
3a23763800 |
Vendored
+2
-2
@@ -47,8 +47,8 @@ export default {
|
||||
useFullStackCash: process.env.USE_FULLSTACKCASH ? true : false,
|
||||
consumerUrl: process.env.CONSUMER_URL
|
||||
? process.env.CONSUMER_URL
|
||||
// : 'https://free-bch.fullstack.cash',
|
||||
: 'https://dev-consumer.psfoundation.info',
|
||||
: 'https://free-bch.fullstack.cash',
|
||||
// : 'https://dev-consumer.psfoundation.info',
|
||||
// : 'https://wa-usa-bch-consumer.fullstackcash.nl',
|
||||
|
||||
// P2WDB URL that will accept API calls from the p2wdb npm library.
|
||||
|
||||
@@ -9,6 +9,8 @@ import Order from './models/order.js'
|
||||
import Offer from './models/offer.js'
|
||||
import Usage from './models/usage.js'
|
||||
import SmAccount from './models/smAccount.js'
|
||||
import DeletedChat from './models/deletedChat.js'
|
||||
import DeletedPost from './models/deletedPost.js'
|
||||
|
||||
class LocalDB {
|
||||
constructor () {
|
||||
@@ -19,6 +21,8 @@ class LocalDB {
|
||||
this.Offer = Offer
|
||||
this.Usage = Usage
|
||||
this.SmAccount = SmAccount
|
||||
this.DeletedChat = DeletedChat
|
||||
this.DeletedPost = DeletedPost
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
Database model for tracking deleted Nostr chat messages.
|
||||
*/
|
||||
|
||||
import mongoose from 'mongoose'
|
||||
|
||||
const DeletedChat = new mongoose.Schema({
|
||||
eventId: { type: String, required: true, default: null }, // Event ID of the deleted message.
|
||||
npub: { type: String, default: null }, // Nostr public key of the user who created the message.
|
||||
bchAddr: { type: String, default: null }, // bch address of the user who created the message.
|
||||
pubkey: { type: String, default: null }, // Nostr public key of the user who created the message.
|
||||
createdAt: { type: Date, default: Date.now },
|
||||
updatedAt: { type: Date, default: Date.now }
|
||||
})
|
||||
|
||||
export default mongoose.model('deletedChat', DeletedChat)
|
||||
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
Database model for tracking deleted Nostr posts.
|
||||
*/
|
||||
|
||||
import mongoose from 'mongoose'
|
||||
|
||||
const DeletedPost = new mongoose.Schema({
|
||||
eventId: { type: String, required: true, default: null }, // Event ID of the deleted post.
|
||||
npub: { type: String, default: null }, // Nostr public key of the user who created the post.
|
||||
bchAddr: { type: String, default: null }, // bch address of the user who created the post.
|
||||
pubkey: { type: String, default: null }, // Nostr public key of the user who created the post.
|
||||
createdAt: { type: Date, default: Date.now },
|
||||
updatedAt: { type: Date, default: Date.now }
|
||||
})
|
||||
|
||||
export default mongoose.model('deletedPost', DeletedPost)
|
||||
@@ -18,6 +18,7 @@ const Offer = new mongoose.Schema({
|
||||
p2wdbHash: { type: String },
|
||||
offerStatus: { type: String },
|
||||
makerAddr: { type: String },
|
||||
makerNpub: { type: String },
|
||||
|
||||
// Authentication data
|
||||
signature: { type: String },
|
||||
@@ -46,7 +47,9 @@ const Offer = new mongoose.Schema({
|
||||
mutableDataCid: { type: String, default: null },
|
||||
tokenIconUrl: { type: String, default: null },
|
||||
tokenCategories: { type: Array, default: [] },
|
||||
tokenTags: { type: Array, default: [] }
|
||||
tokenTags: { type: Array, default: [] },
|
||||
userDataStr: { type: String }, // Token user data
|
||||
lastUpdatedTokenData: { type: String, default: null } // ISO timestamp of the last time token data was updated.
|
||||
})
|
||||
|
||||
export default mongoose.model('offer', Offer)
|
||||
|
||||
@@ -56,6 +56,7 @@ class WalletAdapter {
|
||||
this.completeTx = this.completeTx.bind(this)
|
||||
this.reclaimTokens = this.reclaimTokens.bind(this)
|
||||
this.moveTokensFromCustomWallet = this.moveTokensFromCustomWallet.bind(this)
|
||||
this.cid2json = this.cid2json.bind(this)
|
||||
}
|
||||
|
||||
// Open the wallet file, or create one if the file doesn't exist.
|
||||
@@ -677,6 +678,25 @@ class WalletAdapter {
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
async cid2json (urlOrCid) {
|
||||
try {
|
||||
// Input validation
|
||||
if (!urlOrCid || typeof urlOrCid !== 'string') {
|
||||
throw new Error('urlOrCid must be a string!')
|
||||
}
|
||||
// Extract the cid from the url or cid.
|
||||
const cid = urlOrCid.split('/').pop()
|
||||
console.log('cid to json: ', cid)
|
||||
const jsonRes = await this.bchWallet.cid2json({ cid })
|
||||
const json = jsonRes.json
|
||||
// console.log('json: ', json)
|
||||
return json
|
||||
} catch (err) {
|
||||
console.error('Error in wallet.js/cid2json()', err.message)
|
||||
throw err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default WalletAdapter
|
||||
|
||||
@@ -19,6 +19,7 @@ import OrderRouter from './order/index.js'
|
||||
import P2WDBRouter from './p2wdb/index.js'
|
||||
import UsageRESTController from './usage/index.js'
|
||||
import SmAccountRouter from './smAccount/index.js'
|
||||
import NostrRouter from './nostr/index.js'
|
||||
|
||||
class RESTControllers {
|
||||
constructor (localConfig = {}) {
|
||||
@@ -90,6 +91,10 @@ class RESTControllers {
|
||||
|
||||
const smAccountRouter = new SmAccountRouter(dependencies)
|
||||
smAccountRouter.attach(app)
|
||||
|
||||
// Attach the REST API Controllers associated with the /nostr route
|
||||
const nostrRouter = new NostrRouter(dependencies)
|
||||
nostrRouter.attach(app)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,219 @@
|
||||
/*
|
||||
REST API Controller library for the /nostr route
|
||||
*/
|
||||
import wlogger from '../../../adapters/wlogger.js'
|
||||
|
||||
class NostrRESTControllerLib {
|
||||
constructor (localConfig = {}) {
|
||||
// Dependency Injection.
|
||||
this.adapters = localConfig.adapters
|
||||
if (!this.adapters) {
|
||||
throw new Error(
|
||||
'Instance of Adapters library required when instantiating /nostr REST Controller.'
|
||||
)
|
||||
}
|
||||
this.useCases = localConfig.useCases
|
||||
if (!this.useCases) {
|
||||
throw new Error(
|
||||
'Instance of Use Cases library required when instantiating /nostr REST Controller.'
|
||||
)
|
||||
}
|
||||
|
||||
this.createDeletedChat = this.createDeletedChat.bind(this)
|
||||
this.getDeletedChats = this.getDeletedChats.bind(this)
|
||||
this.createDeletedPost = this.createDeletedPost.bind(this)
|
||||
this.getDeletedPosts = this.getDeletedPosts.bind(this)
|
||||
this.handleError = this.handleError.bind(this)
|
||||
}
|
||||
|
||||
/**
|
||||
* @api {post} /nostr/deletedChat Create Deleted Chat.
|
||||
* @apiPermission admin
|
||||
* @apiName CreateDeletedChat
|
||||
* @apiGroup REST Nostr
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* curl -H "Content-Type: application/json" -H "Authorization: Bearer <token>" -X POST -d '{"eventId": "note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q" , "npub" : "npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8" , "bchAddr" : "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a", "pubkey":"6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1"}' localhost:5700/nostr/deletedChat
|
||||
*
|
||||
* @apiSuccess {String} _id DB Model id
|
||||
* @apiSuccess {String} eventId Event id
|
||||
* @apiSuccess {String} bchAddr BCH Address
|
||||
* @apiSuccess {String} npub Nostr Npub
|
||||
* @apiSuccess {String} pubkey Nostr pubkey
|
||||
* @apiSuccess {Date} createdAt Created at date.
|
||||
* @apiSuccess {Date} updatedAt Updated at date.
|
||||
*
|
||||
*
|
||||
* @apiSuccessExample {json} Success-Response:
|
||||
* HTTP/1.1 200 OK
|
||||
* {
|
||||
* "_id": "6900f87f9cafee38028ea27e",
|
||||
* "npub": "npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8",
|
||||
* "bchAddr" : "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a",
|
||||
* "pubKey": "6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1",
|
||||
* "createdAt":"2025-10-28T17:08:15.409Z",
|
||||
* "updatedAt": "2025-10-28T17:08:15.409Z"
|
||||
* }
|
||||
*
|
||||
* @apiUse TokenError
|
||||
*/
|
||||
async createDeletedChat (ctx) {
|
||||
try {
|
||||
const chat = ctx.request.body
|
||||
|
||||
const result = await this.useCases.nostr.createDeletedChat(chat)
|
||||
|
||||
ctx.body = {
|
||||
deletedChat: result
|
||||
}
|
||||
} catch (err) {
|
||||
wlogger.error('Error in createDeletedChat() REST API handler.')
|
||||
this.handleError(ctx, err)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @api {get} /nostr/deletedChat Get Deleted Chats.
|
||||
* @apiPermission public
|
||||
* @apiName GetDeletedChats
|
||||
* @apiGroup REST Nostr
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* curl -H "Content-Type: application/json" -X GET localhost:5700/nostr/deletedChat
|
||||
*
|
||||
* @apiSuccess {String} _id DB Model id
|
||||
* @apiSuccess {String} eventId Event id
|
||||
* @apiSuccess {String} bchAddr BCH Address
|
||||
* @apiSuccess {String} npub Nostr Npub
|
||||
* @apiSuccess {String} pubkey Nostr pubkey
|
||||
* @apiSuccess {Date} createdAt Created at date.
|
||||
* @apiSuccess {Date} updatedAt Updated at date.
|
||||
*
|
||||
*
|
||||
* @apiSuccessExample {json} Success-Response:
|
||||
* HTTP/1.1 200 OK
|
||||
* [{
|
||||
* "_id": "6900f87f9cafee38028ea27e",
|
||||
* "npub": "npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8",
|
||||
* "bchAddr" : "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a",
|
||||
* "pubKey": "6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1",
|
||||
* "createdAt":"2025-10-28T17:08:15.409Z",
|
||||
* "updatedAt": "2025-10-28T17:08:15.409Z"
|
||||
* }]
|
||||
*
|
||||
* */
|
||||
async getDeletedChats (ctx) {
|
||||
try {
|
||||
const deletedChats = await this.useCases.nostr.getDeletedChats()
|
||||
|
||||
ctx.body = { deletedChats }
|
||||
} catch (err) {
|
||||
wlogger.error('Error in getDeletedChats() REST API handler.')
|
||||
this.handleError(ctx, err)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @api {post} /nostr/deletedPost Create Deleted Post.
|
||||
* @apiPermission admin
|
||||
* @apiName CreateDeletedPost
|
||||
* @apiGroup REST Nostr
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* curl -H "Content-Type: application/json" -H "Authorization: Bearer <token>" -X POST -d '{"eventId": "note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q" , "npub" : "npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8" , "bchAddr" : "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a", "pubkey":"6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1"}' localhost:5700/nostr/deletedPost
|
||||
*
|
||||
* @apiSuccess {String} _id DB Model id
|
||||
* @apiSuccess {String} eventId Event id
|
||||
* @apiSuccess {String} bchAddr BCH Address
|
||||
* @apiSuccess {String} npub Nostr Npub
|
||||
* @apiSuccess {String} pubkey Nostr pubkey
|
||||
* @apiSuccess {Date} createdAt Created at date.
|
||||
* @apiSuccess {Date} updatedAt Updated at date.
|
||||
*
|
||||
*
|
||||
* @apiSuccessExample {json} Success-Response:
|
||||
* HTTP/1.1 200 OK
|
||||
* {
|
||||
* "_id": "6900f87f9cafee38028ea27e",
|
||||
* "npub": "npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8",
|
||||
* "bchAddr" : "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a",
|
||||
* "pubKey": "6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1",
|
||||
* "createdAt":"2025-10-28T17:08:15.409Z",
|
||||
* "updatedAt": "2025-10-28T17:08:15.409Z"
|
||||
* }
|
||||
*
|
||||
* @apiUse TokenError
|
||||
*/
|
||||
async createDeletedPost (ctx) {
|
||||
try {
|
||||
const post = ctx.request.body
|
||||
|
||||
const result = await this.useCases.nostr.createDeletedPost(post)
|
||||
|
||||
ctx.body = {
|
||||
deletedPost: result
|
||||
}
|
||||
} catch (err) {
|
||||
wlogger.error('Error in createDeletedPost() REST API handler.')
|
||||
this.handleError(ctx, err)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @api {get} /nostr/deletedPost Get Deleted Posts.
|
||||
* @apiPermission public
|
||||
* @apiName GetDeletedPosts
|
||||
* @apiGroup REST Nostr
|
||||
*
|
||||
* @apiExample Example usage:
|
||||
* curl -H "Content-Type: application/json" -X GET localhost:5700/nostr/deletedPost
|
||||
*
|
||||
* @apiSuccess {String} _id DB Model id
|
||||
* @apiSuccess {String} eventId Event id
|
||||
* @apiSuccess {String} bchAddr BCH Address
|
||||
* @apiSuccess {String} npub Nostr Npub
|
||||
* @apiSuccess {String} pubkey Nostr pubkey
|
||||
* @apiSuccess {Date} createdAt Created at date.
|
||||
* @apiSuccess {Date} updatedAt Updated at date.
|
||||
*
|
||||
*
|
||||
* @apiSuccessExample {json} Success-Response:
|
||||
* HTTP/1.1 200 OK
|
||||
* [{
|
||||
* "_id": "6900f87f9cafee38028ea27e",
|
||||
* "npub": "npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8",
|
||||
* "bchAddr" : "bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a",
|
||||
* "pubKey": "6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1",
|
||||
* "createdAt":"2025-10-28T17:08:15.409Z",
|
||||
* "updatedAt": "2025-10-28T17:08:15.409Z"
|
||||
* }]
|
||||
*
|
||||
* */
|
||||
async getDeletedPosts (ctx) {
|
||||
try {
|
||||
const deletedPosts = await this.useCases.nostr.getDeletedPosts()
|
||||
|
||||
ctx.body = { deletedPosts }
|
||||
} catch (err) {
|
||||
wlogger.error('Error in getDeletedPosts() REST API handler.')
|
||||
this.handleError(ctx, err)
|
||||
}
|
||||
}
|
||||
|
||||
// DRY error handler
|
||||
handleError (ctx, err) {
|
||||
// If an HTTP status is specified by the buisiness logic, use that.
|
||||
if (err.status) {
|
||||
if (err.message) {
|
||||
ctx.throw(err.status, err.message)
|
||||
} else {
|
||||
ctx.throw(err.status)
|
||||
}
|
||||
} else {
|
||||
// By default use a 422 error if the HTTP status is not specified.
|
||||
ctx.throw(422, err.message)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default NostrRESTControllerLib
|
||||
@@ -0,0 +1,81 @@
|
||||
/*
|
||||
REST API library for /nostr route.
|
||||
*/
|
||||
|
||||
// Public npm libraries.
|
||||
import Router from 'koa-router'
|
||||
|
||||
// Local libraries.
|
||||
import NostrRESTControllerLib from './controller.js'
|
||||
|
||||
import Validators from '../middleware/validators.js'
|
||||
|
||||
import config from '../../../../config/index.js'
|
||||
|
||||
class NostrRouter {
|
||||
constructor (localConfig = {}) {
|
||||
// Dependency Injection.
|
||||
this.adapters = localConfig.adapters
|
||||
if (!this.adapters) {
|
||||
throw new Error(
|
||||
'Instance of Adapters library required when instantiating NostrRouter REST Controller.'
|
||||
)
|
||||
}
|
||||
this.useCases = localConfig.useCases
|
||||
if (!this.useCases) {
|
||||
throw new Error(
|
||||
'Instance of Use Cases library required when instantiating NostrRouter REST Controller.'
|
||||
)
|
||||
}
|
||||
|
||||
const dependencies = {
|
||||
adapters: this.adapters,
|
||||
useCases: this.useCases
|
||||
}
|
||||
|
||||
// Encapsulate dependencies.
|
||||
this.config = config
|
||||
this.nostrRESTController = new NostrRESTControllerLib(dependencies)
|
||||
this.validators = new Validators()
|
||||
|
||||
// Instantiate the router and set the base route.
|
||||
const baseUrl = '/nostr'
|
||||
this.router = new Router({ prefix: baseUrl })
|
||||
|
||||
this.attach = this.attach.bind(this)
|
||||
this.createDeletedChat = this.createDeletedChat.bind(this)
|
||||
this.createDeletedPost = this.createDeletedPost.bind(this)
|
||||
}
|
||||
|
||||
attach (app) {
|
||||
if (!app) {
|
||||
throw new Error(
|
||||
'Must pass app object when attaching REST API controllers.'
|
||||
)
|
||||
}
|
||||
|
||||
// Define the routes and attach the controller.
|
||||
this.router.post('/deletedChat', this.createDeletedChat)
|
||||
this.router.get('/deletedChat', this.nostrRESTController.getDeletedChats)
|
||||
this.router.post('/deletedPost', this.createDeletedPost)
|
||||
this.router.get('/deletedPost', this.nostrRESTController.getDeletedPosts)
|
||||
|
||||
// Attach the Controller routes to the Koa app.
|
||||
app.use(this.router.routes())
|
||||
app.use(this.router.allowedMethods())
|
||||
}
|
||||
|
||||
async createDeletedChat (ctx, next) {
|
||||
await this.validators.ensureAdmin(ctx, next)
|
||||
await this.nostrRESTController.createDeletedChat(ctx, next)
|
||||
return true
|
||||
}
|
||||
|
||||
async createDeletedPost (ctx, next) {
|
||||
await this.validators.ensureAdmin(ctx, next)
|
||||
await this.nostrRESTController.createDeletedPost(ctx, next)
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
export default NostrRouter
|
||||
@@ -34,6 +34,7 @@ class OfferRESTControllerLib {
|
||||
this.listFungibleOffers = this.listFungibleOffers.bind(this)
|
||||
this.takeOffer = this.takeOffer.bind(this)
|
||||
this.listOffersByAddress = this.listOffersByAddress.bind(this)
|
||||
this.syncOfferMutableData = this.syncOfferMutableData.bind(this)
|
||||
this.handleError = this.handleError.bind(this)
|
||||
}
|
||||
|
||||
@@ -395,6 +396,18 @@ class OfferRESTControllerLib {
|
||||
}
|
||||
}
|
||||
|
||||
async syncOfferMutableData (ctx) {
|
||||
try {
|
||||
const tokenId = ctx.request.body.tokenId
|
||||
const offer = await this.useCases.offer.syncOfferMutableData(tokenId)
|
||||
|
||||
ctx.body = offer
|
||||
} catch (err) {
|
||||
console.log('Error in syncOfferMutableData REST API handler: ', err)
|
||||
this.handleError(ctx, err)
|
||||
}
|
||||
}
|
||||
|
||||
// DRY error handler
|
||||
handleError (ctx, err) {
|
||||
console.log('err', err.message)
|
||||
|
||||
@@ -55,6 +55,7 @@ class OfferRouter {
|
||||
// Define the routes and attach the controller.
|
||||
// this.router.post('/', _this.offerRESTController.createOffer) // Deprecated.
|
||||
this.router.post('/take', this.offerRESTController.takeOffer)
|
||||
this.router.post('/mutable/sync/', this.offerRESTController.syncOfferMutableData)
|
||||
this.router.get('/list/all/:page', this.offerRESTController.listOffers)
|
||||
this.router.get('/list/nft/:page', this.offerRESTController.listNftOffers)
|
||||
this.router.get('/list/fungible/:page', this.offerRESTController.listFungibleOffers)
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
DeletedChat Entity
|
||||
*/
|
||||
|
||||
class DeletedChat {
|
||||
validate (data = {}) {
|
||||
const { eventId } = data
|
||||
// Input Validation
|
||||
if (!eventId || typeof eventId !== 'string') {
|
||||
throw new Error("Property 'eventId' must be a string!")
|
||||
}
|
||||
|
||||
return data
|
||||
}
|
||||
}
|
||||
|
||||
export default DeletedChat
|
||||
@@ -0,0 +1,17 @@
|
||||
/*
|
||||
DeletedPost Entity
|
||||
*/
|
||||
|
||||
class DeletedPost {
|
||||
validate (data = {}) {
|
||||
const { eventId } = data
|
||||
// Input Validation
|
||||
if (!eventId || typeof eventId !== 'string') {
|
||||
throw new Error("Property 'eventId' must be a string!")
|
||||
}
|
||||
|
||||
return data
|
||||
}
|
||||
}
|
||||
|
||||
export default DeletedPost
|
||||
@@ -11,6 +11,7 @@ import OfferUseCases from './offer/index.js'
|
||||
import OrderUseCases from './order.js'
|
||||
import { UsageUseCases } from './usage-use-cases.js'
|
||||
import SmAccountUseCases from './smAccount-use-cases.js'
|
||||
import NostrUseCases from './nostr-use-cases.js'
|
||||
|
||||
class UseCases {
|
||||
constructor (localConfig = {}) {
|
||||
@@ -29,6 +30,7 @@ class UseCases {
|
||||
this.offer = new OfferUseCases(localConfig)
|
||||
this.usage = new UsageUseCases(localConfig)
|
||||
this.smAccount = new SmAccountUseCases(localConfig)
|
||||
this.nostr = new NostrUseCases(localConfig)
|
||||
}
|
||||
|
||||
// Run any startup Use Cases at the start of the app.
|
||||
|
||||
@@ -0,0 +1,92 @@
|
||||
/*
|
||||
This library contains business-logic for dealing with deleted chats. Most of these
|
||||
functions are called by the /nostr REST API endpoints.
|
||||
*/
|
||||
|
||||
import wlogger from '../adapters/wlogger.js'
|
||||
import DeletedChatEntity from '../entities/deletedChat.js'
|
||||
import DeletedPostEntity from '../entities/deletedPost.js'
|
||||
|
||||
class NostrUseCases {
|
||||
constructor (localConfig = {}) {
|
||||
this.adapters = localConfig.adapters
|
||||
if (!this.adapters) {
|
||||
throw new Error(
|
||||
'Instance of adapters must be passed in when instantiating Nostr Use Cases library.'
|
||||
)
|
||||
}
|
||||
// Encapsulate dependencies
|
||||
this.DeletedChatEntity = new DeletedChatEntity()
|
||||
this.DeletedPostEntity = new DeletedPostEntity()
|
||||
this.DeletedChatModel = this.adapters.localdb.DeletedChat
|
||||
this.DeletedPostModel = this.adapters.localdb.DeletedPost
|
||||
|
||||
this.createDeletedChat = this.createDeletedChat.bind(this)
|
||||
this.getDeletedChats = this.getDeletedChats.bind(this)
|
||||
this.createDeletedPost = this.createDeletedPost.bind(this)
|
||||
this.getDeletedPosts = this.getDeletedPosts.bind(this)
|
||||
}
|
||||
|
||||
// Create a new deleted chat model and add it to the Mongo database.
|
||||
async createDeletedChat (deletedChatObj) {
|
||||
try {
|
||||
// Input Validation
|
||||
|
||||
const deletedChatEntity = this.DeletedChatEntity.validate(deletedChatObj)
|
||||
const deletedChat = new this.DeletedChatModel(deletedChatEntity)
|
||||
|
||||
// Save the new model to the database.
|
||||
await deletedChat.save()
|
||||
return deletedChat
|
||||
} catch (err) {
|
||||
// console.log('createDeletedChat() error: ', err)
|
||||
wlogger.error('Error in lib/nostr.js/createDeletedChat()')
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
// Returns an array of all deleted chats models in the Mongo database.
|
||||
async getDeletedChats () {
|
||||
try {
|
||||
// Get deleted chats models.
|
||||
const deletedChats = await this.DeletedChatModel.find({})
|
||||
|
||||
return deletedChats
|
||||
} catch (err) {
|
||||
wlogger.error('Error in lib/users.js/getAllDeletedChat()')
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
// Create a new deleted post model and add it to the Mongo database.
|
||||
async createDeletedPost (deletedPostObj) {
|
||||
try {
|
||||
// Input Validation
|
||||
|
||||
const deletedPostEntity = this.DeletedPostEntity.validate(deletedPostObj)
|
||||
const deletedPost = new this.DeletedPostModel(deletedPostEntity)
|
||||
|
||||
// Save the new model to the database.
|
||||
await deletedPost.save()
|
||||
return deletedPost
|
||||
} catch (err) {
|
||||
wlogger.error('Error in lib/users.js/createDeletedPost()')
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
// Returns an array of all deleted posts models in the Mongo database.
|
||||
async getDeletedPosts () {
|
||||
try {
|
||||
// Get deleted posts models.
|
||||
const deletedPosts = await this.DeletedPostModel.find({})
|
||||
|
||||
return deletedPosts
|
||||
} catch (err) {
|
||||
wlogger.error('Error in lib/users.js/getDeletedPosts()')
|
||||
throw err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default NostrUseCases
|
||||
+172
-14
@@ -65,6 +65,7 @@ class OfferUseCases {
|
||||
this.flagOffer = this.flagOffer.bind(this)
|
||||
this.loadOffers = this.loadOffers.bind(this)
|
||||
this.listOffersByAddress = this.listOffersByAddress.bind(this)
|
||||
this.syncOfferMutableData = this.syncOfferMutableData.bind(this)
|
||||
|
||||
// State
|
||||
this.seenOffers = []
|
||||
@@ -129,20 +130,57 @@ class OfferUseCases {
|
||||
|
||||
// Get data about the token.
|
||||
const tokenId = offerEntity.tokenId
|
||||
// const tokenData = await this.adapters.wallet.bchWallet.getTokenData(tokenId)
|
||||
const tokenData = await this.retryQueue.addToQueue(this.adapters.wallet.bchWallet.getTokenData, tokenId)
|
||||
// console.log(`tokenData: ${JSON.stringify(tokenData, null, 2)}`)
|
||||
let tokenData = null
|
||||
try {
|
||||
tokenData = await this.retryQueue.addToQueue(this.adapters.wallet.bchWallet.getTokenData, tokenId)
|
||||
} catch (err) {
|
||||
console.error('Error in OfferUseCases/createOffer() getting token data: ', err.message)
|
||||
}
|
||||
|
||||
// Generate a 'display category' for the token. This will allow the
|
||||
// front end UI to figure out how to display the token.
|
||||
const displayCategory = this.categorizeToken(offerEntity, tokenData)
|
||||
console.log('displayCategory: ', displayCategory)
|
||||
offerEntity.displayCategory = displayCategory
|
||||
// Do additional data analysis if the token data was successfully retrieved.
|
||||
if (tokenData) {
|
||||
// Store the mutable and immutable data cids.
|
||||
const mutableDataCid = tokenData.mutableData
|
||||
const immutableDataCid = tokenData.immutableData
|
||||
offerEntity.mutableDataCid = mutableDataCid
|
||||
offerEntity.immutableDataCid = immutableDataCid
|
||||
|
||||
// Detect if user set the NSFW flag.
|
||||
// const nsfw = false
|
||||
// nsfw = await this.retryQueue.addToQueue(this.detectNsfw, tokenData)
|
||||
// offerEntity.nsfw = nsfw
|
||||
// Get the mutable data from the cid if it exists.
|
||||
if (mutableDataCid && typeof mutableDataCid === 'string') {
|
||||
let mutableData = null
|
||||
try {
|
||||
mutableData = await this.retryQueue.addToQueue(this.adapters.wallet.cid2json, mutableDataCid)
|
||||
} catch (err) {
|
||||
console.error('Error in OfferUseCases/createOffer() getting mutable data: ', err.message)
|
||||
}
|
||||
console.log('mutableData: ', mutableData)
|
||||
|
||||
if (mutableData) {
|
||||
try {
|
||||
offerEntity.tokenIconUrl = mutableData.tokenIcon
|
||||
offerEntity.tokenCategories = mutableData.category
|
||||
offerEntity.tokenTags = mutableData.tags
|
||||
offerEntity.lastUpdatedTokenData = new Date().getTime()
|
||||
|
||||
offerEntity.userDataStr = JSON.stringify(mutableData.userData)
|
||||
} catch (error) {
|
||||
// skip error
|
||||
}
|
||||
}
|
||||
}
|
||||
console.log('offerEntity: ', offerEntity)
|
||||
|
||||
// Generate a 'display category' for the token. This will allow the
|
||||
// front end UI to figure out how to display the token.
|
||||
const displayCategory = this.categorizeToken(offerEntity, tokenData)
|
||||
console.log('displayCategory: ', displayCategory)
|
||||
offerEntity.displayCategory = displayCategory
|
||||
|
||||
// Detect if user set the NSFW flag.
|
||||
// const nsfw = false
|
||||
// nsfw = await this.retryQueue.addToQueue(this.detectNsfw, tokenData)
|
||||
// offerEntity.nsfw = nsfw
|
||||
}
|
||||
|
||||
// Add offer to the local database.
|
||||
const offerModel = new this.OfferModel(offerEntity)
|
||||
@@ -150,7 +188,7 @@ class OfferUseCases {
|
||||
|
||||
return true
|
||||
} catch (err) {
|
||||
console.error('Error in createOffer()', err.message)
|
||||
console.error('\n\nError in createOffer()', err.message, '\n\n', err)
|
||||
throw err
|
||||
}
|
||||
}
|
||||
@@ -267,7 +305,7 @@ class OfferUseCases {
|
||||
}
|
||||
}
|
||||
|
||||
async listNftOffers (page = 0, nsfw = false) {
|
||||
/* async listNftOffers (page = 0, nsfw = false) {
|
||||
try {
|
||||
const data = await this.OfferModel.find({
|
||||
displayCategory: { $ne: 'fungible' },
|
||||
@@ -287,6 +325,42 @@ class OfferUseCases {
|
||||
console.error('Error in use-cases/offer/listNftOffers()')
|
||||
throw error
|
||||
}
|
||||
} */
|
||||
|
||||
async listNftOffers (page = 0, nsfw = false) {
|
||||
try {
|
||||
const query = {
|
||||
displayCategory: { $ne: 'fungible' },
|
||||
nsfw
|
||||
}
|
||||
// Total query offers
|
||||
const totalOffers = await this.OfferModel.countDocuments(query)
|
||||
// Total pages
|
||||
const totalPages = Math.ceil(totalOffers / NFT_ENTRIES_PER_PAGE)
|
||||
|
||||
const data = await this.OfferModel.find(query)
|
||||
// Sort entries so newest entries show first.
|
||||
.sort('-timestamp')
|
||||
// Skip to the start of the selected page.
|
||||
.skip(page * NFT_ENTRIES_PER_PAGE)
|
||||
// Only return 20 results.
|
||||
.limit(NFT_ENTRIES_PER_PAGE)
|
||||
|
||||
// console.log('listNftOffers() returning this data: ', data)
|
||||
|
||||
return {
|
||||
data,
|
||||
pagination: {
|
||||
currentPage: page,
|
||||
totalPages,
|
||||
totalOffers,
|
||||
pageSize: NFT_ENTRIES_PER_PAGE
|
||||
}
|
||||
}
|
||||
} catch (error) {
|
||||
console.error('Error in use-cases/offer/listNftOffers()')
|
||||
throw error
|
||||
}
|
||||
}
|
||||
|
||||
async listFungibleOffers (page = 0) {
|
||||
@@ -862,6 +936,90 @@ class OfferUseCases {
|
||||
throw err
|
||||
}
|
||||
}
|
||||
|
||||
// update offer model mutable data
|
||||
async syncOfferMutableData (tokenId) {
|
||||
try {
|
||||
// validate input
|
||||
if (!tokenId || typeof tokenId !== 'string') {
|
||||
throw new Error('tokenId must be a string!')
|
||||
}
|
||||
|
||||
// validate existing offer with the associated tokenId
|
||||
const offer = await this.OfferModel.findOne({ tokenId })
|
||||
if (!offer) throw new Error('Associated offer not found!')
|
||||
|
||||
// Verify last update timestamp. This prevents users from spamming the API with requests.
|
||||
// It only updates the mutable data if it has been more than 5 minutes since the last update.
|
||||
const lastUpdateTs = Number(offer.lastUpdatedTokenData)
|
||||
const now = new Date().getTime()
|
||||
const period = 5
|
||||
if (lastUpdateTs) {
|
||||
// add 5 minutes to the last update
|
||||
const lastUpdate = new Date(lastUpdateTs)
|
||||
console.log('lastUpdate', lastUpdate)
|
||||
lastUpdate.setMinutes(lastUpdate.getMinutes() + period)
|
||||
|
||||
console.log(new Date().getMinutes() + ' ' + lastUpdate.getMinutes())
|
||||
// if now is less than the lastUpdate + 5 minutos , them skip.
|
||||
if (now < lastUpdate.getTime()) {
|
||||
console.log('Skipping , token lastUpdate is less than 5 minutes.')
|
||||
return offer
|
||||
}
|
||||
}
|
||||
|
||||
let tokenData = null
|
||||
try {
|
||||
tokenData = await this.retryQueue.addToQueue(this.adapters.wallet.bchWallet.getTokenData, tokenId)
|
||||
} catch (err) {
|
||||
// Dev Note: If getTokenData() fails, the code below will
|
||||
console.error('Error in OfferUseCases/createOffer() getting token data: ', err.message)
|
||||
}
|
||||
|
||||
// Do additional data analysis if the token data was successfully retrieved.
|
||||
if (tokenData) {
|
||||
// Store the mutable and immutable data cids.
|
||||
const mutableDataCid = tokenData.mutableData
|
||||
const immutableDataCid = tokenData.immutableData
|
||||
offer.mutableDataCid = mutableDataCid
|
||||
offer.immutableDataCid = immutableDataCid
|
||||
|
||||
// Get the mutable data from the cid if it exists.
|
||||
if (mutableDataCid && typeof mutableDataCid === 'string') {
|
||||
let mutableData = null
|
||||
try {
|
||||
mutableData = await this.retryQueue.addToQueue(this.adapters.wallet.cid2json, mutableDataCid)
|
||||
} catch (err) {
|
||||
console.error('Error in OfferUseCases/createOffer() getting mutable data: ', err.message)
|
||||
}
|
||||
console.log('mutableData: ', mutableData)
|
||||
|
||||
if (mutableData) {
|
||||
try {
|
||||
offer.tokenIconUrl = mutableData.tokenIcon
|
||||
offer.tokenCategories = mutableData.category
|
||||
offer.tokenTags = mutableData.tags
|
||||
|
||||
offer.userDataStr = JSON.stringify(mutableData.userData)
|
||||
} catch (error) {
|
||||
// skip error
|
||||
}
|
||||
}
|
||||
}
|
||||
// Save update time stamp
|
||||
offer.lastUpdatedTokenData = new Date().getTime()
|
||||
}
|
||||
|
||||
// Save the updated offer data to the database.
|
||||
await offer.save()
|
||||
|
||||
// Return the updated offer data.
|
||||
return offer
|
||||
} catch (err) {
|
||||
console.error('Error in syncOfferMutableData(): ', err)
|
||||
throw err
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export default OfferUseCases
|
||||
|
||||
@@ -0,0 +1,188 @@
|
||||
import testUtils from '../../utils/test-utils.js'
|
||||
import { assert } from 'chai'
|
||||
import config from '../../../config/index.js'
|
||||
import axios from 'axios'
|
||||
import sinon from 'sinon'
|
||||
import util from 'util'
|
||||
|
||||
util.inspect.defaultOptions = { depth: 1 }
|
||||
|
||||
const LOCALHOST = `http://localhost:${config.port}`
|
||||
|
||||
const context = {}
|
||||
let sandbox
|
||||
|
||||
// const mockContext = require('../../unit/mocks/ctx-mock').context
|
||||
|
||||
if (!config.noMongo) {
|
||||
describe('Nostr', () => {
|
||||
before(async () => {
|
||||
// console.log(`config: ${JSON.stringify(config, null, 2)}`)
|
||||
|
||||
// Create a second test user.
|
||||
const userObj = {
|
||||
email: 'test2@test.com',
|
||||
password: 'pass2',
|
||||
name: 'test2'
|
||||
}
|
||||
const testUser = await testUtils.createUser(userObj)
|
||||
// console.log(`testUser2: ${JSON.stringify(testUser, null, 2)}`)
|
||||
|
||||
context.user2 = testUser.user
|
||||
context.token2 = testUser.token
|
||||
context.id2 = testUser.user._id
|
||||
|
||||
// Get the JWT used to log in as the admin 'system' user.
|
||||
const adminJWT = await testUtils.getAdminJWT()
|
||||
console.log(`adminJWT: ${adminJWT}`)
|
||||
context.adminJWT = adminJWT
|
||||
|
||||
// const admin = await testUtils.loginAdminUser()
|
||||
// context.adminJWT = admin.token
|
||||
|
||||
// const admin = await adminLib.loginAdmin()
|
||||
// console.log(`admin: ${JSON.stringify(admin, null, 2)}`)
|
||||
})
|
||||
|
||||
beforeEach(() => {
|
||||
// const useCases = new UseCases({ adapters })
|
||||
// uut = new UserController({ adapters, useCases })
|
||||
|
||||
sandbox = sinon.createSandbox()
|
||||
})
|
||||
|
||||
afterEach(() => sandbox.restore())
|
||||
|
||||
describe('POST /nostr/deletedChat - Create Deleted Chat', () => {
|
||||
it('should not create deleted chat if the authorization header is missing', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedChat`
|
||||
}
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
it('should not create deleted chat if the authorization header is invalid scheme', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedChat`,
|
||||
headers: {
|
||||
Authorization: 'Bearer invalid'
|
||||
}
|
||||
}
|
||||
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
it('should not create deleted chat if the authorization header is invalid token', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedChat`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${context.token}`
|
||||
}
|
||||
}
|
||||
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
it('should not create deleted chat if token is not admin', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedChat`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${context.token}`
|
||||
}
|
||||
}
|
||||
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('POST /nostr/deletedPost - Create Deleted Post', () => {
|
||||
it('should not create deleted post if the authorization header is missing', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedPost`
|
||||
}
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
|
||||
it('should not create deleted post if the authorization header is invalid scheme', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedPost`,
|
||||
headers: {
|
||||
Authorization: 'Bearer invalid'
|
||||
}
|
||||
}
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
it('should not create deleted post if the authorization header is invalid token', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedPost`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${context.token}`
|
||||
}
|
||||
}
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
it('should not create deleted post if token is not admin', async () => {
|
||||
try {
|
||||
const options = {
|
||||
method: 'POST',
|
||||
url: `${LOCALHOST}/nostr/deletedPost`,
|
||||
headers: {
|
||||
Authorization: `Bearer ${context.token}`
|
||||
}
|
||||
}
|
||||
await axios(options)
|
||||
|
||||
assert.equal(true, false, 'Unexpected behavior')
|
||||
} catch (err) {
|
||||
assert.equal(err.response.status, 401)
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
@@ -493,4 +493,35 @@ describe('#wallet', () => {
|
||||
}
|
||||
})
|
||||
})
|
||||
describe('#cid2json', () => {
|
||||
it('should throw error if cid is not provided', async () => {
|
||||
try {
|
||||
await uut.cid2json()
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (error) {
|
||||
assert.equal(error.message, 'urlOrCid must be a string!')
|
||||
}
|
||||
})
|
||||
|
||||
it('should convert cid to json', async () => {
|
||||
try {
|
||||
sandbox.stub(uut.bchWallet, 'cid2json').resolves({ json: offerMockData.mutableDataMock })
|
||||
const cid = 'bafkreidr6wfd6mcmwpea7abm5uk5rrprc2wfbcvo5wdcmtlolrpjab5oqm'
|
||||
const result = await uut.cid2json(cid)
|
||||
assert.isObject(result)
|
||||
} catch (error) {
|
||||
assert.fail('Unexpected code path')
|
||||
}
|
||||
})
|
||||
it('should convert ipfs url to json', async () => {
|
||||
try {
|
||||
sandbox.stub(uut.bchWallet, 'cid2json').resolves({ json: offerMockData.mutableDataMock })
|
||||
const url = 'https://ipfs.io/ipfs/bafkreidr6wfd6mcmwpea7abm5uk5rrprc2wfbcvo5wdcmtlolrpjab5oqm'
|
||||
const result = await uut.cid2json(url)
|
||||
assert.isObject(result)
|
||||
} catch (error) {
|
||||
assert.fail('Unexpected code path')
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
/*
|
||||
Unit tests for the REST API handler for the /nostr endpoints.
|
||||
*/
|
||||
|
||||
// Public npm libraries
|
||||
import { assert } from 'chai'
|
||||
import sinon from 'sinon'
|
||||
|
||||
// Local support libraries
|
||||
import adapters from '../../../mocks/adapters/index.js'
|
||||
import UseCasesMock from '../../../mocks/use-cases/index.js'
|
||||
import NostrController from '../../../../../src/controllers/rest-api/nostr/controller.js'
|
||||
|
||||
import { context as mockContext } from '../../../../unit/mocks/ctx-mock.js'
|
||||
let uut
|
||||
let sandbox
|
||||
let ctx
|
||||
|
||||
describe('#Nostr-REST-Controller', () => {
|
||||
// const testUser = {}
|
||||
|
||||
beforeEach(() => {
|
||||
const useCases = new UseCasesMock()
|
||||
uut = new NostrController({ adapters, useCases })
|
||||
|
||||
sandbox = sinon.createSandbox()
|
||||
|
||||
// Mock the context object.
|
||||
ctx = mockContext()
|
||||
})
|
||||
|
||||
afterEach(() => sandbox.restore())
|
||||
|
||||
describe('#constructor', () => {
|
||||
it('should throw an error if adapters are not passed in', () => {
|
||||
try {
|
||||
uut = new NostrController()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(
|
||||
err.message,
|
||||
'Instance of Adapters library required when instantiating /nostr REST Controller.'
|
||||
)
|
||||
}
|
||||
})
|
||||
|
||||
it('should throw an error if useCases are not passed in', () => {
|
||||
try {
|
||||
uut = new NostrController({ adapters })
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(
|
||||
err.message,
|
||||
'Instance of Use Cases library required when instantiating /nostr REST Controller.'
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#POST /nostr/deletedChat', () => {
|
||||
it('should return 422 status on biz logic error', async () => {
|
||||
try {
|
||||
sandbox.stub(uut.useCases.nostr, 'createDeletedChat').rejects(new Error('test error'))
|
||||
await uut.createDeletedChat(ctx)
|
||||
|
||||
assert.fail('Unexpected result')
|
||||
} catch (err) {
|
||||
// console.log(err)
|
||||
assert.equal(err.status, 422)
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
|
||||
it('should return 200 status on success', async () => {
|
||||
ctx.request.body = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q',
|
||||
npub: 'npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8',
|
||||
bchAddr: 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
|
||||
pubkey: '6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1'
|
||||
}
|
||||
|
||||
await uut.createDeletedChat(ctx)
|
||||
|
||||
// Assert the expected HTTP response
|
||||
assert.equal(ctx.status, 200)
|
||||
|
||||
assert.isObject(ctx.response.body)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#GET /nostr/deletedChat', () => {
|
||||
it('should return 422 status on arbitrary biz logic error', async () => {
|
||||
try {
|
||||
// Force an error
|
||||
sandbox
|
||||
.stub(uut.useCases.nostr, 'getDeletedChats')
|
||||
.rejects(new Error('test error'))
|
||||
|
||||
await uut.getDeletedChats(ctx)
|
||||
|
||||
assert.fail('Unexpected result')
|
||||
} catch (err) {
|
||||
assert.equal(err.status, 422)
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
|
||||
it('should return 200 status on success', async () => {
|
||||
await uut.getDeletedChats(ctx)
|
||||
|
||||
// Assert the expected HTTP response
|
||||
assert.equal(ctx.status, 200)
|
||||
|
||||
// Assert that expected properties exist in the returned data.
|
||||
assert.isObject(ctx.response.body)
|
||||
assert.property(ctx.response.body, 'deletedChats')
|
||||
assert.isArray(ctx.response.body.deletedChats)
|
||||
})
|
||||
})
|
||||
describe('#POST /nostr/deletedPost', () => {
|
||||
it('should return 422 status on biz logic error', async () => {
|
||||
try {
|
||||
sandbox.stub(uut.useCases.nostr, 'createDeletedPost').rejects(new Error('test error'))
|
||||
await uut.createDeletedPost(ctx)
|
||||
|
||||
assert.fail('Unexpected result')
|
||||
} catch (err) {
|
||||
assert.equal(err.status, 422)
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
it('should return 200 status on success', async () => {
|
||||
ctx.request.body = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q',
|
||||
npub: 'npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8',
|
||||
bchAddr: 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
|
||||
pubkey: '6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1'
|
||||
}
|
||||
|
||||
await uut.createDeletedPost(ctx)
|
||||
|
||||
assert.equal(ctx.status, 200)
|
||||
|
||||
assert.isObject(ctx.response.body)
|
||||
assert.property(ctx.response.body, 'deletedPost')
|
||||
assert.isObject(ctx.response.body.deletedPost)
|
||||
})
|
||||
})
|
||||
describe('#GET /nostr/deletedPost', () => {
|
||||
it('should return 422 status on biz logic error', async () => {
|
||||
try {
|
||||
sandbox.stub(uut.useCases.nostr, 'getDeletedPosts').rejects(new Error('test error'))
|
||||
await uut.getDeletedPosts(ctx)
|
||||
|
||||
assert.fail('Unexpected result')
|
||||
} catch (err) {
|
||||
assert.equal(err.status, 422)
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
it('should return 200 status on success', async () => {
|
||||
await uut.getDeletedPosts(ctx)
|
||||
|
||||
// Assert the expected HTTP response
|
||||
assert.equal(ctx.status, 200)
|
||||
|
||||
assert.isObject(ctx.response.body)
|
||||
assert.property(ctx.response.body, 'deletedPosts')
|
||||
assert.isArray(ctx.response.body.deletedPosts)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#handleError', () => {
|
||||
it('should still throw error if there is no message', () => {
|
||||
try {
|
||||
const err = {
|
||||
status: 404
|
||||
}
|
||||
|
||||
uut.handleError(ctx, err)
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'Not Found')
|
||||
}
|
||||
})
|
||||
|
||||
it('should throw error with message', () => {
|
||||
try {
|
||||
const err = {
|
||||
status: 422,
|
||||
message: 'test error'
|
||||
}
|
||||
|
||||
uut.handleError(ctx, err)
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,108 @@
|
||||
/*
|
||||
Unit tests for the REST API handler for the /nostr endpoints.
|
||||
*/
|
||||
|
||||
// Public npm libraries
|
||||
import { assert } from 'chai'
|
||||
|
||||
import sinon from 'sinon'
|
||||
|
||||
// Local support libraries
|
||||
import adapters from '../../../mocks/adapters/index.js'
|
||||
|
||||
import UseCasesMock from '../../../mocks/use-cases/index.js'
|
||||
|
||||
// const app = require('../../../mocks/app-mock')
|
||||
|
||||
import NostrRouter from '../../../../../src/controllers/rest-api/nostr/index.js'
|
||||
|
||||
let uut
|
||||
let sandbox
|
||||
// let ctx
|
||||
|
||||
// const mockContext = require('../../../../unit/mocks/ctx-mock').context
|
||||
|
||||
describe('#Nostr-REST-Router', () => {
|
||||
// const testUser = {}
|
||||
|
||||
beforeEach(() => {
|
||||
const useCases = new UseCasesMock()
|
||||
uut = new NostrRouter({ adapters, useCases })
|
||||
|
||||
sandbox = sinon.createSandbox()
|
||||
|
||||
// Mock the context object.
|
||||
// ctx = mockContext()
|
||||
})
|
||||
|
||||
afterEach(() => sandbox.restore())
|
||||
|
||||
describe('#constructor', () => {
|
||||
it('should throw an error if adapters are not passed in', () => {
|
||||
try {
|
||||
uut = new NostrRouter()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(
|
||||
err.message,
|
||||
'Instance of Adapters library required when instantiating NostrRouter REST Controller.'
|
||||
)
|
||||
}
|
||||
})
|
||||
|
||||
it('should throw an error if useCases are not passed in', () => {
|
||||
try {
|
||||
uut = new NostrRouter({ adapters })
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(
|
||||
err.message,
|
||||
'Instance of Use Cases library required when instantiating NostrRouter REST Controller.'
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#attach', () => {
|
||||
it('should throw an error if app is not passed in.', () => {
|
||||
try {
|
||||
uut.attach()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(
|
||||
err.message,
|
||||
'Must pass app object when attaching REST API controllers.'
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#createDeletedChat', () => {
|
||||
it('should route to the createDeletedChat function', async () => {
|
||||
// Stub functions
|
||||
const validationSpy = sandbox.stub(uut.validators, 'ensureAdmin').resolves(true)
|
||||
sandbox.stub(uut.nostrRESTController, 'createDeletedChat').resolves(true)
|
||||
|
||||
// Call function
|
||||
const res = await uut.createDeletedChat()
|
||||
assert.isTrue(validationSpy.calledOnce, 'Admin validator should be called')
|
||||
assert.isTrue(res)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#createDeletedPost', () => {
|
||||
it('should route to the createDeletedPost function', async () => {
|
||||
// Stub functions
|
||||
const validationSpy = sandbox.stub(uut.validators, 'ensureAdmin').resolves(true)
|
||||
sandbox.stub(uut.nostrRESTController, 'createDeletedPost').resolves(true)
|
||||
|
||||
// Call function
|
||||
const res = await uut.createDeletedPost()
|
||||
assert.isTrue(validationSpy.calledOnce, 'Admin validator should be called')
|
||||
assert.isTrue(res)
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -229,6 +229,27 @@ describe('#Offer-REST-Router', () => {
|
||||
}
|
||||
})
|
||||
})
|
||||
describe('#syncOfferMutableData', () => {
|
||||
it('should sync mutable data', async () => {
|
||||
ctx.request.body = { tokenId: 'tokenId' }
|
||||
sandbox.stub(uut.useCases.offer, 'syncOfferMutableData').resolves({})
|
||||
await uut.syncOfferMutableData(ctx)
|
||||
assert.isObject(ctx.body)
|
||||
})
|
||||
it('should catch and throw an error', async () => {
|
||||
try {
|
||||
ctx.request.body = { tokenId: 'tokenId' }
|
||||
sandbox
|
||||
.stub(uut.useCases.offer, 'syncOfferMutableData')
|
||||
.throws(new Error('test error'))
|
||||
|
||||
await uut.syncOfferMutableData(ctx)
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#handleError', () => {
|
||||
it('should still throw error if there is no message', () => {
|
||||
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
Unit tests for the DeletedChat entity library.
|
||||
*/
|
||||
|
||||
import { assert } from 'chai'
|
||||
import sinon from 'sinon'
|
||||
|
||||
import DeletedChat from '../../../src/entities/deletedChat.js'
|
||||
|
||||
let sandbox
|
||||
let uut
|
||||
|
||||
describe('#DeletedChat-Entity', () => {
|
||||
before(async () => {})
|
||||
|
||||
beforeEach(() => {
|
||||
uut = new DeletedChat()
|
||||
|
||||
sandbox = sinon.createSandbox()
|
||||
})
|
||||
|
||||
afterEach(() => sandbox.restore())
|
||||
|
||||
describe('#validate', () => {
|
||||
it('should throw an error if eventId is not provided', () => {
|
||||
try {
|
||||
uut.validate()
|
||||
} catch (err) {
|
||||
assert.include(err.message, "Property 'eventId' must be a string!")
|
||||
}
|
||||
})
|
||||
|
||||
it('should return a DeletedChat object', () => {
|
||||
const inputData = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q',
|
||||
npub: 'npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8',
|
||||
bchAddr: 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
|
||||
pubkey: '6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1'
|
||||
}
|
||||
|
||||
const deletedChat = uut.validate(inputData)
|
||||
// console.log('entry: ', entry)
|
||||
|
||||
assert.property(deletedChat, 'eventId')
|
||||
assert.equal(deletedChat.eventId, inputData.eventId)
|
||||
|
||||
assert.property(deletedChat, 'npub')
|
||||
assert.equal(deletedChat.npub, inputData.npub)
|
||||
|
||||
assert.property(deletedChat, 'bchAddr')
|
||||
assert.equal(deletedChat.bchAddr, inputData.bchAddr)
|
||||
|
||||
assert.property(deletedChat, 'pubkey')
|
||||
assert.equal(deletedChat.pubkey, inputData.pubkey)
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -0,0 +1,57 @@
|
||||
/*
|
||||
Unit tests for the DeletedPost entity library.
|
||||
*/
|
||||
|
||||
import { assert } from 'chai'
|
||||
import sinon from 'sinon'
|
||||
|
||||
import DeletedPost from '../../../src/entities/deletedPost.js'
|
||||
|
||||
let sandbox
|
||||
let uut
|
||||
|
||||
describe('#DeletedPost-Entity', () => {
|
||||
before(async () => { })
|
||||
|
||||
beforeEach(() => {
|
||||
uut = new DeletedPost()
|
||||
|
||||
sandbox = sinon.createSandbox()
|
||||
})
|
||||
|
||||
afterEach(() => sandbox.restore())
|
||||
|
||||
describe('#validate', () => {
|
||||
it('should throw an error if eventId is not provided', () => {
|
||||
try {
|
||||
uut.validate()
|
||||
} catch (err) {
|
||||
assert.include(err.message, "Property 'eventId' must be a string!")
|
||||
}
|
||||
})
|
||||
|
||||
it('should return a DeletedPost object', () => {
|
||||
const inputData = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q',
|
||||
npub: 'npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8',
|
||||
bchAddr: 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
|
||||
pubkey: '6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1'
|
||||
}
|
||||
|
||||
const deletedPost = uut.validate(inputData)
|
||||
// console.log('entry: ', entry)
|
||||
|
||||
assert.property(deletedPost, 'eventId')
|
||||
assert.equal(deletedPost.eventId, inputData.eventId)
|
||||
|
||||
assert.property(deletedPost, 'npub')
|
||||
assert.equal(deletedPost.npub, inputData.npub)
|
||||
|
||||
assert.property(deletedPost, 'bchAddr')
|
||||
assert.equal(deletedPost.bchAddr, inputData.bchAddr)
|
||||
|
||||
assert.property(deletedPost, 'pubkey')
|
||||
assert.equal(deletedPost.pubkey, inputData.pubkey)
|
||||
})
|
||||
})
|
||||
})
|
||||
@@ -149,7 +149,7 @@ const localdb = {
|
||||
static findById () {}
|
||||
static find () {}
|
||||
static findOne () {}
|
||||
|
||||
static countDocuments(){}
|
||||
async save () {
|
||||
return {}
|
||||
}
|
||||
@@ -165,7 +165,31 @@ const localdb = {
|
||||
async save () {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
},
|
||||
DeletedChat: class DeletedChat {
|
||||
constructor (obj) {}
|
||||
|
||||
static findById () {}
|
||||
static find () {}
|
||||
static findOne () {}
|
||||
static updateOne () {}
|
||||
|
||||
async save () {
|
||||
return {}
|
||||
}
|
||||
},
|
||||
DeletedPost: class DeletedPost {
|
||||
constructor (obj) {}
|
||||
|
||||
static findById () {}
|
||||
static find () {}
|
||||
static findOne () {}
|
||||
static updateOne () {}
|
||||
|
||||
async save () {
|
||||
return {}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const bch = {
|
||||
|
||||
@@ -54,6 +54,7 @@ class MockBchWallet {
|
||||
}
|
||||
};
|
||||
this.optimize = async () => { };
|
||||
this.cid2json = async () => {};
|
||||
this.ar = new AdapterRoute()
|
||||
// Environment variable is used by wallet-balance.unit.js to force an error.
|
||||
if (process.env.NO_UTXO) {
|
||||
|
||||
@@ -71,6 +71,9 @@ class Offer {
|
||||
async acceptCounterOffer() {
|
||||
return {}
|
||||
}
|
||||
async syncOfferMutableData(){
|
||||
return {}
|
||||
}
|
||||
}
|
||||
|
||||
class Order {
|
||||
@@ -132,6 +135,22 @@ class SmAccountUseCaseMock {
|
||||
}
|
||||
}
|
||||
|
||||
class NostrUseCasesMock {
|
||||
async createDeletedChat() {
|
||||
return {}
|
||||
}
|
||||
async getDeletedChats() {
|
||||
return []
|
||||
}
|
||||
async createDeletedPost() {
|
||||
return {}
|
||||
}
|
||||
async getDeletedPosts() {
|
||||
return []
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class UseCasesMock {
|
||||
constuctor(localConfig = {}) {
|
||||
// this.user = new UserUseCaseMock(localConfig)
|
||||
@@ -143,6 +162,7 @@ class UseCasesMock {
|
||||
order = new Order()
|
||||
usage = new UsageUseCaseMock()
|
||||
smAccount = new SmAccountUseCaseMock()
|
||||
nostr = new NostrUseCasesMock()
|
||||
}
|
||||
|
||||
export default UseCasesMock;
|
||||
|
||||
@@ -126,6 +126,20 @@ const fungibleTokenData01 = {
|
||||
"immutableData": "troutsblog.com",
|
||||
"mutableData": ""
|
||||
}
|
||||
const mutableDataMock = {
|
||||
schema: 'ps007-v1.0.3',
|
||||
schemaDocs: 'https://github.com/Permissionless-Software-Foundation/specifications/blob/master/ps007-token-data-schema.md',
|
||||
tokenIcon: 'https://files.tokentiger.com/ipfs/view/bafkreidr6wfd6mcmwpea7abm5uk5rrprc2wfbcvo5wdcmtlolrpjab5oqm',
|
||||
fullSizedUrl: '',
|
||||
nsfw: false,
|
||||
userData: { currentUrl: 'https://tokentiger.com' },
|
||||
jsonLd: {},
|
||||
about: 'This is AI generated art.',
|
||||
category: '',
|
||||
tags: [],
|
||||
mediaType: 'image',
|
||||
currentOwner: {},
|
||||
}
|
||||
|
||||
const offerMockData = {
|
||||
data: {
|
||||
@@ -214,5 +228,6 @@ export default {
|
||||
fungibleTokenData01,
|
||||
offerMockData,
|
||||
deserealizeTxMockNoOperatorOut,
|
||||
deserealizeTxMock
|
||||
deserealizeTxMock,
|
||||
mutableDataMock
|
||||
};
|
||||
|
||||
@@ -0,0 +1,213 @@
|
||||
/*
|
||||
Unit tests for the Nostr Use Case library.
|
||||
*/
|
||||
|
||||
// Public npm libraries
|
||||
import { assert } from 'chai'
|
||||
import sinon from 'sinon'
|
||||
|
||||
// Unit under test (uut)
|
||||
import NostrUseCases from '../../../src/use-cases/nostr-use-cases.js'
|
||||
// Local support libraries
|
||||
import adapters from '../mocks/adapters/index.js'
|
||||
|
||||
describe('#nostr-use-cases', () => {
|
||||
let uut
|
||||
let sandbox
|
||||
|
||||
before(async () => {
|
||||
// Delete all previous users in the database.
|
||||
// await testUtils.deleteAllUsers()
|
||||
})
|
||||
|
||||
beforeEach(() => {
|
||||
sandbox = sinon.createSandbox()
|
||||
|
||||
uut = new NostrUseCases({ adapters })
|
||||
})
|
||||
|
||||
afterEach(() => sandbox.restore())
|
||||
|
||||
describe('#constructor', () => {
|
||||
it('should throw an error if adapters are not passed in', () => {
|
||||
try {
|
||||
uut = new NostrUseCases()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
console.log(uut) // linter
|
||||
} catch (err) {
|
||||
assert.include(
|
||||
err.message,
|
||||
'Instance of adapters must be passed in when instantiating Nostr Use Cases library.'
|
||||
)
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#createDeletedChat', () => {
|
||||
it('should throw an error if no input is given', async () => {
|
||||
try {
|
||||
await uut.createDeletedChat()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
// console.log(err)
|
||||
// assert.equal(err.status, 422)
|
||||
assert.include(err.message, "Property 'eventId' must be a string!")
|
||||
}
|
||||
})
|
||||
|
||||
it('should throw an error if eventId is not provided', async () => {
|
||||
try {
|
||||
await uut.createDeletedChat({})
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, "Property 'eventId' must be a string!")
|
||||
}
|
||||
})
|
||||
|
||||
it('should catch and throw DB errors', async () => {
|
||||
try {
|
||||
// Force an error with the database.
|
||||
sandbox.stub(uut, 'DeletedChatModel').throws(new Error('test error'))
|
||||
|
||||
const inObj = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q'
|
||||
}
|
||||
|
||||
await uut.createDeletedChat(inObj)
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
|
||||
it('should create a new deleted chat model with minimum inputs', async () => {
|
||||
const inObj = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q'
|
||||
}
|
||||
|
||||
const res = await uut.createDeletedChat(inObj)
|
||||
|
||||
assert.isObject(res)
|
||||
})
|
||||
it('should create a new deleted chat model with maximum inputs', async () => {
|
||||
const inObj = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q',
|
||||
npub: 'npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8',
|
||||
bchAddr: 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
|
||||
pubkey: '6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1'
|
||||
}
|
||||
|
||||
const res = await uut.createDeletedChat(inObj)
|
||||
|
||||
assert.isObject(res)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#getDeletedChats', () => {
|
||||
it('should return all deleted chats from the database', async () => {
|
||||
sandbox.stub(uut.DeletedChatModel, 'find').resolves([])
|
||||
const res = await uut.getDeletedChats()
|
||||
|
||||
assert.isArray(res)
|
||||
})
|
||||
|
||||
it('should catch and throw an error', async () => {
|
||||
try {
|
||||
// Force an error.
|
||||
sandbox.stub(uut.DeletedChatModel, 'find').rejects(new Error('test error'))
|
||||
|
||||
await uut.getDeletedChats()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
})
|
||||
|
||||
describe('#createDeletedPost', () => {
|
||||
it('should throw an error if no input is given', async () => {
|
||||
try {
|
||||
await uut.createDeletedPost()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, "Property 'eventId' must be a string!")
|
||||
}
|
||||
})
|
||||
|
||||
it('should throw an error if eventId is not provided', async () => {
|
||||
try {
|
||||
await uut.createDeletedPost({})
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, "Property 'eventId' must be a string!")
|
||||
}
|
||||
})
|
||||
|
||||
it('should catch and throw DB errors', async () => {
|
||||
try {
|
||||
// Force an error with the database.
|
||||
sandbox.stub(uut, 'DeletedPostModel').throws(new Error('test error'))
|
||||
|
||||
const inObj = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q'
|
||||
}
|
||||
|
||||
await uut.createDeletedPost(inObj)
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
it('should create a new deleted post model with minimum inputs', async () => {
|
||||
const inObj = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q'
|
||||
}
|
||||
|
||||
const res = await uut.createDeletedPost(inObj)
|
||||
|
||||
assert.isObject(res)
|
||||
})
|
||||
it('should create a new deleted post model with maximum inputs', async () => {
|
||||
const inObj = {
|
||||
eventId: 'note19e93faw4ffqepsqsrwrnstd3ee00nmzakwwuyfjm43dankgummfqms4p6q',
|
||||
npub: 'npub1d4ed5x49d7p24xn63flj4985dc4gpfngdhtqcxpth0ywhm6czxcscfpcq8',
|
||||
bchAddr: 'bitcoincash:qpm2qsznhks23z7629mms6s4cwef74vcwvy22gdx6a',
|
||||
pubkey: '6d72da1aa56f82aa9a7a8a7f2a94f46e2a80a6686dd60c182bbbc8ebef5811b1'
|
||||
}
|
||||
|
||||
const res = await uut.createDeletedPost(inObj)
|
||||
|
||||
assert.isObject(res)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#getDeletedPosts', () => {
|
||||
it('should return all deleted posts from the database', async () => {
|
||||
sandbox.stub(uut.DeletedPostModel, 'find').resolves([])
|
||||
const res = await uut.getDeletedPosts()
|
||||
|
||||
assert.isArray(res)
|
||||
})
|
||||
})
|
||||
|
||||
it('should catch and throw an error', async () => {
|
||||
try {
|
||||
// Force an error.
|
||||
sandbox.stub(uut.DeletedPostModel, 'find').rejects(new Error('test error'))
|
||||
|
||||
await uut.getDeletedPosts()
|
||||
|
||||
assert.fail('Unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'test error')
|
||||
}
|
||||
})
|
||||
})
|
||||
@@ -108,6 +108,73 @@ describe('#offer-use-case', () => {
|
||||
assert.isFalse(result)
|
||||
})
|
||||
|
||||
it('should create offer with mutable data', async () => {
|
||||
const tokenDataMock = mockData.nftTokenData01
|
||||
const offerObj = mockData.offerMockData
|
||||
const mutableDataMock = mockData.mutableDataMock
|
||||
|
||||
// Mock dependencies
|
||||
// sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').resolves(false)
|
||||
sandbox.stub(uut, 'findOfferByTxid').throws(new Error('offer not found'))
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves({}) // Utxo Status call
|
||||
.onCall(1).resolves(tokenDataMock) // Token Data call
|
||||
.onCall(2).resolves(mutableDataMock)
|
||||
|
||||
const result = await uut.createOffer(offerObj)
|
||||
assert.isTrue(result)
|
||||
})
|
||||
|
||||
it('should skip userData stringify error', async () => {
|
||||
const tokenDataMock = mockData.nftTokenData01
|
||||
const offerObj = mockData.offerMockData
|
||||
const mutableDataMock = mockData.mutableDataMock
|
||||
mutableDataMock.userData = { n: 10n }
|
||||
// Mock dependencies
|
||||
// sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').resolves(false)
|
||||
sandbox.stub(uut, 'findOfferByTxid').throws(new Error('offer not found'))
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves({}) // Utxo Status call
|
||||
.onCall(1).resolves(tokenDataMock) // Token Data call
|
||||
.onCall(2).resolves(mutableDataMock)
|
||||
|
||||
const result = await uut.createOffer(offerObj)
|
||||
assert.isTrue(result)
|
||||
})
|
||||
|
||||
it('should handle error getting token data', async () => {
|
||||
// const tokenDataMock = mockData.nftTokenData01
|
||||
const offerObj = mockData.offerMockData
|
||||
const mutableDataMock = mockData.mutableDataMock
|
||||
mutableDataMock.userData = { n: 10n }
|
||||
// Mock dependencies
|
||||
// sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').resolves(false)
|
||||
sandbox.stub(uut, 'findOfferByTxid').throws(new Error('offer not found'))
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves({}) // Utxo Status call
|
||||
.onCall(1).throws(new Error('test error'))
|
||||
|
||||
const result = await uut.createOffer(offerObj)
|
||||
assert.isTrue(result)
|
||||
})
|
||||
|
||||
it('should handle error getting mutable data', async () => {
|
||||
const tokenDataMock = mockData.nftTokenData01
|
||||
const offerObj = mockData.offerMockData
|
||||
const mutableDataMock = mockData.mutableDataMock
|
||||
mutableDataMock.userData = { n: 10n }
|
||||
// Mock dependencies
|
||||
// sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').resolves(false)
|
||||
sandbox.stub(uut, 'findOfferByTxid').throws(new Error('offer not found'))
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves({}) // Utxo Status call
|
||||
.onCall(1).resolves(tokenDataMock) // Token Data call
|
||||
.onCall(2).throws(new Error('test error')) // cid2json call
|
||||
|
||||
const result = await uut.createOffer(offerObj)
|
||||
assert.isTrue(result)
|
||||
})
|
||||
|
||||
it('should create offer', async () => {
|
||||
const tokenDataMock = mockData.simpleNftTokenData01
|
||||
const offerObj = mockData.offerMockData
|
||||
@@ -400,7 +467,7 @@ describe('#offer-use-case', () => {
|
||||
}
|
||||
})
|
||||
|
||||
it('should list orders', async () => {
|
||||
it('should list offers', async () => {
|
||||
const queryMock = {
|
||||
sort () {
|
||||
return this
|
||||
@@ -414,7 +481,11 @@ describe('#offer-use-case', () => {
|
||||
sandbox.stub(uut.OfferModel, 'find').returns(queryMock)
|
||||
|
||||
const result = await uut.listNftOffers(1, true)
|
||||
assert.isArray(result)
|
||||
assert.isObject(result)
|
||||
assert.property(result, 'data')
|
||||
assert.property(result, 'pagination')
|
||||
assert.isArray(result.data)
|
||||
assert.isObject(result.pagination)
|
||||
})
|
||||
})
|
||||
|
||||
@@ -781,27 +852,29 @@ describe('#offer-use-case', () => {
|
||||
assert.equal(result, 'N/A')
|
||||
})
|
||||
|
||||
it('should return if utxo cant be validated', async () => {
|
||||
it('should return N/A on axios error', async () => {
|
||||
// Mock dependencies
|
||||
const mock = Object.assign({}, mockData.offerMockData.data)
|
||||
sandbox.stub(uut.orderUseCase, 'findOrderByUtxo').resolves(mock)
|
||||
sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').throws(new Error('test error'))
|
||||
// sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').throws(new Error('test error'))
|
||||
const axiosErr = new Error('axios err')
|
||||
axiosErr.isAxiosError = true
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue').throws(axiosErr)
|
||||
|
||||
const result = await uut.acceptCounterOffer({ data: { /** .... */ } })
|
||||
assert.equal(result, 'N/A')
|
||||
})
|
||||
it('should return if utxo can not be validated', async () => {
|
||||
// Mock dependencies
|
||||
const mock = Object.assign({}, mockData.offerMockData.data)
|
||||
sandbox.stub(uut.orderUseCase, 'findOrderByUtxo').resolves(mock)
|
||||
// sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').throws(new Error('test error'))
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue').throws(new Error('test error'))
|
||||
|
||||
const result = await uut.acceptCounterOffer({ data: { /** .... */ } })
|
||||
assert.equal(result, 'N/A')
|
||||
})
|
||||
|
||||
it('should handle axios error', async () => {
|
||||
// Mock dependencies
|
||||
const mock = Object.assign({}, mockData.offerMockData.data)
|
||||
const stubErr = new Error()
|
||||
stubErr.isAxiosError = true
|
||||
sandbox.stub(uut.orderUseCase, 'findOrderByUtxo').resolves(mock)
|
||||
sandbox.stub(uut.adapters.wallet.bchWallet, 'utxoIsValid').throws(stubErr)
|
||||
|
||||
const result = await uut.acceptCounterOffer({ data: { /** .... */ } })
|
||||
assert.equal(result, 'N/A')
|
||||
})
|
||||
it('should return if utxo is invalid', async () => {
|
||||
// Mock dependencies
|
||||
const mock = Object.assign({}, mockData.offerMockData.data)
|
||||
@@ -949,4 +1022,112 @@ describe('#offer-use-case', () => {
|
||||
assert.notEqual('N/A')
|
||||
})
|
||||
})
|
||||
|
||||
describe('#syncOfferMutableData', () => {
|
||||
it('should throw error if tokenId is not provided!', async () => {
|
||||
try {
|
||||
await uut.syncOfferMutableData()
|
||||
assert.fail('unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'tokenId must be a string!')
|
||||
}
|
||||
})
|
||||
|
||||
it('should throw error if tokenId is not found!', async () => {
|
||||
try {
|
||||
// Mock dependencies
|
||||
sandbox.stub(uut.OfferModel, 'findOne').resolves(null)
|
||||
|
||||
await uut.syncOfferMutableData('tokenId')
|
||||
assert.fail('unexpected code path')
|
||||
} catch (err) {
|
||||
assert.include(err.message, 'Associated offer not found!')
|
||||
}
|
||||
})
|
||||
|
||||
it('should return current data if lastUpdatedTokenData is less than 5 minutes', async () => {
|
||||
// Mock dependencies
|
||||
const lastUpdatedTokenData = new Date().getTime()
|
||||
const offerMock = Object.assign({}, mockData.offerMockData)
|
||||
offerMock.lastUpdatedTokenData = lastUpdatedTokenData
|
||||
// stub
|
||||
sandbox.stub(uut.OfferModel, 'findOne').returns(offerMock)
|
||||
const spy = sandbox.stub(uut.retryQueue, 'addToQueue').resolves(true)
|
||||
|
||||
const offer = await uut.syncOfferMutableData('tokenId')
|
||||
|
||||
assert.isObject(offer)
|
||||
assert.isTrue(spy.notCalled, 'it should not call retryQueue functions.')
|
||||
})
|
||||
|
||||
it('should sync offer', async () => {
|
||||
// create a timestamp 6 minutes in the past
|
||||
|
||||
// Create offer mock
|
||||
const offerMock = Object.assign({}, mockData.offerMockData)
|
||||
offerMock.save = () => { }
|
||||
|
||||
// Stub functions
|
||||
sandbox.stub(uut.OfferModel, 'findOne').returns(offerMock)
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves(mockData.simpleNftTokenData01) // Token Data call
|
||||
.onCall(1).resolves(mockData.mutableDataMock)
|
||||
|
||||
const offer = await uut.syncOfferMutableData('tokenId')
|
||||
assert.isObject(offer)
|
||||
assert.isNumber(offer.lastUpdatedTokenData)
|
||||
})
|
||||
|
||||
it('should skip userData stringify error', async () => {
|
||||
// create mutable data mock
|
||||
const mutableDataMock = mockData.mutableDataMock
|
||||
mutableDataMock.userData = { n: 10n }
|
||||
|
||||
// create offer mock
|
||||
const offerMock = Object.assign({}, mockData.offerMockData)
|
||||
offerMock.save = () => { }
|
||||
|
||||
// Stub functions
|
||||
sandbox.stub(uut.OfferModel, 'findOne').returns(offerMock)
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves(mockData.simpleNftTokenData01) // Token Data call
|
||||
.onCall(1).resolves(mutableDataMock)
|
||||
|
||||
const offer = await uut.syncOfferMutableData('tokenId')
|
||||
|
||||
assert.isObject(offer)
|
||||
assert.isNumber(offer.lastUpdatedTokenData)
|
||||
})
|
||||
|
||||
it('should handle error getting token data', async () => {
|
||||
// create offer mock
|
||||
const offerMock = Object.assign({}, mockData.offerMockData)
|
||||
offerMock.save = () => { }
|
||||
|
||||
// Stub functions
|
||||
sandbox.stub(uut.OfferModel, 'findOne').returns(offerMock)
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).throws(new Error('tokendata error')) // Token Data call
|
||||
.onCall(1).resolves(mockData.mutableDataMock)
|
||||
|
||||
const offer = await uut.syncOfferMutableData('tokenId')
|
||||
assert.isObject(offer)
|
||||
})
|
||||
|
||||
it('should handle error getting mutable data', async () => {
|
||||
// create offer mock
|
||||
const offerMock = Object.assign({}, mockData.offerMockData)
|
||||
offerMock.save = () => { }
|
||||
|
||||
// Stub functions
|
||||
sandbox.stub(uut.OfferModel, 'findOne').returns(offerMock)
|
||||
sandbox.stub(uut.retryQueue, 'addToQueue')
|
||||
.onCall(0).resolves(mockData.simpleNftTokenData01) // Token Data call
|
||||
.onCall(1).throws(new Error('mutable data error'))
|
||||
|
||||
const offer = await uut.syncOfferMutableData('tokenId')
|
||||
assert.isObject(offer)
|
||||
assert.isNumber(offer.lastUpdatedTokenData)
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
import mongoose from 'mongoose'
|
||||
import config from '../../../config/index.js'
|
||||
import User from '../../../src/adapters/localdb/models/users.js'
|
||||
|
||||
async function getUsers () {
|
||||
// Connect to the Mongo Database.
|
||||
mongoose.Promise = global.Promise
|
||||
mongoose.set('useCreateIndex', true) // Stop deprecation warning.
|
||||
await mongoose.connect(
|
||||
config.database,
|
||||
{ useNewUrlParser: true, useUnifiedTopology: true }
|
||||
)
|
||||
|
||||
// Find the user by email.
|
||||
const user = await User.findOne({
|
||||
email: 'test@test.com'
|
||||
}, '-password')
|
||||
// console.log('user: ', user)
|
||||
|
||||
// Update the users password
|
||||
user.password = 'test'
|
||||
|
||||
// Change the user to an admin
|
||||
// user.type = 'admin'
|
||||
|
||||
// Save the changes to the database.
|
||||
await user.save()
|
||||
|
||||
mongoose.connection.close()
|
||||
}
|
||||
getUsers()
|
||||
@@ -0,0 +1,32 @@
|
||||
import mongoose from 'mongoose'
|
||||
// import config from '../../config/index.js'
|
||||
import User from '../../src/adapters/localdb/models/users.js'
|
||||
|
||||
const mongooseConnectStr = 'mongodb://172.17.0.1:5666/bch-swap-service-prod'
|
||||
|
||||
async function getUsers () {
|
||||
// Connect to the Mongo Database.
|
||||
mongoose.Promise = global.Promise
|
||||
mongoose.set('useCreateIndex', true) // Stop deprecation warning.
|
||||
await mongoose.connect(
|
||||
mongooseConnectStr,
|
||||
{ useNewUrlParser: true, useUnifiedTopology: true }
|
||||
)
|
||||
|
||||
// Find the user by email.
|
||||
const user = await User.findOne({
|
||||
email: 'test@test.com'
|
||||
}, '-password')
|
||||
|
||||
// Update the users password
|
||||
// user.password = 'newpassword'
|
||||
|
||||
// Change the user to an admin
|
||||
// user.type = 'admin'
|
||||
|
||||
// Save the changes to the database.
|
||||
await user.save()
|
||||
|
||||
mongoose.connection.close()
|
||||
}
|
||||
getUsers()
|
||||
Reference in New Issue
Block a user