Compare commits
12 Commits
dev-gunico
...
master
Author | SHA1 | Date | |
---|---|---|---|
a126b9732d | |||
acf4dce66f | |||
12297a3de8 | |||
c004701edf | |||
c4c53ea5df | |||
6ad857ed29 | |||
242acac3f1 | |||
bce189246c | |||
95430ca9da | |||
|
981306668a | ||
1525887c9d | |||
fb74152017 |
11
DEPLOY.md
11
DEPLOY.md
@ -1,11 +0,0 @@
|
||||
# Deploying
|
||||
|
||||
It is highly recommended to run the application behind a reverse proxy.
|
||||
|
||||
Here we will use `nginx`, `gunicorn` a WSGI standalone server and decide between `supervisord` and `systemd`.
|
||||
|
||||
## Install gunicorn
|
||||
|
||||
* Check that you are still in the virtual environment.
|
||||
* `pip install gunicorn`.
|
||||
* TODO
|
13
LICENSE
Normal file
13
LICENSE
Normal file
@ -0,0 +1,13 @@
|
||||
Copyright (c) 2021-2022 Pratyush Desai and others
|
||||
|
||||
All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
||||
|
||||
Redistributions of source code must retain the above copyright notice, this list of conditions, and the following disclaimer.
|
||||
Redistributions in binary form must reproduce the above copyright notice, this list of conditions, and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
||||
Neither the name of the author of this software nor the name of contributors to this software may be used to endorse or promote products derived from this software without specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
Portions of the included source code are copyright by its original author(s) and remain subject to its associated license.
|
19
README.md
19
README.md
@ -1,12 +1,21 @@
|
||||
# IRC Web Registration
|
||||
|
||||
## Version 1
|
||||
The v1 of this concept can be referenced in the [old and *not updated* README](https://git.com.de/LibertaCasa/webreg/src/branch/master/README.old.md)
|
||||
|
||||
The v1.1 enhancements added by [Georg Pfuetzenreuter](https://git.com.de/Georg) implements support for additional SSO integration to our KeyCloak setup.
|
||||
It also works-in SSL support.
|
||||
|
||||
This webform available [here](https://liberta.casa/register) is purely demonstrative and does not successfully `POST` user data
|
||||
|
||||
## Introduction
|
||||
|
||||
This is a basic still WIP framework for registering an account on an ircd using a webform.
|
||||
This is a basic still WIP overhaul framework for registering an account on an ircd using a webform that is referenced above.
|
||||
|
||||
|
||||
## Features
|
||||
|
||||
- It relies on the WIP IRCv3.2 spec [draft/account-registration](https://github.com/ProgVal/ircv3-specifications/blob/register/extensions/account-registration.md)
|
||||
- It relies on the draft IRCv3 spec [draft/account-registration](https://ircv3.net/specs/extensions/account-registration.html)
|
||||
- It utilizes the flask framework and `WEBIRC` to relay remote host ip address.
|
||||
- Can be tweaked to allow registration attempts from exit-nodes and other unsavory hosts allowing them to securely work with the `require-sasl` constraint if needed.
|
||||
|
||||
@ -24,8 +33,10 @@ It is recommended to work within a virtual environment.
|
||||
|
||||
## Installation and Setup
|
||||
|
||||
Todo!
|
||||
Todo! Refer to the issues and the __Milestones__ and __Projects__
|
||||
for more
|
||||
|
||||
|
||||
### Note
|
||||
|
||||
Only works with setups not requiring verification at this moment.
|
||||
Only works with setups not requiring verification at this moment as stated in #4
|
||||
|
@ -5,72 +5,55 @@ import os
|
||||
webircpass = os.getenv("WEBIRC_PASS")
|
||||
|
||||
def ircregister(userip, username, password, email="*"):
|
||||
|
||||
d = irctokens.StatefulDecoder()
|
||||
e = irctokens.StatefulEncoder()
|
||||
s = socket.socket()
|
||||
|
||||
|
||||
# Here we assume using this only on localhost i.e. loopback
|
||||
s.connect(("127.0.0.1", 6667))
|
||||
|
||||
# define the send function
|
||||
def _send(line):
|
||||
print(f"> {line.format()}")
|
||||
e.push(line)
|
||||
while e.pending():
|
||||
e.pop(s.send(e.pending()))
|
||||
|
||||
# Registering connection
|
||||
|
||||
# WEBIRC
|
||||
_send(irctokens.build("WEBIRC", [ webircpass, "WebregGateway", userip, userip, "secure"]))
|
||||
|
||||
# Check for "ERROR :Invalid WebIRC password"
|
||||
# Should all of this this be under a try except block?
|
||||
lines = d.push(s.recv(1024))
|
||||
if lines == None:
|
||||
print("!disconnected")
|
||||
return "disconnected"
|
||||
elif lines.command == "ERROR" and lines.params == "Invalid WebIRC password":
|
||||
return "WebIRC bad password"
|
||||
|
||||
# Inform the server that we support
|
||||
# CAP 3.2
|
||||
_send(irctokens.build("CAP", ["LS", "302"]))
|
||||
|
||||
# REGISTER can be attempted before-connect if server supports
|
||||
# but if the server responds with the corresponding FAIL we
|
||||
# need to try again. We can also handle email-required using
|
||||
# the same keys. How to access these key-value pairs?
|
||||
# reference: https://github.com/ProgVal/ircv3-specifications/blob/register/extensions/account-registration.md#commands
|
||||
|
||||
# NICK and USER
|
||||
_send(irctokens.build("USER", ["u", "0", "*", username]))
|
||||
_send(irctokens.build("NICK", [username]))
|
||||
|
||||
# go through all cases
|
||||
|
||||
while True:
|
||||
lines = d.push(s.recv(1024))
|
||||
if lines == None:
|
||||
print("! disconnected")
|
||||
break
|
||||
for line in lines:
|
||||
print(f"< {line.format()}")
|
||||
if line.command == "432":
|
||||
return "ERR_ERRONEUSNICKNAME"
|
||||
elif line.command == "433":
|
||||
return "ERR_NICKNAMEINUSE"
|
||||
_send(irctokens.build("CAP", ["REQ", "draft/account-registration"]))
|
||||
# REGISTER can be attempted before-connect if server supports
|
||||
# but if the server responds with the corresponding FAIL we
|
||||
# need to try again. We can also handle email-required using
|
||||
# the same keys. How to access these key-value pairs?
|
||||
# reference: https://ircv3.net/specs/extensions/account-registration.html
|
||||
# do we handle if email-req but not before-connect
|
||||
# also how about when `custom-account-name` may be a value
|
||||
if 'draft/account-registration=before-connect' in line.params:
|
||||
_send(irctokens.build("CAP", ["REQ", "draft/account-registration"]))
|
||||
if line.command == "CAP" and ("NAK" in line.params):
|
||||
return "CAP_REFUSED"
|
||||
elif line.command == "CAP" and ("ACK" in line.params):
|
||||
to_send = irctokens.build("CAP", ["END"])
|
||||
_send(to_send)
|
||||
if line.command == "PING":
|
||||
to_send = irctokens.build("PONG", [line.params[0]])
|
||||
_send(to_send)
|
||||
if line.command == "001":
|
||||
# assuming no verif reqd.
|
||||
to_send = irctokens.build("REGISTER", ["*", email, password])
|
||||
_send(to_send)
|
||||
_send(irctokens.build("CAP", ["END"]))
|
||||
_send(irctokens.build("USER", ["u", "0", "*", username]))
|
||||
_send(irctokens.build("NICK", [username]))
|
||||
if line.command == "432":
|
||||
return "ERR_ERRONEUSNICKNAME"
|
||||
if line.command == "433":
|
||||
return "ERR_NICKNAMEINUSE"
|
||||
_send(irctokens.build("REGISTER", [username, "*", password]))
|
||||
if line.command == "REGISTER" and ("SUCCESS" in line.params):
|
||||
to_send = irctokens.build("QUIT")
|
||||
_send(to_send)
|
||||
_send(irctokens.build("QUIT"))
|
||||
return "SUCCESS"
|
||||
|
@ -1,10 +0,0 @@
|
||||
click==8.0.1
|
||||
Flask==2.0.1
|
||||
Flask-WTF==0.15.1
|
||||
gunicorn==20.1.0
|
||||
irctokens==2.0.0
|
||||
itsdangerous==2.0.1
|
||||
Jinja2==3.0.1
|
||||
MarkupSafe==2.0.1
|
||||
Werkzeug==2.0.1
|
||||
WTForms==2.3.3
|
Loading…
Reference in New Issue
Block a user