forked from onflow/nft-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NFTStorefrontV2.cdc
779 lines (695 loc) · 33.8 KB
/
NFTStorefrontV2.cdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
import FungibleToken from "./utility/FungibleToken.cdc"
import NonFungibleToken from "./utility/NonFungibleToken.cdc"
/// NFTStorefrontV2
///
/// A general purpose sale support contract for NFTs that implement the Flow NonFungibleToken standard.
///
/// Each account that wants to list NFTs for sale installs a Storefront,
/// and lists individual sales within that Storefront as Listings.
/// There is one Storefront per account, it handles sales of all NFT types
/// for that account.
///
/// Each Listing can have one or more "cuts" of the sale price that
/// goes to one or more addresses. Cuts can be used to pay listing fees
/// or other considerations.
/// Each Listing can include a commission amount that is paid to whoever facilitates
/// the purchase. The seller can also choose to provide an optional list of marketplace
/// receiver capabilities. In this case, the commission amount must be transferred to
/// one of the capabilities in the list.
///
/// Each NFT may be listed in one or more Listings, the validity of each
/// Listing can easily be checked.
///
/// Purchasers can watch for Listing events and check the NFT type and
/// ID to see if they wish to buy the listed item.
/// Marketplaces and other aggregators can watch for Listing events
/// and list items of interest.
///
pub contract NFTStorefrontV2 {
/// StorefrontInitialized
/// A Storefront resource has been created.
/// Event consumers can now expect events from this Storefront.
/// Note that we do not specify an address: we cannot and should not.
/// Created resources do not have an owner address, and may be moved
/// after creation in ways we cannot check.
/// ListingAvailable events can be used to determine the address
/// of the owner of the Storefront (...its location) at the time of
/// the listing but only at that precise moment in that precise transaction.
/// If the seller moves the Storefront while the listing is valid,
/// that is on them.
///
pub event StorefrontInitialized(storefrontResourceID: UInt64)
/// StorefrontDestroyed
/// A Storefront has been destroyed.
/// Event consumers can now stop processing events from this Storefront.
/// Note that we do not specify an address.
///
pub event StorefrontDestroyed(storefrontResourceID: UInt64)
/// ListingAvailable
/// A listing has been created and added to a Storefront resource.
/// The Address values here are valid when the event is emitted, but
/// the state of the accounts they refer to may change outside of the
/// NFTStorefrontV2 workflow, so be careful to check when using them.
///
pub event ListingAvailable(
storefrontAddress: Address,
listingResourceID: UInt64,
nftType: Type,
nftUUID: UInt64,
nftID: UInt64,
salePaymentVaultType: Type,
salePrice: UFix64,
customID: String?,
commissionAmount: UFix64,
commissionReceivers: [Address]?,
expiry: UInt64
)
/// ListingCompleted
/// The listing has been resolved. It has either been purchased, removed or destroyed.
///
pub event ListingCompleted(
listingResourceID: UInt64,
storefrontResourceID: UInt64,
purchased: Bool,
nftType: Type,
nftUUID: UInt64,
nftID: UInt64,
salePaymentVaultType: Type,
salePrice: UFix64,
customID: String?,
commissionAmount: UFix64,
commissionReceiver: Address?,
expiry: UInt64
)
/// UnpaidReceiver
/// A entitled receiver has not been paid during the sale of the NFT.
///
pub event UnpaidReceiver(receiver: Address, entitledSaleCut: UFix64)
/// StorefrontStoragePath
/// The location in storage that a Storefront resource should be located.
pub let StorefrontStoragePath: StoragePath
/// StorefrontPublicPath
/// The public location for a Storefront link.
pub let StorefrontPublicPath: PublicPath
/// SaleCut
/// A struct representing a recipient that must be sent a certain amount
/// of the payment when a token is sold.
///
pub struct SaleCut {
/// The receiver for the payment.
/// Note that we do not store an address to find the Vault that this represents,
/// as the link or resource that we fetch in this way may be manipulated,
/// so to find the address that a cut goes to you must get this struct and then
/// call receiver.borrow()!.owner.address on it.
/// This can be done efficiently in a script.
pub let receiver: Capability<&{FungibleToken.Receiver}>
/// The amount of the payment FungibleToken that will be paid to the receiver.
pub let amount: UFix64
/// initializer
///
init(receiver: Capability<&{FungibleToken.Receiver}>, amount: UFix64) {
self.receiver = receiver
self.amount = amount
}
}
/// ListingDetails
/// A struct containing a Listing's data.
///
pub struct ListingDetails {
/// The Storefront that the Listing is stored in.
/// Note that this resource cannot be moved to a different Storefront,
/// so this is OK. If we ever make it so that it *can* be moved,
/// this should be revisited.
pub var storefrontID: UInt64
/// Whether this listing has been purchased or not.
pub var purchased: Bool
/// The Type of the NonFungibleToken.NFT that is being listed.
pub let nftType: Type
/// The Resource ID of the NFT which can only be set in the contract
pub let nftUUID: UInt64
/// The unique identifier of the NFT that will get sell.
pub let nftID: UInt64
/// The Type of the FungibleToken that payments must be made in.
pub let salePaymentVaultType: Type
/// The amount that must be paid in the specified FungibleToken.
pub let salePrice: UFix64
/// This specifies the division of payment between recipients.
pub let saleCuts: [SaleCut]
/// Allow different dapp teams to provide custom strings as the distinguisher string
/// that would help them to filter events related to their customID.
pub var customID: String?
/// Commission available to be claimed by whoever facilitates the sale.
pub let commissionAmount: UFix64
/// Expiry of listing
pub let expiry: UInt64
/// Irreversibly set this listing as purchased.
///
access(contract) fun setToPurchased() {
self.purchased = true
}
access(contract) fun setCustomID(customID: String?){
self.customID = customID
}
/// Initializer
///
init (
nftType: Type,
nftUUID: UInt64,
nftID: UInt64,
salePaymentVaultType: Type,
saleCuts: [SaleCut],
storefrontID: UInt64,
customID: String?,
commissionAmount: UFix64,
expiry: UInt64
) {
pre {
// Validate the expiry
expiry > UInt64(getCurrentBlock().timestamp) : "Expiry should be in the future"
// Validate the length of the sale cut
saleCuts.length > 0: "Listing must have at least one payment cut recipient"
}
self.storefrontID = storefrontID
self.purchased = false
self.nftType = nftType
self.nftUUID = nftUUID
self.nftID = nftID
self.salePaymentVaultType = salePaymentVaultType
self.customID = customID
self.commissionAmount = commissionAmount
self.expiry = expiry
self.saleCuts = saleCuts
// Calculate the total price from the cuts
var salePrice = commissionAmount
// Perform initial check on capabilities, and calculate sale price from cut amounts.
for cut in self.saleCuts {
// Make sure we can borrow the receiver.
// We will check this again when the token is sold.
cut.receiver.borrow()
?? panic("Cannot borrow receiver")
// Add the cut amount to the total price
salePrice = salePrice + cut.amount
}
assert(salePrice > 0.0, message: "Listing must have non-zero price")
// Store the calculated sale price
self.salePrice = salePrice
}
}
/// ListingPublic
/// An interface providing a useful public interface to a Listing.
///
pub resource interface ListingPublic {
/// borrowNFT
/// This will assert in the same way as the NFT standard borrowNFT()
/// if the NFT is absent, for example if it has been sold via another listing.
///
pub fun borrowNFT(): &NonFungibleToken.NFT?
/// purchase
/// Purchase the listing, buying the token.
/// This pays the beneficiaries and returns the token to the buyer.
///
pub fun purchase(
payment: @FungibleToken.Vault,
commissionRecipient: Capability<&{FungibleToken.Receiver}>?,
): @NonFungibleToken.NFT
/// getDetails
/// Fetches the details of the listing.
pub fun getDetails(): ListingDetails
/// getAllowedCommissionReceivers
/// Fetches the allowed marketplaces capabilities or commission receivers.
/// If it returns `nil` then commission is up to grab by anyone.
pub fun getAllowedCommissionReceivers(): [Capability<&{FungibleToken.Receiver}>]?
}
/// Listing
/// A resource that allows an NFT to be sold for an amount of a given FungibleToken,
/// and for the proceeds of that sale to be split between several recipients.
///
pub resource Listing: ListingPublic {
/// The simple (non-Capability, non-complex) details of the sale
access(self) let details: ListingDetails
/// A capability allowing this resource to withdraw the NFT with the given ID from its collection.
/// This capability allows the resource to withdraw *any* NFT, so you should be careful when giving
/// such a capability to a resource and always check its code to make sure it will use it in the
/// way that it claims.
access(contract) let nftProviderCapability: Capability<&{NonFungibleToken.Provider, NonFungibleToken.CollectionPublic}>
/// An optional list of marketplaces capabilities that are approved
/// to receive the marketplace commission.
access(contract) let marketplacesCapability: [Capability<&{FungibleToken.Receiver}>]?
/// borrowNFT
/// Return the reference of the NFT that is listed for sale.
/// if the NFT is absent, for example if it has been sold via another listing.
/// it will return nil.
///
pub fun borrowNFT(): &NonFungibleToken.NFT? {
let ref = self.nftProviderCapability.borrow()!.borrowNFT(id: self.details.nftID)
if ref.isInstance(self.details.nftType) && ref.id == self.details.nftID {
return ref as! &NonFungibleToken.NFT
}
return nil
}
/// getDetails
/// Get the details of listing.
///
pub fun getDetails(): ListingDetails {
return self.details
}
/// getAllowedCommissionReceivers
/// Fetches the allowed marketplaces capabilities or commission receivers.
/// If it returns `nil` then commission is up to grab by anyone.
pub fun getAllowedCommissionReceivers(): [Capability<&{FungibleToken.Receiver}>]? {
return self.marketplacesCapability
}
/// purchase
/// Purchase the listing, buying the token.
/// This pays the beneficiaries and commission to the facilitator and returns extra token to the buyer.
/// This also cleans up duplicate listings for the item being purchased.
pub fun purchase(
payment: @FungibleToken.Vault,
commissionRecipient: Capability<&{FungibleToken.Receiver}>?,
): @NonFungibleToken.NFT {
pre {
self.details.purchased == false: "listing has already been purchased"
payment.isInstance(self.details.salePaymentVaultType): "payment vault is not requested fungible token"
payment.balance == self.details.salePrice: "payment vault does not contain requested price"
self.details.expiry > UInt64(getCurrentBlock().timestamp): "Listing is expired"
self.owner != nil : "Resource doesn't have the assigned owner"
}
// Make sure the listing cannot be purchased again.
self.details.setToPurchased()
if self.details.commissionAmount > 0.0 {
// If commission recipient is nil, Throw panic.
let commissionReceiver = commissionRecipient ?? panic("Commission recipient can't be nil")
if self.marketplacesCapability != nil {
var isCommissionRecipientHasValidType = false
var isCommissionRecipientAuthorised = false
for cap in self.marketplacesCapability! {
// Check 1: Should have the same type
if cap.getType() == commissionReceiver.getType() {
isCommissionRecipientHasValidType = true
// Check 2: Should have the valid market address that holds approved capability.
if cap.address == commissionReceiver.address && cap.check() {
isCommissionRecipientAuthorised = true
break
}
}
}
assert(isCommissionRecipientHasValidType, message: "Given recipient does not has valid type")
assert(isCommissionRecipientAuthorised, message: "Given recipient has not authorised to receive the commission")
}
let commissionPayment <- payment.withdraw(amount: self.details.commissionAmount)
let recipient = commissionReceiver.borrow() ?? panic("Unable to borrow the recipent capability")
recipient.deposit(from: <- commissionPayment)
}
// Fetch the token to return to the purchaser.
let nft <-self.nftProviderCapability.borrow()!.withdraw(withdrawID: self.details.nftID)
// Neither receivers nor providers are trustworthy, they must implement the correct
// interface but beyond complying with its pre/post conditions they are not gauranteed
// to implement the functionality behind the interface in any given way.
// Therefore we cannot trust the Collection resource behind the interface,
// and we must check the NFT resource it gives us to make sure that it is the correct one.
assert(nft.isInstance(self.details.nftType), message: "withdrawn NFT is not of specified type")
assert(nft.id == self.details.nftID, message: "withdrawn NFT does not have specified ID")
// Fetch the duplicate listing for the given NFT
// Access the StoreFrontManager resource reference to remove the duplicate listings if purchase would happen successfully.
let storeFrontPublicRef = self.owner!.getCapability<&NFTStorefrontV2.Storefront{NFTStorefrontV2.StorefrontPublic}>(NFTStorefrontV2.StorefrontPublicPath)
.borrow() ?? panic("Unable to borrow the storeFrontManager resource")
let duplicateListings = storeFrontPublicRef.getDuplicateListingIDs(nftType: self.details.nftType, nftID: self.details.nftID, listingID: self.uuid)
// Let's force removal of the listing in this storefront for the NFT that is being purchased.
for listingID in duplicateListings {
storeFrontPublicRef.cleanup(listingResourceID: listingID)
}
// Rather than aborting the transaction if any receiver is absent when we try to pay it,
// we send the cut to the first valid receiver.
// The first receiver should therefore either be the seller, or an agreed recipient for
// any unpaid cuts.
var residualReceiver: &{FungibleToken.Receiver}? = nil
// Pay the comission
// Pay each beneficiary their amount of the payment.
for cut in self.details.saleCuts {
if let receiver = cut.receiver.borrow() {
let paymentCut <- payment.withdraw(amount: cut.amount)
receiver.deposit(from: <-paymentCut)
if (residualReceiver == nil) {
residualReceiver = receiver
}
} else {
emit UnpaidReceiver(receiver: cut.receiver.address, entitledSaleCut: cut.amount)
}
}
assert(residualReceiver != nil, message: "No valid payment receivers")
// At this point, if all recievers were active and availabile, then the payment Vault will have
// zero tokens left, and this will functionally be a no-op that consumes the empty vault
residualReceiver!.deposit(from: <-payment)
// If the listing is purchased, we regard it as completed here.
// Otherwise we regard it as completed in the destructor.
emit ListingCompleted(
listingResourceID: self.uuid,
storefrontResourceID: self.details.storefrontID,
purchased: self.details.purchased,
nftType: self.details.nftType,
nftUUID: self.details.nftUUID,
nftID: self.details.nftID,
salePaymentVaultType: self.details.salePaymentVaultType,
salePrice: self.details.salePrice,
customID: self.details.customID,
commissionAmount: self.details.commissionAmount,
commissionReceiver: self.details.commissionAmount != 0.0 ? commissionRecipient!.address : nil,
expiry: self.details.expiry
)
return <-nft
}
/// destructor
///
destroy () {
// If the listing has not been purchased, we regard it as completed here.
// Otherwise we regard it as completed in purchase().
// This is because we destroy the listing in Storefront.removeListing()
// or Storefront.cleanup() .
// If we change this destructor, revisit those functions.
if !self.details.purchased {
emit ListingCompleted(
listingResourceID: self.uuid,
storefrontResourceID: self.details.storefrontID,
purchased: self.details.purchased,
nftType: self.details.nftType,
nftUUID: self.details.nftUUID,
nftID: self.details.nftID,
salePaymentVaultType: self.details.salePaymentVaultType,
salePrice: self.details.salePrice,
customID: self.details.customID,
commissionAmount: self.details.commissionAmount,
commissionReceiver: nil,
expiry: self.details.expiry
)
}
}
/// initializer
///
init (
nftProviderCapability: Capability<&{NonFungibleToken.Provider, NonFungibleToken.CollectionPublic}>,
nftType: Type,
nftUUID: UInt64,
nftID: UInt64,
salePaymentVaultType: Type,
saleCuts: [SaleCut],
marketplacesCapability: [Capability<&{FungibleToken.Receiver}>]?,
storefrontID: UInt64,
customID: String?,
commissionAmount: UFix64,
expiry: UInt64
) {
// Store the sale information
self.details = ListingDetails(
nftType: nftType,
nftUUID: nftUUID,
nftID: nftID,
salePaymentVaultType: salePaymentVaultType,
saleCuts: saleCuts,
storefrontID: storefrontID,
customID: customID,
commissionAmount: commissionAmount,
expiry: expiry
)
// Store the NFT provider
self.nftProviderCapability = nftProviderCapability
self.marketplacesCapability = marketplacesCapability
// Check that the provider contains the NFT.
// We will check it again when the token is sold.
// We cannot move this into a function because initializers cannot call member functions.
let provider = self.nftProviderCapability.borrow()
assert(provider != nil, message: "cannot borrow nftProviderCapability")
// This will precondition assert if the token is not available.
let nft = provider!.borrowNFT(id: self.details.nftID)
assert(nft.isInstance(self.details.nftType), message: "token is not of specified type")
assert(nft.id == self.details.nftID, message: "token does not have specified ID")
}
}
/// StorefrontManager
/// An interface for adding and removing Listings within a Storefront,
/// intended for use by the Storefront's owner
///
pub resource interface StorefrontManager {
/// createListing
/// Allows the Storefront owner to create and insert Listings.
///
pub fun createListing(
nftProviderCapability: Capability<&{NonFungibleToken.Provider, NonFungibleToken.CollectionPublic}>,
nftType: Type,
nftID: UInt64,
salePaymentVaultType: Type,
saleCuts: [SaleCut],
marketplacesCapability: [Capability<&{FungibleToken.Receiver}>]?,
customID: String?,
commissionAmount: UFix64,
expiry: UInt64
): UInt64
/// removeListing
/// Allows the Storefront owner to remove any sale listing, acepted or not.
///
pub fun removeListing(listingResourceID: UInt64)
}
/// StorefrontPublic
/// An interface to allow listing and borrowing Listings, and purchasing items via Listings
/// in a Storefront.
///
pub resource interface StorefrontPublic {
pub fun getListingIDs(): [UInt64]
pub fun getDuplicateListingIDs(nftType: Type, nftID: UInt64, listingID: UInt64): [UInt64]
pub fun borrowListing(listingResourceID: UInt64): &Listing{ListingPublic}?
pub fun cleanupExpiredListings(fromIndex: UInt64, toIndex: UInt64)
access(contract) fun cleanup(listingResourceID: UInt64)
pub fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64]
pub fun cleanupPurchasedListings(listingResourceID: UInt64)
}
/// Storefront
/// A resource that allows its owner to manage a list of Listings, and anyone to interact with them
/// in order to query their details and purchase the NFTs that they represent.
///
pub resource Storefront : StorefrontManager, StorefrontPublic {
/// The dictionary of Listing uuids to Listing resources.
access(contract) var listings: @{UInt64: Listing}
/// Dictionary to keep track of listing ids for same NFTs listing.
/// nftType.identifier -> nftID -> [listing resource ID]
access(contract) var listedNFTs: {String: {UInt64 : [UInt64]}}
/// insert
/// Create and publish a Listing for an NFT.
///
pub fun createListing(
nftProviderCapability: Capability<&{NonFungibleToken.Provider, NonFungibleToken.CollectionPublic}>,
nftType: Type,
nftID: UInt64,
salePaymentVaultType: Type,
saleCuts: [SaleCut],
marketplacesCapability: [Capability<&{FungibleToken.Receiver}>]?,
customID: String?,
commissionAmount: UFix64,
expiry: UInt64
): UInt64 {
// let's ensure that the seller does indeed hold the NFT being listed
let collectionRef = nftProviderCapability.borrow()
?? panic("Could not borrow reference to collection")
let nftRef = collectionRef.borrowNFT(id: nftID)
// Instead of letting an arbitrary value be set for the UUID of a given NFT, the contract
// should fetch it itelf
let uuid = nftRef.uuid
let listing <- create Listing(
nftProviderCapability: nftProviderCapability,
nftType: nftType,
nftUUID: uuid,
nftID: nftID,
salePaymentVaultType: salePaymentVaultType,
saleCuts: saleCuts,
marketplacesCapability: marketplacesCapability,
storefrontID: self.uuid,
customID: customID,
commissionAmount: commissionAmount,
expiry: expiry
)
let listingResourceID = listing.uuid
let listingPrice = listing.getDetails().salePrice
// Add the new listing to the dictionary.
let oldListing <- self.listings[listingResourceID] <- listing
// Note that oldListing will always be nil, but we have to handle it.
destroy oldListing
// Add the `listingResourceID` in the tracked listings.
self.addDuplicateListing(nftIdentifier: nftType.identifier, nftID: nftID, listingResourceID: listingResourceID)
// Scraping addresses from the capabilities to emit in the event.
var allowedCommissionReceivers : [Address]? = nil
if let allowedReceivers = marketplacesCapability {
// Small hack here to make `allowedCommissionReceivers` variable compatible to
// array properties.
allowedCommissionReceivers = []
for receiver in allowedReceivers {
allowedCommissionReceivers!.append(receiver.address)
}
}
emit ListingAvailable(
storefrontAddress: self.owner?.address!,
listingResourceID: listingResourceID,
nftType: nftType,
nftUUID: uuid,
nftID: nftID,
salePaymentVaultType: salePaymentVaultType,
salePrice: listingPrice,
customID: customID,
commissionAmount: commissionAmount,
commissionReceivers: allowedCommissionReceivers,
expiry: expiry
)
return listingResourceID
}
/// addDuplicateListing
/// Helper function that allows to add duplicate listing of given nft in a map.
///
access(contract) fun addDuplicateListing(nftIdentifier: String, nftID: UInt64, listingResourceID: UInt64) {
if !self.listedNFTs.containsKey(nftIdentifier) {
self.listedNFTs.insert(key: nftIdentifier, {nftID: [listingResourceID]})
} else {
if !self.listedNFTs[nftIdentifier]!.containsKey(nftID) {
self.listedNFTs[nftIdentifier]!.insert(key: nftID, [listingResourceID])
} else {
self.listedNFTs[nftIdentifier]![nftID]!.append(listingResourceID)
}
}
}
/// removeDuplicateListing
/// Helper function that allows to remove duplicate listing of given nft from a map.
///
access(contract) fun removeDuplicateListing(nftIdentifier: String, nftID: UInt64, listingResourceID: UInt64) {
// Remove the listing from the listedNFTs dictionary.
let listingIndex = self.listedNFTs[nftIdentifier]![nftID]!.firstIndex(of: listingResourceID) ?? panic("Should contain the index")
self.listedNFTs[nftIdentifier]![nftID]!.remove(at: listingIndex)
}
/// removeListing
/// Remove a Listing that has not yet been purchased from the collection and destroy it.
/// It can only be executed by the StorefrontManager resource owner.
///
pub fun removeListing(listingResourceID: UInt64) {
let listing <- self.listings.remove(key: listingResourceID)
?? panic("missing Listing")
let listingDetails = listing.getDetails()
self.removeDuplicateListing(nftIdentifier: listingDetails.nftType.identifier, nftID: listingDetails.nftID, listingResourceID: listingResourceID)
// This will emit a ListingCompleted event.
destroy listing
}
/// getListingIDs
/// Returns an array of the Listing resource IDs that are in the collection
///
pub fun getListingIDs(): [UInt64] {
return self.listings.keys
}
/// getExistingListingIDs
/// Returns an array of listing IDs of the given `nftType` and `nftID`.
///
pub fun getExistingListingIDs(nftType: Type, nftID: UInt64): [UInt64] {
if self.listedNFTs[nftType.identifier] == nil || self.listedNFTs[nftType.identifier]![nftID] == nil {
return []
}
var listingIDs = self.listedNFTs[nftType.identifier]![nftID]!
return listingIDs
}
/// cleanupPurchasedListings
/// Allows anyone to remove already purchased listings.
///
pub fun cleanupPurchasedListings(listingResourceID: UInt64) {
pre {
self.listings[listingResourceID] != nil: "could not find listing with given id"
self.borrowListing(listingResourceID: listingResourceID)!.getDetails().purchased == true: "listing not purchased yet"
}
let listing <- self.listings.remove(key: listingResourceID)!
let listingDetails = listing.getDetails()
self.removeDuplicateListing(nftIdentifier: listingDetails.nftType.identifier, nftID: listingDetails.nftID, listingResourceID: listingResourceID)
destroy listing
}
/// getDuplicateListingIDs
/// Returns an array of listing IDs that are duplicates of the given `nftType` and `nftID`.
///
pub fun getDuplicateListingIDs(nftType: Type, nftID: UInt64, listingID: UInt64): [UInt64] {
var listingIDs = self.getExistingListingIDs(nftType: nftType, nftID: nftID)
// Verify that given listing Id also a part of the `listingIds`
let doesListingExist = listingIDs.contains(listingID)
// Find out the index of the existing listing.
if doesListingExist {
var index: Int = 0
for id in listingIDs {
if id == listingID {
break
}
index = index + 1
}
listingIDs.remove(at:index)
return listingIDs
}
return []
}
/// cleanupExpiredListings
/// Cleanup the expired listing by iterating over the provided range of indexes.
///
pub fun cleanupExpiredListings(fromIndex: UInt64, toIndex: UInt64) {
pre {
fromIndex <= toIndex : "Incorrect start index"
Int(toIndex - fromIndex) < self.getListingIDs().length : "Provided range is out of bound"
}
var index = fromIndex
let listingsIDs = self.getListingIDs()
while index <= toIndex {
// There is a possibility that some index may not have the listing.
// becuase of that instead of failing the transaction, Execution moved to next index or listing.
if let listing = self.borrowListing(listingResourceID: listingsIDs[index]) {
if listing.getDetails().expiry <= UInt64(getCurrentBlock().timestamp) {
self.cleanup(listingResourceID: listingsIDs[index])
}
}
index = index + UInt64(1)
}
}
/// borrowSaleItem
/// Returns a read-only view of the SaleItem for the given listingID if it is contained by this collection.
///
pub fun borrowListing(listingResourceID: UInt64): &Listing{ListingPublic}? {
if self.listings[listingResourceID] != nil {
return &self.listings[listingResourceID] as &Listing{ListingPublic}?
} else {
return nil
}
}
/// cleanup
/// Remove an listing, When given listing is duplicate or expired
/// Only contract is allowed to execute it.
///
access(contract) fun cleanup(listingResourceID: UInt64) {
pre {
self.listings[listingResourceID] != nil: "could not find listing with given id"
}
let listing <- self.listings.remove(key: listingResourceID)!
let listingDetails = listing.getDetails()
self.removeDuplicateListing(nftIdentifier: listingDetails.nftType.identifier, nftID: listingDetails.nftID, listingResourceID: listingResourceID)
destroy listing
}
/// destructor
///
destroy () {
destroy self.listings
// Let event consumers know that this storefront will no longer exist
emit StorefrontDestroyed(storefrontResourceID: self.uuid)
}
/// constructor
///
init () {
self.listings <- {}
self.listedNFTs = {}
// Let event consumers know that this storefront exists
emit StorefrontInitialized(storefrontResourceID: self.uuid)
}
}
/// createStorefront
/// Make creating a Storefront publicly accessible.
///
pub fun createStorefront(): @Storefront {
return <-create Storefront()
}
init () {
self.StorefrontStoragePath = /storage/NFTStorefrontV2
self.StorefrontPublicPath = /public/NFTStorefrontV2
}
}