summaryrefslogtreecommitdiff
path: root/contrib/request_payment.en.must
blob: e12532bd98948a488d81b4b408e5a8313cface94 (plain)
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
<!DOCTYPE html>
<!--
  This file is part of GNU TALER.
  Copyright (C) 2014-2020 Taler Systems SA

  TALER is free software; you can redistribute it and/or modify it under the
  terms of the GNU Lesser General Public License as published by the Free Software
  Foundation; either version 2.1, or (at your option) any later version.

  TALER is distributed in the hope that it will be useful, but WITHOUT ANY
  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public License along with
  TALER; see the file COPYING.  If not, see <http://www.gnu.org/licenses/>
-->

<html>
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <noscript>
    <meta http-equiv="refresh" content="1">
  </noscript>
  <title>Payment requested for {{order_summary}}</title>
  <link rel="stylesheet"
        href="{{static_url}}pure-min.css"
        integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ"
        crossorigin="anonymous">
  <style>
.talerbar {
  text-align: center;
}
.tt {
  font-family: 'Lucida Console', Monaco, monospace;
}
.content {
    overflow-x: auto;
    padding-left: 15%;
    padding-right: 15%;
}
.qr {
    margin: auto;
    text-align: center;
}
.qrtext {
    width: max-content;
    margin: auto;
    transition: font-size 0.2s;
    font-family: 'Lucida Console', Monaco, monospace;
    font-size: 0.5em;
}
.qrtext:hover {
    font-size: 1em;
}

body {
  overflow-y: scroll;
}
@media (min-width: 500px) {
  .content {
    padding-bottom: 2em;
    margin-right: 1em;
    overflow-y: auto;
  }
}
#main a:link, #main a:visited, #main a:hover, #main a:active {
  color: black;
}
  </style>
</head>

<body>
<script>
  let longpollDelayMs = 60000;
  let checkUrl = new URL("{{& order_status_url }}");
  checkUrl.searchParams.set("timeout_ms", longpollDelayMs.toString());
  function check() {
    let retried = false;
    function retryOnce() {
      if (!retried) {
        retried = true;
        check();
      }
    }
    let req = new XMLHttpRequest();
    req.onreadystatechange = function () {
      if (req.readyState === XMLHttpRequest.DONE) {
        if (req.status === 200) {
          try {
            let resp = JSON.parse(req.responseText);
            if (resp.fulfillment_url) {
                window.location.replace(resp.fulfillment_url);
            }
          } catch (e) {
            console.error("could not parse response:", e);
          }
        }
        if (req.status === 202) {
          try {
            let resp = JSON.parse(req.responseText);
            if (resp.fulfillment_url) {
                window.location.replace(resp.fulfillment_url);
            }
          } catch (e) {
            console.error("could not parse response:", e);
          }
        }
        if (req.status === 402) {
          try {
            let resp = JSON.parse(req.responseText);
            if (resp.already_paid_order_id && resp.fulfillment_url) {
                window.location.replace(resp.fulfillment_url);
            }
          } catch (e) {
            console.error("could not parse response:", e);
          }
        }
        setTimeout(retryOnce, 500);
      }
    };
    req.onerror = function () {
      setTimeout(retryOnce, 500);
    }
    req.ontimeout = function () {
      setTimeout(retryOnce, 500);
    }
    req.timeout = longpollDelayMs;
    req.open("GET", checkUrl.href);
    req.send();
  }
  setTimeout(check, 500);
</script>

<section id="main" class="content">


<h1>Taler payment requested</h1>

<div class="taler-installed-hide">
  <p>
  Please select your Taler wallet to pay. If you do not have one, GNU Taler
  offers a
  <a href="https://wallet.taler.net/">wallet browser extensions</a> for
  many platforms.
  </p>
</div>

<div>
  <p>
  Alternatively, you can scan this QR code to pay with your mobile wallet:
  </p>
  <div class="qr">
    {{{taler_pay_qrcode_svg}}}
  </div>
  <p>
  Finally, you could click <a href="{{taler_pay_uri}}">this link</a> to
  try to open your system's Taler wallet if it exists.
  </p>
</div>
<hr />
</section>

<div class="talerbar">
  <p>You can learn more about GNU Taler on our <a href="https://taler.net/">website</a>.<br>
  Copyright &copy; 2014&mdash;2021 Taler Systems SA</p>
</div>
</body>
</html>