2021-10-15 14:08:27 +00:00
from files . __main__ import app , limiter
from files . helpers . wrappers import *
from files . helpers . alerts import *
from files . helpers . get import *
from files . helpers . const import *
from files . classes . award import *
2021-10-20 21:13:30 +00:00
from . front import frontlist
2021-10-15 14:08:27 +00:00
from flask import g , request
@app.get ( " /shop " )
@app.get ( " /settings/shop " )
@auth_required
def shop ( v ) :
if site_name == " Drama " :
AWARDS = {
" ban " : {
" kind " : " ban " ,
2021-10-20 19:34:56 +00:00
" title " : " 1-Day Ban " ,
2021-10-15 14:08:27 +00:00
" description " : " Bans the author for a day. " ,
" icon " : " fas fa-gavel " ,
" color " : " text-danger " ,
2021-10-15 19:48:53 +00:00
" price " : 5000
2021-10-15 14:08:27 +00:00
} ,
" shit " : {
" kind " : " shit " ,
" title " : " Shit " ,
" description " : " Makes flies swarm a post. " ,
" icon " : " fas fa-poop " ,
" color " : " text-black-50 " ,
" price " : 500
} ,
" fireflies " : {
" kind " : " fireflies " ,
" title " : " Fireflies " ,
" description " : " Puts stars on the post. " ,
" icon " : " fas fa-sparkles " ,
" color " : " text-warning " ,
" price " : 500
2021-10-18 17:55:07 +00:00
} ,
" grass " : {
" kind " : " grass " ,
" title " : " Grass " ,
2021-10-18 18:09:02 +00:00
" description " : " Ban the author permanently (must provide a timestamped picture of them touching grass to the admins to get unbanned) " ,
2021-10-18 17:55:07 +00:00
" icon " : " fas fa-seedling " ,
" color " : " text-success " ,
2021-10-18 18:42:42 +00:00
" price " : 10000
2021-10-20 19:34:56 +00:00
} ,
" train " : {
" kind " : " train " ,
" title " : " Train " ,
" description " : " Summons a train on the post. " ,
" icon " : " fas fa-train " ,
" color " : " text-pink " ,
" price " : 500
2021-10-20 21:06:25 +00:00
} ,
" pin " : {
" kind " : " pin " ,
" title " : " 1-Hour Pin " ,
" description " : " Pins the post. " ,
" icon " : " fas fa-thumbtack " ,
" color " : " text-warning " ,
" price " : 750
} ,
2021-10-15 14:08:27 +00:00
}
else :
AWARDS = {
" shit " : {
" kind " : " shit " ,
" title " : " Shit " ,
" description " : " Makes flies swarm a post. " ,
" icon " : " fas fa-poop " ,
" color " : " text-black-50 " ,
" price " : 500
} ,
" fireflies " : {
" kind " : " fireflies " ,
" title " : " Fireflies " ,
" description " : " Puts stars on the post. " ,
" icon " : " fas fa-sparkles " ,
" color " : " text-warning " ,
" price " : 500
2021-10-20 19:34:56 +00:00
} ,
" train " : {
" kind " : " train " ,
" title " : " Train " ,
" description " : " Summons a train on the post. " ,
" icon " : " fas fa-train " ,
" color " : " text-pink " ,
2021-10-20 21:06:25 +00:00
" price " : 50
} ,
" pin " : {
" kind " : " pin " ,
" title " : " 1-Hour Pin " ,
" description " : " Pins the post. " ,
" icon " : " fas fa-thumbtack " ,
" color " : " text-warning " ,
" price " : 750
} ,
2021-10-15 14:08:27 +00:00
}
query = g . db . query (
User . id , User . username , User . patron , User . namecolor ,
AwardRelationship . kind . label ( ' last_award_kind ' ) , func . count ( AwardRelationship . id ) . label ( ' last_award_count ' )
) . filter ( AwardRelationship . submission_id == None , AwardRelationship . comment_id == None , User . patron > 0 ) \
. group_by ( User . username , User . patron , User . id , User . namecolor , AwardRelationship . kind ) \
. order_by ( User . patron . desc ( ) , AwardRelationship . kind . desc ( ) ) \
. join ( User ) . filter ( User . id == v . id ) . all ( )
owned = [ ]
for row in ( r . _asdict ( ) for r in query ) :
kind = row [ ' last_award_kind ' ]
if kind in AWARDS . keys ( ) :
award = AWARDS [ kind ]
award [ " owned_num " ] = row [ ' last_award_count ' ]
owned . append ( award )
if v . patron :
for val in AWARDS . values ( ) :
if v . patron == 1 : val [ " price " ] = int ( val [ " price " ] * 0.90 )
elif v . patron == 2 : val [ " price " ] = int ( val [ " price " ] * 0.85 )
elif v . patron == 3 : val [ " price " ] = int ( val [ " price " ] * 0.80 )
elif v . patron == 4 : val [ " price " ] = int ( val [ " price " ] * 0.75 )
else : val [ " price " ] = int ( val [ " price " ] * 0.70 )
return render_template ( " settings_shop.html " , owned = owned , awards = list ( AWARDS . values ( ) ) , v = v )
@app.post ( " /buy/<award> " )
@auth_required
def buy ( v , award ) :
if site_name == " Drama " :
AWARDS = {
" ban " : {
" kind " : " ban " ,
2021-10-20 19:34:56 +00:00
" title " : " 1-Day Ban " ,
2021-10-15 14:08:27 +00:00
" description " : " Bans the author for a day. " ,
" icon " : " fas fa-gavel " ,
" color " : " text-danger " ,
2021-10-15 19:48:53 +00:00
" price " : 5000
2021-10-15 14:08:27 +00:00
} ,
" shit " : {
" kind " : " shit " ,
" title " : " Shit " ,
" description " : " Makes flies swarm a post. " ,
" icon " : " fas fa-poop " ,
" color " : " text-black-50 " ,
" price " : 500
} ,
" fireflies " : {
" kind " : " fireflies " ,
" title " : " Fireflies " ,
" description " : " Puts stars on the post. " ,
" icon " : " fas fa-sparkles " ,
" color " : " text-warning " ,
" price " : 500
2021-10-18 17:55:07 +00:00
} ,
" grass " : {
" kind " : " grass " ,
" title " : " Grass " ,
2021-10-18 18:09:02 +00:00
" description " : " Ban the author permanently (must provide a timestamped picture of them touching grass to the admins to get unbanned) " ,
2021-10-18 17:55:07 +00:00
" icon " : " fas fa-seedling " ,
" color " : " text-success " ,
2021-10-18 18:42:42 +00:00
" price " : 10000
2021-10-20 19:34:56 +00:00
} ,
" train " : {
" kind " : " train " ,
" title " : " Train " ,
" description " : " Summons a train on the post. " ,
" icon " : " fas fa-train " ,
" color " : " text-pink " ,
" price " : 500
2021-10-20 21:06:25 +00:00
} ,
" pin " : {
" kind " : " pin " ,
" title " : " 1-Hour Pin " ,
" description " : " Pins the post. " ,
" icon " : " fas fa-thumbtack " ,
" color " : " text-warning " ,
" price " : 750
} ,
2021-10-15 14:08:27 +00:00
}
else :
AWARDS = {
" shit " : {
" kind " : " shit " ,
" title " : " Shit " ,
" description " : " Makes flies swarm a post. " ,
" icon " : " fas fa-poop " ,
" color " : " text-black-50 " ,
" price " : 500
} ,
" fireflies " : {
" kind " : " fireflies " ,
" title " : " Fireflies " ,
" description " : " Puts stars on the post. " ,
" icon " : " fas fa-sparkles " ,
" color " : " text-warning " ,
" price " : 500
2021-10-20 19:34:56 +00:00
} ,
" train " : {
" kind " : " train " ,
" title " : " Train " ,
" description " : " Summons a train on the post. " ,
" icon " : " fas fa-train " ,
" color " : " text-pink " ,
" price " : 500
2021-10-20 21:06:25 +00:00
} ,
" pin " : {
" kind " : " pin " ,
" title " : " 1-Hour Pin " ,
" description " : " Pins the post. " ,
" icon " : " fas fa-thumbtack " ,
" color " : " text-warning " ,
" price " : 750
} ,
2021-10-15 14:08:27 +00:00
}
if award not in AWARDS : abort ( 400 )
price = AWARDS [ award ] [ " price " ]
if v . patron :
if v . patron == 1 : price = int ( price * 0.90 )
elif v . patron == 2 : price = int ( price * 0.85 )
elif v . patron == 3 : price = int ( price * 0.80 )
elif v . patron == 4 : price = int ( price * 0.75 )
else : price = int ( price * 0.70 )
if v . coins < price : return { " error " : " Not enough coins. " } , 400
v . coins - = price
g . db . add ( v )
2021-10-16 10:16:59 +00:00
g . db . flush ( )
2021-10-15 14:08:27 +00:00
thing = g . db . query ( AwardRelationship ) . order_by ( AwardRelationship . id . desc ( ) ) . first ( ) . id
thing + = 1
award = AwardRelationship ( id = thing , user_id = v . id , kind = award )
g . db . add ( award )
g . db . commit ( )
return { " message " : " Award bought! " }
@app.post ( " /post/<pid>/awards " )
@limiter.limit ( " 1/second " )
@auth_required
def award_post ( pid , v ) :
if v . is_suspended and v . unban_utc == 0 : return { " error " : " forbidden. " } , 403
kind = request . values . get ( " kind " , " " ) . strip ( )
if kind not in AWARDS :
return { " error " : " That award doesn ' t exist. " } , 404
post_award = g . db . query ( AwardRelationship ) . options ( lazyload ( ' * ' ) ) . filter (
and_ (
AwardRelationship . kind == kind ,
AwardRelationship . user_id == v . id ,
AwardRelationship . submission_id == None ,
AwardRelationship . comment_id == None
)
) . first ( )
if not post_award :
return { " error " : " You don ' t have that award. " } , 404
post = g . db . query ( Submission ) . options ( lazyload ( ' * ' ) ) . filter_by ( id = pid ) . first ( )
2021-10-20 21:06:25 +00:00
if not post :
return { " error " : " That post doesn ' t exist. " } , 404
2021-10-15 14:08:27 +00:00
existing_award = g . db . query ( AwardRelationship ) . options ( lazyload ( ' * ' ) ) . filter (
and_ (
AwardRelationship . submission_id == post . id ,
AwardRelationship . user_id == v . id ,
AwardRelationship . kind == kind
)
) . first ( )
post_award . submission_id = post . id
g . db . add ( post_award )
msg = f " @ { v . username } has given your [post]( { post . permalink } ) the { AWARDS [ kind ] [ ' title ' ] } Award! "
note = request . values . get ( " note " , " " ) . strip ( )
2021-10-18 19:06:00 +00:00
if note : msg + = f " \n \n > { note } "
2021-10-15 14:08:27 +00:00
send_notification ( NOTIFICATIONS_ACCOUNT , post . author , msg )
2021-10-18 19:06:00 +00:00
if kind == " ban " :
2021-10-18 19:07:52 +00:00
author = post . author
link = f " [this post]( { post . permalink } ) "
2021-10-18 19:06:00 +00:00
if not author . is_suspended :
2021-10-20 19:34:56 +00:00
author . ban ( reason = f " 1-Day ban award used by @ { v . username } on /post/ { post . id } " , days = 1 )
2021-10-18 19:06:00 +00:00
send_notification ( NOTIFICATIONS_ACCOUNT , author , f " Your account has been suspended for a day for { link } . It sucked and you should feel bad. " )
elif author . unban_utc > 0 :
author . unban_utc + = 24 * 60 * 60
g . db . add ( author )
send_notification ( NOTIFICATIONS_ACCOUNT , author , f " Your account has been suspended for yet another day for { link } . Seriously man? " )
elif kind == " grass " :
2021-10-18 19:07:52 +00:00
author = post . author
2021-10-18 19:06:00 +00:00
author . is_banned = AUTOJANNY_ACCOUNT
2021-10-18 20:03:43 +00:00
author . ban_reason = f " grass award used by @ { v . username } on /post/ { post . id } "
2021-10-18 19:09:42 +00:00
g . db . add ( author )
2021-10-18 19:07:52 +00:00
link = f " [this post]( { post . permalink } ) "
2021-10-18 19:06:00 +00:00
send_notification ( NOTIFICATIONS_ACCOUNT , author , f " Your account has been suspended permanently for { link } . You must [provide the admins](/contact) a timestamped picture of you touching grass to get unbanned! " )
2021-10-20 21:06:25 +00:00
elif kind == " pin " :
if post . stickied and post . stickied . startswith ( " t: " ) : t = int ( post . stickied [ 2 : ] ) + 600
else : t = int ( time . time ( ) ) + 3600
post . stickied = f " t: { t } "
g . db . add ( post )
2021-10-20 21:13:30 +00:00
cache . delete_memoized ( frontlist )
2021-10-15 14:08:27 +00:00
post . author . received_award_count + = 1
g . db . add ( post . author )
g . db . commit ( )
if request . referrer and len ( request . referrer ) > 1 : return redirect ( request . referrer )
else : return redirect ( " / " )
@app.post ( " /comment/<cid>/awards " )
@limiter.limit ( " 1/second " )
@auth_required
def award_comment ( cid , v ) :
if v . is_suspended and v . unban_utc == 0 : return { " error " : " forbidden " } , 403
kind = request . values . get ( " kind " , " " ) . strip ( )
if kind not in AWARDS :
return { " error " : " That award doesn ' t exist. " } , 404
comment_award = g . db . query ( AwardRelationship ) . options ( lazyload ( ' * ' ) ) . filter (
and_ (
AwardRelationship . kind == kind ,
AwardRelationship . user_id == v . id ,
AwardRelationship . submission_id == None ,
AwardRelationship . comment_id == None
)
) . first ( )
if not comment_award :
return { " error " : " You don ' t have that award. " } , 404
c = g . db . query ( Comment ) . options ( lazyload ( ' * ' ) ) . filter_by ( id = cid ) . first ( )
2021-10-20 21:06:25 +00:00
if not c :
return { " error " : " That comment doesn ' t exist. " } , 404
2021-10-15 14:08:27 +00:00
existing_award = g . db . query ( AwardRelationship ) . options ( lazyload ( ' * ' ) ) . filter (
and_ (
AwardRelationship . comment_id == c . id ,
AwardRelationship . user_id == v . id ,
AwardRelationship . kind == kind
)
) . first ( )
comment_award . comment_id = c . id
g . db . add ( comment_award )
msg = f " @ { v . username } has given your [comment]( { c . permalink } ) the { AWARDS [ kind ] [ ' title ' ] } Award! "
note = request . values . get ( " note " , " " ) . strip ( )
2021-10-20 21:06:25 +00:00
if note : msg + = f " \n \n > { note } "
2021-10-15 14:08:27 +00:00
send_notification ( NOTIFICATIONS_ACCOUNT , c . author , msg )
2021-10-18 19:07:52 +00:00
if kind == " ban " :
2021-10-18 20:43:34 +00:00
author = c . author
link = f " [this comment]( { c . permalink } ) "
2021-10-18 19:07:52 +00:00
if not author . is_suspended :
2021-10-20 19:34:56 +00:00
author . ban ( reason = f " 1-Day ban award used by @ { v . username } on /comment/ { c . id } " , days = 1 )
2021-10-18 19:07:52 +00:00
send_notification ( NOTIFICATIONS_ACCOUNT , author , f " Your account has been suspended for a day for { link } . It sucked and you should feel bad. " )
elif author . unban_utc > 0 :
author . unban_utc + = 24 * 60 * 60
g . db . add ( author )
send_notification ( NOTIFICATIONS_ACCOUNT , author , f " Your account has been suspended for yet another day for { link } . Seriously man? " )
elif kind == " grass " :
2021-10-18 20:43:34 +00:00
author = c . author
2021-10-18 19:07:52 +00:00
author . is_banned = AUTOJANNY_ACCOUNT
2021-10-18 20:43:34 +00:00
author . ban_reason = f " grass award used by @ { v . username } on /comment/ { c . id } "
2021-10-18 19:09:42 +00:00
g . db . add ( author )
2021-10-18 20:43:34 +00:00
link = f " [this comment]( { c . permalink } ) "
2021-10-18 19:07:52 +00:00
send_notification ( NOTIFICATIONS_ACCOUNT , author , f " Your account has been suspended permanently for { link } . You must [provide the admins](/contact) a timestamped picture of you touching grass to get unbanned! " )
2021-10-15 14:08:27 +00:00
c . author . received_award_count + = 1
g . db . add ( c . author )
g . db . commit ( )
if request . referrer and len ( request . referrer ) > 1 : return redirect ( request . referrer )
else : return redirect ( " / " )
2021-10-20 14:37:46 +00:00
@app.get ( " /admin/awards " )
@admin_level_required ( 6 )
2021-10-15 14:08:27 +00:00
def admin_userawards_get ( v ) :
2021-10-20 14:37:46 +00:00
return render_template ( " admin/awards.html " , awards = list ( AWARDS . values ( ) ) , v = v )
2021-10-15 14:08:27 +00:00
2021-10-20 14:37:46 +00:00
@app.post ( " /admin/awards " )
2021-10-15 14:08:27 +00:00
@limiter.limit ( " 1/second " )
@auth_required
@validate_formkey
def admin_userawards_post ( v ) :
if v . admin_level < 6 :
abort ( 403 )
try : u = request . values . get ( " username " ) . strip ( )
except : abort ( 404 )
u = get_user ( u , graceful = False , v = v )
notify_awards = { }
latest = g . db . query ( AwardRelationship ) . order_by ( AwardRelationship . id . desc ( ) ) . first ( )
thing = latest . id
for key , value in request . values . items ( ) :
if key not in AWARDS :
continue
if value :
if int ( value ) > 0 :
notify_awards [ key ] = int ( value )
for x in range ( int ( value ) ) :
thing + = 1
award = AwardRelationship (
id = thing ,
user_id = u . id ,
kind = key
)
g . db . add ( award )
text = " You were given the following awards: \n \n "
for key , value in notify_awards . items ( ) :
text + = f " - ** { value } ** { AWARDS [ key ] [ ' title ' ] } { ' Awards ' if value != 1 else ' Award ' } \n "
send_notification ( NOTIFICATIONS_ACCOUNT , u , text )
g . db . commit ( )
2021-10-20 14:37:46 +00:00
return render_template ( " admin/awards.html " , awards = list ( AWARDS . values ( ) ) , v = v )