mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-22 17:19:07 -05:00
commit
02da57961c
33
.github/workflows/docker-image.yml
vendored
33
.github/workflows/docker-image.yml
vendored
|
@ -1,18 +1,23 @@
|
|||
name: Docker Build and Push
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- master
|
||||
|
||||
env:
|
||||
REGISTRY_NAME: ghcr.io
|
||||
IMAGE_NAME: nostr-rs-relay
|
||||
|
||||
jobs:
|
||||
ci:
|
||||
name: CI
|
||||
uses: ./.github/workflows/ci.yml
|
||||
# ci:
|
||||
# name: CI
|
||||
# uses: ./.github/workflows/ci.yml
|
||||
|
||||
build_and_push:
|
||||
needs: [ci]
|
||||
# needs: [ci]
|
||||
name: Build and Push
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
@ -32,13 +37,29 @@ jobs:
|
|||
username: ${{ github.repository_owner }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Build and push
|
||||
- name: Collecting Metadata
|
||||
id: meta
|
||||
uses: docker/metadata-action@v4
|
||||
with:
|
||||
images: ${{ env.REGISTRY_NAME }}/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}
|
||||
|
||||
- name: Building And Pushing Image
|
||||
id: docker_build
|
||||
uses: docker/build-push-action@v4
|
||||
with:
|
||||
context: .
|
||||
file: ./Dockerfile
|
||||
push: true
|
||||
tags: ghcr.io/${{ github.repository_owner }}/nostr-rs-relay:latest
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
|
||||
# - name: Build and push
|
||||
# id: docker_build
|
||||
# uses: docker/build-push-action@v4
|
||||
# with:
|
||||
# context: .
|
||||
# push: true
|
||||
# tags: ghcr.io/${{ github.repository_owner }}/nostr-rs-relay:latest
|
||||
|
||||
- name: Image digest
|
||||
run: echo ${{ steps.docker_build.outputs.digest }}
|
205
src/server.rs
205
src/server.rs
|
@ -266,51 +266,54 @@ async fn handle_web_request(
|
|||
}
|
||||
|
||||
let html = r#"
|
||||
<!doctype HTML>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #6320a7;
|
||||
background-color: #6320a7 !important; /* Make sure this override takes precedence */
|
||||
color: white;
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 400px;
|
||||
}
|
||||
|
||||
a {
|
||||
color: pink;
|
||||
color: pink !important;
|
||||
}
|
||||
|
||||
input[type="text"] {
|
||||
width: 100%;
|
||||
max-width: 500px;
|
||||
box-sizing: border-box;
|
||||
overflow-x: auto;
|
||||
white-space: nowrap;
|
||||
.btn-primary {
|
||||
background-color: #ff4081 !important;
|
||||
}
|
||||
</style>
|
||||
<title>Join Nostr - Enter your pubkey</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="width:75%;">
|
||||
<h1>Enter your pubkey</h1>
|
||||
<div class="container py-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 mx-auto">
|
||||
<h1 class="text-center mb-4">Enter your pubkey</h1>
|
||||
<form action="/invoice" onsubmit="return checkForm(this);">
|
||||
<input type="text" name="pubkey" id="pubkey-input"><br><br>
|
||||
<input type="checkbox" id="terms" required>
|
||||
<label for="terms">I agree to the <a href="/terms">terms and conditions</a></label><br><br>
|
||||
<button type="submit">Submit</button>
|
||||
</form>
|
||||
<button id="get-public-key-btn">Get Public Key</button>
|
||||
<div class="form-group">
|
||||
<input type="text" name="pubkey" class="form-control" id="pubkey-input" placeholder="Public Key" required>
|
||||
</div>
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" type="checkbox" id="terms" required>
|
||||
<label class="form-check-label" for="terms">I agree to the <a href="/terms">terms and conditions</a></label>
|
||||
</div>
|
||||
<div class="form-group mt-4">
|
||||
<button type="submit" class="btn btn-primary btn-block">Submit</button>
|
||||
</div>
|
||||
</form>
|
||||
<div class="form-group">
|
||||
<button id="get-public-key-btn" class="btn btn-primary btn-block">Get Public Key</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
function checkForm(form) {
|
||||
if (!form.terms.checked) {
|
||||
|
@ -331,7 +334,13 @@ async fn handle_web_request(
|
|||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
"#;
|
||||
Ok(Response::builder()
|
||||
|
@ -446,71 +455,69 @@ async fn handle_web_request(
|
|||
let html_result = format!(
|
||||
r#"
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #6320a7;
|
||||
color: white;
|
||||
}}
|
||||
#copy-button {{
|
||||
background-color: #bb5f0d ;
|
||||
color: white;
|
||||
padding: 10px 20px;
|
||||
border-radius: 5px;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}}
|
||||
#copy-button:hover {{
|
||||
background-color: #8f29f4;
|
||||
}}
|
||||
.container {{
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 400px;
|
||||
}}
|
||||
|
||||
a {{
|
||||
color: pink;
|
||||
}}
|
||||
|
||||
.btn {{
|
||||
background-color: #bb5f0d;
|
||||
color: white;
|
||||
}}
|
||||
|
||||
.btn:hover {{
|
||||
background-color: #8f29f4;
|
||||
}}
|
||||
|
||||
#copy-button {{
|
||||
margin-top: 10px;
|
||||
}}
|
||||
</style>
|
||||
<title>Join Nostr - Invoice</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div style="width:75%;">
|
||||
<h3>
|
||||
<div class="container py-5">
|
||||
<div class="row">
|
||||
<div class="col-lg-6 mx-auto">
|
||||
<h3 class="text-center mb-4">
|
||||
To use this relay, an admission fee of {} sats is required. By paying the fee, you agree to the <a href='terms'>terms</a>.
|
||||
</h3>
|
||||
</div>
|
||||
<div>
|
||||
<div style="max-height: 300px;">
|
||||
|
||||
<div class="text-center" style="max-height: 300px;">
|
||||
{}
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<div style="width: 75%;">
|
||||
<p style="overflow-wrap: break-word; width: 500px;">{}</p>
|
||||
<button id="copy-button">Copy</button>
|
||||
</div>
|
||||
<div>
|
||||
<p> This page will not refresh </p>
|
||||
<p> Verify admission <a href=/account?pubkey={}>here</a> once you have paid</p>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
<div class="text-center mt-4">
|
||||
<p id="text-area" style="overflow-wrap: break-word;">{}</p>
|
||||
<button id="copy-button" class="btn">Copy</button>
|
||||
</div>
|
||||
|
||||
<div class="text-center mt-4">
|
||||
<p>This page will not refresh</p>
|
||||
<p>Verify admission <a href="/account?pubkey={}">here</a> once you have paid</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
const copyButton = document.getElementById("copy-button");
|
||||
const textArea = document.getElementById("text-area");
|
||||
if (navigator.clipboard) {{
|
||||
copyButton.addEventListener("click", function() {{
|
||||
const textToCopy = "{}";
|
||||
const textToCopy = textArea.textContent;
|
||||
navigator.clipboard.writeText(textToCopy).then(function() {{
|
||||
console.log("Text copied to clipboard");
|
||||
}}, function(err) {{
|
||||
|
@ -522,12 +529,19 @@ async fn handle_web_request(
|
|||
console.warn("Clipboard API is not supported in this browser");
|
||||
}}
|
||||
</script>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
"#,
|
||||
settings.pay_to_relay.admission_cost,
|
||||
qr_code,
|
||||
invoice_info.bolt11,
|
||||
pubkey,
|
||||
invoice_info.bolt11
|
||||
pubkey
|
||||
);
|
||||
|
||||
Ok(Response::builder()
|
||||
|
@ -583,29 +597,40 @@ async fn handle_web_request(
|
|||
let html_result = format!(
|
||||
r#"
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet">
|
||||
<style>
|
||||
body {{
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
text-align: center;
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #6320a7;
|
||||
color: white;
|
||||
}}
|
||||
|
||||
.vh-100 {{
|
||||
height: 100vh;
|
||||
}}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div>
|
||||
<h5>{} {} admitted</h5>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
h5 {{
|
||||
color: white;
|
||||
}}
|
||||
</style>
|
||||
<title>Bootstrap Admissions</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="d-flex justify-content-center align-items-center vh-100">
|
||||
<h5 class="text-break">{ } { } admitted</h5>
|
||||
</div>
|
||||
|
||||
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
|
||||
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
||||
"#,
|
||||
pubkey, text
|
||||
|
|
Loading…
Reference in New Issue
Block a user