Skip to content

Commit b17e059

Browse files
committed
update
read.php update
1 parent 059e769 commit b17e059

File tree

2 files changed

+34
-35
lines changed

2 files changed

+34
-35
lines changed

bot/read.php

+17-18
Original file line numberDiff line numberDiff line change
@@ -43,33 +43,33 @@ function extractString($string, $start, $end) {
4343
}
4444
function generatetext($phunk_id){
4545
$arr_json = json_decode(file_get_contents('https://nll-v2-1-39luy.ondigitalocean.app/static/phunks-market-data'));
46-
$price = array();
46+
$price_arr= array();
4747
foreach($arr_json->phunksOfferedForSale as $phunk){
4848
$metadata = $phunk->data;
4949
$attributes = $metadata->properties;
50-
$id = $phunk->phunkIndex;
51-
$pricez = $phunk->minValue;
52-
$price2 = $pricez/1000000000000000000;
50+
51+
$price_base = $phunk->minValue;
52+
$price_display = $price_base/1000000000000000000;
5353
$count_traits = count($attributes)-1;
5454
$value = "$count_traits traits";
5555
if($count_traits == '0'){
5656
$value = "$count_traits trait";
5757
}
58-
if(empty($price[$value])){
59-
$price[$value]['price'] = '999999999999999999999999999';
58+
if(empty($price_arr[$value])){
59+
$price_arr[$value]['price'] = '999999999999999999999999999';
6060
}
61-
if($price[$value]['price'] > $price2){
62-
$price[$value]['price'] = $price2;
63-
$price[$value]['id'] = $phunk->phunkIndex;
61+
if($price_arr[$value]['price'] > $price_display){
62+
$price_arr[$value]['price'] = $price_display;
63+
$price_arr[$value]['id'] = $phunk->phunkIndex;
6464
}
6565
foreach($attributes as $v){
6666
$value = $v->value;
67-
if(empty($price[$value])){
68-
$price[$value]['price'] = '999999999999999999999999999';
67+
if(empty($price_arr[$value])){
68+
$price_arr[$value]['price'] = '999999999999999999999999999';
6969
}
70-
if($price[$value]['price'] > $price2){
71-
$price[$value]['price'] = $price2;
72-
$price[$value]['id'] = $phunk->phunkIndex;
70+
if($price_arr[$value]['price'] > $price_display){
71+
$price_arr[$value]['price'] = $price_display;
72+
$price_arr[$value]['id'] = $phunk->phunkIndex;
7373
}
7474
}
7575
}
@@ -98,14 +98,14 @@ function generatetext($phunk_id){
9898
$result_text = '';
9999
foreach($traits as $v_trait){
100100
$v_name = $v_trait['value'];
101-
$v_price = $price[$v_name]['price'];
101+
$v_price = $price_arr[$v_name]['price'];
102102
$result_text .= "$v_name floor $v_price Ξ \n";
103103
}
104104
$c = "$count_traits_phunk traits";
105105
if($count_traits_phunk == '0'){
106106
$c = "$count_traits_phunk trait";
107107
}
108-
$v_price = $price[$c]['price'];
108+
$v_price = $price_arr[$c]['price'];
109109
$result_text .= "$c floor $v_price Ξ \n";
110110
}
111111
return $result_text;
@@ -117,8 +117,7 @@ function generatetext($phunk_id){
117117
$tweet= new tweet_bot;
118118
$tweet->setKey($api_key, $api_secret,$access_token , $access_token_key);
119119
$result = $tweet->read('PhunkBot');
120-
//print_r($result);
121-
//7934
120+
122121
foreach ($result as $key => $value) {
123122
$latest = $value->text;
124123
$phid = extractString($latest,'#',' ');

index.php

+17-17
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
<?php
22
$eth_price = json_decode(file_get_contents('https://min-api.cryptocompare.com/data/price?fsym=ETH&tsyms=USD'))->USD;
33
$arr_json = json_decode(file_get_contents('https://nll-v2-1-39luy.ondigitalocean.app/static/phunks-market-data'));
4-
$price = array();
4+
$price_arr = array();
55
foreach ($arr_json->phunksOfferedForSale as $phunk) {
66
$metadata = $phunk->data;
77
$attributes = $metadata->properties;
88
$id = $phunk->phunkIndex;
9-
$pricez = $phunk->minValue;
10-
$price2 = $pricez / 1000000000000000000;
9+
$price_base = $phunk->minValue;
10+
$price_display = $price_base/1000000000000000000;
1111
$count_traits = count($attributes) - 1;
1212
$value = "$count_traits traits";
1313
if ($count_traits == '0') {
1414
$value = "$count_traits trait";
1515
}
16-
if (empty($price[$value])) {
17-
$price[$value]['price'] = '999999999999999999999999999';
16+
if (empty($price_arr[$value])) {
17+
$price_arr[$value]['price'] = '999999999999999999999999999';
1818
}
19-
if ($price[$value]['price'] > $price2) {
20-
$price[$value]['price'] = $price2;
21-
$price[$value]['id'] = $phunk->phunkIndex;
19+
if ($price_arr[$value]['price'] > $price_display) {
20+
$price_arr[$value]['price'] = $price_display;
21+
$price_arr[$value]['id'] = $phunk->phunkIndex;
2222
}
2323
foreach ($attributes as $v) {
2424
$value = $v->value;
25-
if (empty($price[$value])) {
26-
$price[$value]['price'] = '999999999999999999999999999';
25+
if (empty($price_arr[$value])) {
26+
$price_arr[$value]['price'] = '999999999999999999999999999';
2727
}
28-
if ($price[$value]['price'] > $price2) {
29-
$price[$value]['price'] = $price2;
30-
$price[$value]['id'] = $phunk->phunkIndex;
28+
if ($price_arr[$value]['price'] > $price_display) {
29+
$price_arr[$value]['price'] = $price_display;
30+
$price_arr[$value]['id'] = $phunk->phunkIndex;
3131
}
3232
}
3333
}
@@ -69,14 +69,14 @@ function by_price($a, $b)
6969
$phunks_text .= "<div class='col-6 col-md-3 text-center'><a href='https://notlarvalabs.com/cryptophunks/details/$phunk_id' target='_blank' class='text-decoration-none'><h3 class='mb-2 text-dark'>$name</h3> <br> <img src='$img' width='150px' style='image-rendering:pixelated;background:#638596;width:150px'><br><span class='text-dark'>This phunk have $count_traits_phunk traits :</span> <br>";
7070
foreach ($traits as $v_trait) {
7171
$v_name = $v_trait['value'];
72-
$v_price = $price[$v_name]['price'];
72+
$v_price = $price_arr[$v_name]['price'];
7373
$phunks_text .= "$v_name floor price $v_price Ξ<br>";
7474
}
7575
$c = "$count_traits_phunk traits";
7676
if ($count_traits_phunk == '0') {
7777
$c = "$count_traits_phunk trait";
7878
}
79-
$v_price = $price[$c]['price'];
79+
$v_price = $price_arr[$c]['price'];
8080
$phunks_text .= "$c floor price $v_price Ξ</a></div>";
8181
}
8282
$phunks_text .= "</div>";
@@ -112,14 +112,14 @@ function by_price($a, $b)
112112
}
113113
foreach ($traits as $v_trait) {
114114
$v_name = $v_trait['value'];
115-
$v_price = $price[$v_name]['price'];
115+
$v_price = $price_arr[$v_name]['price'];
116116
$result_text .= "$v_name floor price $v_price Ξ<br>";
117117
}
118118
$c = "$count_traits_phunk traits";
119119
if ($count_traits_phunk == '0') {
120120
$c = "$count_traits_phunk trait";
121121
}
122-
$v_price = $price[$c]['price'];
122+
$v_price = $price_arr[$c]['price'];
123123
$result_text .= "$c floor price $v_price Ξ</a></div></div>";
124124
}
125125
}

0 commit comments

Comments
 (0)