mirror of https://gitlab.com/bashrc2/epicyon
Check authorization on person options
parent
e03b2e0fd8
commit
0dbd048a15
11
daemon.py
11
daemon.py
|
@ -2819,7 +2819,7 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
domain, domainFull,
|
||||
GETstartTime, GETtimings,
|
||||
onionDomain, i2pDomain,
|
||||
cookie, debug)
|
||||
cookie, debug, authorized)
|
||||
return
|
||||
else:
|
||||
showPublishedDateOnly = self.server.showPublishedDateOnly
|
||||
|
@ -5486,7 +5486,8 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
domain: str, domainFull: str,
|
||||
GETstartTime, GETtimings: {},
|
||||
onionDomain: str, i2pDomain: str,
|
||||
cookie: str, debug: bool) -> None:
|
||||
cookie: str, debug: bool,
|
||||
authorized: bool) -> None:
|
||||
"""Show person options screen
|
||||
"""
|
||||
backToPath = ''
|
||||
|
@ -5576,7 +5577,8 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
lockedAccount,
|
||||
movedTo, alsoKnownAs,
|
||||
self.server.textModeBanner,
|
||||
self.server.newsInstance).encode('utf-8')
|
||||
self.server.newsInstance,
|
||||
authorized).encode('utf-8')
|
||||
msglen = len(msg)
|
||||
self._set_headers('text/html', msglen,
|
||||
cookie, callingDomain)
|
||||
|
@ -10495,7 +10497,8 @@ class PubServer(BaseHTTPRequestHandler):
|
|||
GETstartTime, GETtimings,
|
||||
self.server.onionDomain,
|
||||
self.server.i2pDomain,
|
||||
cookie, self.server.debug)
|
||||
cookie, self.server.debug,
|
||||
authorized)
|
||||
return
|
||||
|
||||
self._benchmarkGETtimings(GETstartTime, GETtimings,
|
||||
|
|
|
@ -53,7 +53,8 @@ def htmlPersonOptions(defaultTimeline: str,
|
|||
movedTo: str,
|
||||
alsoKnownAs: [],
|
||||
textModeBanner: str,
|
||||
newsInstance: bool) -> str:
|
||||
newsInstance: bool,
|
||||
authorized: bool) -> str:
|
||||
"""Show options for a person: view/follow/block/report
|
||||
"""
|
||||
optionsDomain, optionsPort = getDomainFromActor(optionsActor)
|
||||
|
@ -225,6 +226,7 @@ def htmlPersonOptions(defaultTimeline: str,
|
|||
optionsActor + '">\n'
|
||||
optionsStr += ' <input type="hidden" name="avatarUrl" value="' + \
|
||||
optionsProfileUrl + '">\n'
|
||||
if authorized:
|
||||
if optionsNickname:
|
||||
handle = optionsNickname + '@' + optionsDomainFull
|
||||
petname = getPetName(baseDir, nickname, domain, handle)
|
||||
|
@ -246,7 +248,8 @@ def htmlPersonOptions(defaultTimeline: str,
|
|||
'name="submitOnCalendar">' + \
|
||||
translate['Submit'] + '</button><br>\n'
|
||||
if not receivingCalendarEvents(baseDir, nickname, domain,
|
||||
optionsNickname, optionsDomainFull):
|
||||
optionsNickname,
|
||||
optionsDomainFull):
|
||||
checkboxStr = checkboxStr.replace(' checked>', '>')
|
||||
optionsStr += checkboxStr
|
||||
|
||||
|
@ -297,7 +300,8 @@ def htmlPersonOptions(defaultTimeline: str,
|
|||
not isModerator(baseDir, optionsNickname))):
|
||||
checkboxStr = \
|
||||
' <input type="checkbox" ' + \
|
||||
'class="profilecheckbox" name="postsToFeatures" checked> ' + \
|
||||
'class="profilecheckbox" ' + \
|
||||
'name="postsToFeatures" checked> ' + \
|
||||
translate['Featured writer'] + \
|
||||
'\n <button type="submit" class="buttonsmall" ' + \
|
||||
'name="submitPostToFeatures">' + \
|
||||
|
@ -317,10 +321,12 @@ def htmlPersonOptions(defaultTimeline: str,
|
|||
' <a href="' + backPath + '"><button type="button" ' + \
|
||||
'class="buttonIcon" name="submitBack">' + translate['Go Back'] + \
|
||||
'</button></a>\n'
|
||||
if authorized:
|
||||
optionsStr += \
|
||||
' <button type="submit" class="button" name="submitView">' + \
|
||||
translate['View'] + '</button>\n'
|
||||
optionsStr += donateStr
|
||||
if authorized:
|
||||
optionsStr += \
|
||||
' <button type="submit" class="button" name="submit' + \
|
||||
followStr + '">' + translate[followStr] + '</button>\n'
|
||||
|
@ -332,10 +338,11 @@ def htmlPersonOptions(defaultTimeline: str,
|
|||
translate['DM'] + '</button>\n'
|
||||
optionsStr += \
|
||||
' <button type="submit" class="button" name="submit' + \
|
||||
snoozeButtonStr + '">' + translate[snoozeButtonStr] + '</button>\n'
|
||||
snoozeButtonStr + '">' + translate[snoozeButtonStr] + \
|
||||
'</button>\n'
|
||||
optionsStr += \
|
||||
' <button type="submit" class="button" name="submitReport">' + \
|
||||
translate['Report'] + '</button>\n'
|
||||
' <button type="submit" class="button" ' + \
|
||||
'name="submitReport">' + translate['Report'] + '</button>\n'
|
||||
|
||||
if isModerator(baseDir, nickname):
|
||||
optionsStr += \
|
||||
|
|
Loading…
Reference in New Issue