-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcsvBatchSend.cfm
More file actions
141 lines (111 loc) · 3.24 KB
/
csvBatchSend.cfm
File metadata and controls
141 lines (111 loc) · 3.24 KB
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
<cfif not isUserLoggedIn()>
<cflocation url="index.cfm">
</cfif>
<cfscript>
setLocale("English (us)");
</cfscript>
<cfset sent = false>
<cfset opHash = "">
<cfset error = "">
<cfif #isDefined("form.isSending")#>
<cfif #form.isSending# EQ true>
<!--- Sends the BATCH operation --->
<cftry>
<cfinvoke component="components.taps" method="sendCustomBatch" batch="#session.customBatch#" returnvariable="opHash">
<cfset sent = true>
<cfcatch>
<cfset sent = false>
<cfset error = "#cfcatch.detail# - #cfcatch.message# - #opHash#">
</cfcatch>
</cftry>
<!--- Clears the session variable --->
<cfset #session.customBatch# = "">
<!--- end of sending --->
</cfif>
</cfif>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta http-equiv="cache-control" content="no-cache">
<!-- CSS Bootstrap-->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<!-- CSS Page-->
<link rel="stylesheet" type="text/css" href="css/estilo.css">
<script src="js/jquery-3.2.1.min.js"></script>
<script language="javascript">
function jump(h)
{
if (h === "start")
{
window.parent.parent.scrollTo(0,0);
}
else
{
window.parent.parent.scrollTo(0,500);
}
}
</script>
<style>
.error
{
font-size:18px;
color:red;
border:hidden;
cursor:default;
}
.sent
{
font-size:22px;
color:black;
border:hidden;
cursor:default;
}
.link
{
text-decoration: underline;
cursor:pointer;
}
</style>
</head>
<body>
<section class="box-content-rewards">
<cfoutput>
<h1 class="title-baker">
CSV Batch
</h1>
<!--- Check if all data were fetched --->
<cfinvoke component="components.database" method="getSettings" returnVariable="settings">
<cfif #settings.recordCount# GT 0>
<cfif #settings.status# EQ true>
<cfif #sent# EQ true>
<br><br>
<span class="sent">
Operation was received by Tezos blockchain.<br>
Click hash below to check results in a block explorer:<br>
<br><br>
<span class="link" onclick="window.open('#application.blockExplorerAlt##opHash#');">#opHash#</span>
<br><br>
<cfelse>
<br>
<span class="error">
Some error occured while trying to send your batch operation.<br>
Please check status in a block explorer and try again.<br>
<br>
#error#<br>
<br>
</span>
<br><br>
</cfif>
</cfif>
</cfif>
</cfoutput>
<script language="javascript">
$(document).ready(function(){
jump("start");
});
</script>
</body>
</html>