Compare commits
5 commits
802efbe286
...
ffbe4db922
Author | SHA1 | Date | |
---|---|---|---|
ffbe4db922 | |||
14fce1a260 | |||
d03514fa75 | |||
820059c95f | |||
85fc4ca5ca |
7 changed files with 66 additions and 17 deletions
|
@ -1,2 +1,4 @@
|
|||
# Curious-Greg
|
||||
Curious Cat Mastodon crossposter thingy c:
|
||||
it's not done yet uwu
|
||||
|
||||
|
|
|
@ -7,3 +7,4 @@
|
|||
import requests, sqlite3, json
|
||||
from mastodon import Mastodon
|
||||
|
||||
cfg = json.load(open('meta.json'))
|
|
@ -35,8 +35,6 @@ async function ajax(url) { //must be called from an async function! use 'await',
|
|||
|
||||
async function cont() {
|
||||
url = dgel('instance-input').value;
|
||||
if (url.substr(0,8) != "https://") {
|
||||
url = "https://" + url
|
||||
}
|
||||
|
||||
j = await ajax('/internal/auth_a?url=' + url)
|
||||
console.log(j)
|
||||
}
|
|
@ -46,6 +46,7 @@ button {
|
|||
border-radius:2px;
|
||||
padding:10px 25px;
|
||||
transition:0.2s all ease-in;
|
||||
cursor: pointer;
|
||||
}
|
||||
button:hover{
|
||||
background-color:#2b90d9;
|
||||
|
|
24
templates/home.html
Normal file
24
templates/home.html
Normal file
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Curious Greg - Home</title>
|
||||
<link rel='stylesheet' type='text/css' href="{{ url_for('static', filename='style.css') }}" />
|
||||
<script type="text/javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
|
||||
</head>
|
||||
<body>
|
||||
<h1>Welcome, {{ acct }}</h1>
|
||||
<h2>You're all set up and ready to go.</h2>
|
||||
<noscript>
|
||||
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
||||
</noscript>
|
||||
<!-- <div id='logo-main'></div> -->
|
||||
<div id='body'>
|
||||
You haven't posted to Curious Cat in a while, so we'll wait <em>14 minutes</em> until we check for new answers.
|
||||
</div>
|
||||
<div id='footer'>
|
||||
Note that Curious Greg requires first-party cookies to be enabled. You may safely delete the cookie upon completing the connection process.<br />
|
||||
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
|
@ -9,6 +9,9 @@
|
|||
<body>
|
||||
<h1>Curious Greg</h1>
|
||||
<h2>Connect your Curious Cat and Mastodon accounts for automated crossposting.</h2>
|
||||
<noscript>
|
||||
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
||||
</noscript>
|
||||
<!-- <div id='logo-main'></div> -->
|
||||
<form onsubmit='cont(); return false'>
|
||||
<label for='instance'>Instance URL</label><br />
|
||||
|
@ -16,7 +19,8 @@
|
|||
<button class='loading'>Continue</button>
|
||||
</form>
|
||||
<div id='footer'>
|
||||
Note that Curious Greg requires first-party cookies to be enabled. You may safely delete the cookie upon completing the connection process.
|
||||
Note that Curious Greg requires first-party cookies to be enabled. You may safely delete the cookie upon completing the connection process.<br />
|
||||
Curious Greg will not function without JavaScript. Please ensure you have JavaScript enabled.
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
43
web.py
43
web.py
|
@ -6,7 +6,7 @@
|
|||
|
||||
import requests, sqlite3, json
|
||||
from mastodon import Mastodon
|
||||
from flask import Flask, render_template
|
||||
from flask import Flask, render_template, request, session, redirect, url_for
|
||||
|
||||
cfg = json.load(open("meta.json"))
|
||||
|
||||
|
@ -17,26 +17,45 @@ c.execute("CREATE TABLE IF NOT EXISTS `data` (username VARCHAR NOT NULL, appid V
|
|||
app = Flask(cfg['name'])
|
||||
app.secret_key = cfg['flask_key']
|
||||
|
||||
|
||||
@app.route('/')
|
||||
def main():
|
||||
return render_template("landing_page.html")
|
||||
if 'acct' not in session:
|
||||
return render_template("landing_page.html")
|
||||
else:
|
||||
return redirect(url_for('home'))
|
||||
|
||||
@app.route('/home')
|
||||
def home():
|
||||
return render_templae("home.html")
|
||||
|
||||
@app.route('/internal/auth_a')
|
||||
def internal_auth_a():
|
||||
|
||||
client_id = "abc"
|
||||
client_secret = "123"
|
||||
instance_url = request.args.get('url', default='mastodon.social', type=str)
|
||||
if not instance_url.startswith("https://"):
|
||||
instance_url = "https://{}".format(instance_url)
|
||||
|
||||
# client_id, client_secret = Mastodon.create_app(cfg['name'],
|
||||
# api_base_url=instance_url,
|
||||
# scopes="write:statuses",
|
||||
# website=cfg['website'])
|
||||
|
||||
client_id = "abc"
|
||||
client_secret = "123"
|
||||
#example URL:
|
||||
#https://fedi.lynnesbian.space/oauth/authorize?scope=read:favourites&response_type=code&redirect_uri=https://t5.codesections.com&client_id=CLIENT_ID_HERE&client_secret=CLIENT_SECRET_HERE
|
||||
|
||||
client_info = {
|
||||
"client_id": client_id,
|
||||
"client_secret":client_secret,
|
||||
"scopes":"write:statuses",
|
||||
"website": cfg['website']
|
||||
}
|
||||
# client_info = {
|
||||
# "client_id": client_id,
|
||||
# "client_secret":client_secret,
|
||||
# "scopes":"write:statuses",
|
||||
# "website": cfg['website']
|
||||
# }
|
||||
|
||||
return(json.dumps(client_info))
|
||||
url = "{}/oauth/authorize?scope=write:statuses&response_type=code&redirect_url=https://lynnesbian.space/cg/internal/auth_b&client_id={}&client_secret={}".format(
|
||||
instance_url, client_id, client_secret
|
||||
)
|
||||
|
||||
return url
|
||||
|
||||
# return(json.dumps(client_info))
|
||||
|
|
Loading…
Reference in a new issue