Make book show all (any/any)

This commit is contained in:
Reckless_Satoshi 2022-01-09 13:24:48 -08:00
parent 8e5233267f
commit 6400921f48
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
3 changed files with 24 additions and 15 deletions

View File

@ -84,6 +84,13 @@ class LNNode():
'''Sends sats to buyer, or cancelinvoices''' '''Sends sats to buyer, or cancelinvoices'''
return True return True
def check_if_hold_invoice_is_locked(payment_hash):
'''Every hodl invoice that is in state INVGEN
Has to be checked for payment received until
the window expires'''
return True
def settle_hold_htlcs(payment_hash): def settle_hold_htlcs(payment_hash):
'''Charges a LN hold invoice''' '''Charges a LN hold invoice'''
return True return True

View File

@ -179,7 +179,7 @@ class OrderView(viewsets.ViewSet):
if order.maker_bond.status == order.taker_bond.status == order.trade_escrow.status == LNPayment.Status.LOCKED: if order.maker_bond.status == order.taker_bond.status == order.trade_escrow.status == LNPayment.Status.LOCKED:
# add whether a collaborative cancel is pending # add whether a collaborative cancel is pending
data['pending_cancel'] = order.is_pending_cancel data['pending_cancel'] = order.is_pending_cancel
return Response(data, status.HTTP_200_OK) return Response(data, status.HTTP_200_OK)
@ -343,25 +343,27 @@ class UserView(APIView):
class BookView(ListAPIView): class BookView(ListAPIView):
serializer_class = ListOrderSerializer serializer_class = ListOrderSerializer
queryset = Order.objects.filter(status=Order.Status.PUB)
def get(self,request, format=None): def get(self,request, format=None):
currency = request.GET.get('currency') currency = request.GET.get('currency')
print("currency:", currency) type = request.GET.get('type')
type = request.GET.get('type')
queryset = Order.objects.filter(currency=currency, type=type, status=int(Order.Status.PUB)) queryset = Order.objects.filter(status=Order.Status.PUB)
# Currency 0 and type 2 are special cases treated as "ANY". They are not possible choices.
if not (int(currency) == 0 and int(type) == 2):
queryset = Order.objects.filter(currency=currency, type=type, status=Order.Status.PUB)
if len(queryset)== 0: if len(queryset)== 0:
return Response({'not_found':'No orders found, be the first to make one'}, status=status.HTTP_404_NOT_FOUND) return Response({'not_found':'No orders found, be the first to make one'}, status=status.HTTP_404_NOT_FOUND)
queryset = queryset.order_by('created_at') # queryset = queryset.order_by('created_at')
book_data = [] book_data = []
for order in queryset: for order in queryset:
data = ListOrderSerializer(order).data data = ListOrderSerializer(order).data
user = User.objects.filter(id=data['maker']) data['maker_nick'] = str(order.maker)
if len(user) == 1:
data['maker_nick'] = user[0].username
# Non participants should not see the status or who is the taker for key in ('status','taker'): # Non participants should not see the status or who is the taker
for key in ('status','taker'):
del data[key] del data[key]
book_data.append(data) book_data.append(data)

View File

@ -7,9 +7,9 @@ export default class BookPage extends Component {
super(props); super(props);
this.state = { this.state = {
orders: new Array(), orders: new Array(),
currency: 1, currency: 0,
type: 1, type: 2,
currencies_dict: {"1":"USD"} currencies_dict: {"0":"ANY"}
}; };
this.getCurrencyDict() this.getCurrencyDict()
this.getOrderDetails(this.state.type,this.state.currency) this.getOrderDetails(this.state.type,this.state.currency)
@ -142,7 +142,7 @@ export default class BookPage extends Component {
style: {textAlign:"center"} style: {textAlign:"center"}
}} }}
onChange={this.handleTypeChange} onChange={this.handleTypeChange}
> > <MenuItem value={2}>ANY</MenuItem>
<MenuItem value={1}>BUY</MenuItem> <MenuItem value={1}>BUY</MenuItem>
<MenuItem value={0}>SELL</MenuItem> <MenuItem value={0}>SELL</MenuItem>
</Select> </Select>
@ -162,7 +162,7 @@ export default class BookPage extends Component {
style: {textAlign:"center"} style: {textAlign:"center"}
}} }}
onChange={this.handleCurrencyChange} onChange={this.handleCurrencyChange}
> > <MenuItem value={0}>ANY</MenuItem>
{ {
Object.entries(this.state.currencies_dict) Object.entries(this.state.currencies_dict)
.map( ([key, value]) => <MenuItem value={parseInt(key)}>{value}</MenuItem> ) .map( ([key, value]) => <MenuItem value={parseInt(key)}>{value}</MenuItem> )