arro
This commit is contained in:
parent
6f6a90417b
commit
1623407e7e
2 changed files with 40 additions and 40 deletions
|
@ -251,54 +251,54 @@ def remove_mod(v, sub):
|
||||||
|
|
||||||
return redirect(f'/s/{sub}/mods')
|
return redirect(f'/s/{sub}/mods')
|
||||||
|
|
||||||
|
if SITE_NAME == 'PCM':
|
||||||
|
@app.get("/create_sub")
|
||||||
|
@is_not_permabanned
|
||||||
|
def create_sub(v):
|
||||||
|
if v.id == MENTION_ID: cost = 0
|
||||||
|
else:
|
||||||
|
num = v.subs_created + 1
|
||||||
|
for a in v.alts:
|
||||||
|
num += a.subs_created
|
||||||
|
cost = num * 100
|
||||||
|
|
||||||
# @app.get("/create_sub")
|
return render_template("sub/create_sub.html", v=v, cost=cost)
|
||||||
# @is_not_permabanned
|
|
||||||
# def create_sub(v):
|
|
||||||
# if v.id == MENTION_ID: cost = 0
|
|
||||||
# else:
|
|
||||||
# num = v.subs_created + 1
|
|
||||||
# for a in v.alts:
|
|
||||||
# num += a.subs_created
|
|
||||||
# cost = num * 100
|
|
||||||
|
|
||||||
# return render_template("sub/create_sub.html", v=v, cost=cost)
|
|
||||||
|
|
||||||
|
|
||||||
# @app.post("/create_sub")
|
@app.post("/create_sub")
|
||||||
# @is_not_permabanned
|
@is_not_permabanned
|
||||||
# def create_sub2(v):
|
def create_sub2(v):
|
||||||
# name = request.values.get('name')
|
name = request.values.get('name')
|
||||||
# if not name: abort(400)
|
if not name: abort(400)
|
||||||
# name = name.strip().lower()
|
name = name.strip().lower()
|
||||||
|
|
||||||
# if not valid_sub_regex.fullmatch(name):
|
if not valid_sub_regex.fullmatch(name):
|
||||||
# return render_template("sub/create_sub.html", v=v, error="Sub name not allowed."), 400
|
return render_template("sub/create_sub.html", v=v, error="Sub name not allowed."), 400
|
||||||
|
|
||||||
# sub = g.db.query(Sub).filter_by(name=name).one_or_none()
|
sub = g.db.query(Sub).filter_by(name=name).one_or_none()
|
||||||
# if not sub:
|
if not sub:
|
||||||
# if v.id != MENTION_ID:
|
if v.id != MENTION_ID:
|
||||||
# num = v.subs_created + 1
|
num = v.subs_created + 1
|
||||||
# for a in v.alts:
|
for a in v.alts:
|
||||||
# num += a.subs_created
|
num += a.subs_created
|
||||||
# cost = num * 100
|
cost = num * 100
|
||||||
|
|
||||||
# if v.coins < cost:
|
if v.coins < cost:
|
||||||
# return render_template("sub/create_sub.html", v=v, error="You don't have enough coins!"), 403
|
return render_template("sub/create_sub.html", v=v, error="You don't have enough coins!"), 403
|
||||||
|
|
||||||
# v.coins -= cost
|
v.coins -= cost
|
||||||
|
|
||||||
# v.subs_created += 1
|
v.subs_created += 1
|
||||||
# g.db.add(v)
|
g.db.add(v)
|
||||||
|
|
||||||
# sub = Sub(name=name)
|
sub = Sub(name=name)
|
||||||
# g.db.add(sub)
|
g.db.add(sub)
|
||||||
# g.db.flush()
|
g.db.flush()
|
||||||
# mod = Mod(user_id=v.id, sub=sub.name)
|
mod = Mod(user_id=v.id, sub=sub.name)
|
||||||
# g.db.add(mod)
|
g.db.add(mod)
|
||||||
# g.db.commit()
|
g.db.commit()
|
||||||
|
|
||||||
# return redirect(f'/s/{sub.name}')
|
return redirect(f'/s/{sub.name}')
|
||||||
|
|
||||||
@app.post("/kick/<pid>")
|
@app.post("/kick/<pid>")
|
||||||
@is_not_permabanned
|
@is_not_permabanned
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<a class="btn btn-primary btn-block" href="/s/{{sub.name}}/blockers">BLOCKERS</a>
|
<a class="btn btn-primary btn-block" href="/s/{{sub.name}}/blockers">BLOCKERS</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<!-- <a class="btn btn-primary btn-block" href="/create_sub">CREATE SUB</a> -->
|
<a class="btn btn-primary btn-block" href="/create_sub">CREATE SUB</a>
|
||||||
<a class="btn btn-primary btn-block mt-5" href="https://ip2.network">STREAM LIST</a>
|
<a class="btn btn-primary btn-block mt-5" href="https://ip2.network">STREAM LIST</a>
|
||||||
<a class="btn btn-primary btn-block" href="/post/4103">BUGS/SUGGESTIONS MEGATHREAD</a>
|
<a class="btn btn-primary btn-block" href="/post/4103">BUGS/SUGGESTIONS MEGATHREAD</a>
|
||||||
<a class="btn btn-primary btn-block" href="/post/9694" >OFFICIAL CONSPIRACY THEORY THREAD</a>
|
<a class="btn btn-primary btn-block" href="/post/9694" >OFFICIAL CONSPIRACY THEORY THREAD</a>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue