123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- {{ define "home" -}}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>SQS Redriver</title>
- <link rel="stylesheet" href="/assets/styles.css"/>
- <link rel="stylesheet" href="/assets/bootstrap.min.css">
- </head>
- <body>
- <main class="container">
- <div class="container mt-5">
- <nav aria-label="breadcrumb">
- <ol class="breadcrumb">
- <li class="breadcrumb-item">Home</li>
- </ol>
- </nav>
- </div>
- <h1 class="text-3xl font-bold underline">SQS Queues
- {{ if .prefix }}
- matching prefix: {{ .prefix }}
- {{ end}}
- </h1>
- <table id="home-table" class="table">
- <caption>Having DLQs not allowing any source queue is a configuration anomaly.
- So is having a DLQ allowing a source queue and that source using another DLQ instead.
- </caption>
- <thead>
- <th scope="col">Queue name</th>
- <th scope="col">DLQ name</th>
- </thead>
- <tbody>
- {{ range .rows }}
- {{ template "home-row" . }}
- {{ end }}
- </tbody>
- </table>
- </main>
- </body>
- </html>
- {{ end }}
- {{ define "home-row" }}
- <tr>
- <td>{{ template "home-cell" (index . 0) }}</td>
- <td>{{ template "home-cell" (index . 1) }}</td>
- </tr>
- {{ end }}
- {{ define "home-cell" }}
- {{ if .Message }}
- <p class="lead">{{ .Message }}</p>
- {{else if .Link }}
- <a href="{{ .Link.URL }}">{{ .Link.Text }}</a>
- {{ else }}
- {{/* Bound queues: 3 named lists */}}
- {{ if eq (len .Links) 3 }}
- {{ if index .Links 0 }}
- <p class="lead">Bound queues</p>
- {{end }}
- <ul>
- {{ range index .Links 0 }}
- <li><a href="{{ .URL }}">{{ .Text }}</a></li>
- {{ end }}
- </ul>
- {{ if index .Links 1 }}
- <p class="lead">Allowed source queues using another DLQ</p>
- {{end }}
- <ul>
- {{ range index .Links 1 }}
- <li><a href="{{ .URL }}">{{ .Text }}</a></li>
- {{ end }}
- </ul>
- {{ if index .Links 2 }}
- <p class="lead">Allowed source queues not declaring a DLQ</p>
- {{ end}}
- <ul>
- {{ range index .Links 2 }}
- <li><a href="{{ .URL }}">{{ .Text }}</a></li>
- {{ end }}
- </ul>
- {{ else }}
- {{ range .Links }}
- <ul>
- {{ range . }}
- <li><a href="{{ .URL }}">{{ .Text }}</a></li>
- {{ end }}
- </ul>
- {{ end }}
- {{end}}
- {{ end }}
- {{ end }}
|