2020-11-07 14:34:48 +00:00
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import datetime
from flask import Blueprint , url_for , render_template , current_app , Response , redirect
from markupsafe import escape
2020-11-07 18:38:01 +00:00
from . import config
2020-11-16 15:39:30 +00:00
from . import db
from . import forms
2020-12-04 21:11:44 +00:00
from . import util
2020-11-07 14:34:48 +00:00
bp = Blueprint ( ' agora ' , __name__ )
2020-11-07 18:38:01 +00:00
2020-12-12 19:44:00 +00:00
# Special
2020-11-23 13:45:26 +00:00
@bp.route ( ' /index ' )
2020-11-07 14:34:48 +00:00
@bp.route ( ' / ' )
def index ( ) :
2020-12-04 21:11:44 +00:00
node = ' index '
return render_template ( ' node_rendered.html ' , wikilink = node , subnodes = util . rank ( db . subnodes_by_wikilink ( node ) , user = ' agora ' ) , backlinks = db . subnodes_by_outlink ( node ) )
2020-11-07 14:34:48 +00:00
@bp.route ( ' /help ' )
def help ( ) :
current_app . logger . warning ( ' Not implemented. ' )
return ' If I had implemented help already, here you \' d see documentation on all URL endpoints. For now, please refer to the <a href= " https://flancia.org/go/agora " >code</a>. '
2020-11-17 09:49:21 +00:00
@bp.route ( ' /latest ' )
def latest ( ) :
return render_template ( ' subnodes.html ' , header = " Latest " , subnodes = db . latest ( ) )
2020-11-07 14:34:48 +00:00
@bp.route ( ' /today ' )
def today ( ) :
today = datetime . datetime . now ( ) . date ( )
return redirect ( " https://anagora.org/node/ %s " % today . strftime ( " % Y- % m- %d " ) )
2020-12-12 19:44:00 +00:00
@bp.route ( ' /search ' , methods = ( ' GET ' , ' POST ' ) )
def search ( ) :
form = forms . SearchForm ( )
if form . validate_on_submit ( ) :
return render_template ( ' search.html ' , form = form , subnodes = db . search_subnodes ( form . query . data ) )
return render_template ( ' search.html ' , form = form )
# Actions
2020-11-22 17:54:08 +00:00
@bp.route ( ' /go/<node> ' )
def go ( node ) :
""" Redirects to the URL in the given node in a block that starts with [[go]], if there is one. """
# TODO(flancian): all node-scoped stuff should move to actually use node objects.
try :
n = db . nodes_by_wikilink ( node )
except KeyError :
return redirect ( " https://anagora.org/node/ %s " % node )
if len ( n ) > 1 :
current_app . logger . warning ( ' nodes_by_wikilink returned more than one node, should not happen. ' )
if len ( n ) == 0 :
# No nodes with this name -- redirect to node 404.
return redirect ( " https://anagora.org/node/ %s " % node )
links = n [ 0 ] . go ( )
if len ( links ) == 0 :
# No go links detected in this node -- just redirect to the node.
# TODO(flancian): flash an explanation :)
return redirect ( " https://anagora.org/node/ %s " % node )
if len ( links ) > 1 :
# TODO(flancian): to be implemented.
# Likely default to one of the links, show all of them but redirect to default within n seconds.
current_app . logger . warning ( ' Code to manage nodes with more than one go link is not Not implemented. ' )
return redirect ( links [ 0 ] )
2020-12-12 19:44:00 +00:00
@bp.route ( ' /pull/<node> ' )
def pull ( node ) :
""" In the context of a node, " pulls attention " from the parameter node to the current subnode.
Here it " broadcasts " : it renders all nodes that pull from a given node .
Unclear at this point if this should exist at all , or whether it should do something else .
"""
return redirect ( ' /node/ {} ' . format ( node ) )
# Entities
2020-12-21 11:32:00 +00:00
@bp.route ( ' /node/<node> ' )
@bp.route ( ' /wikilink/<node> ' ) # alias for now
def wikilink ( node ) :
2020-12-22 00:08:47 +00:00
try :
n = db . nodes_by_wikilink ( node )
except KeyError :
# We'll handle 404 in the template, as we want to show backlinks to non-existent nodes.
pass
try :
n = n [ 0 ]
except IndexError :
pass
2020-12-21 11:32:00 +00:00
return render_template (
' node_rendered.html ' ,
wikilink = node ,
subnodes = db . subnodes_by_wikilink ( node ) ,
2020-12-22 13:52:11 +00:00
# backlinks=db.nodes_by_outlink(node),
backlinks = [ x . wikilink for x in db . nodes_by_outlink ( node ) ] ,
2020-12-22 00:08:47 +00:00
pushlinks = n . push_links ( ) if n else [ ] ,
pulllinks = n . pull_links ( ) if n else [ ] ,
forwardlinks = n . forward_links ( ) if n else [ ] ,
2020-12-21 11:32:00 +00:00
)
@bp.route ( ' /subnode/<path:subnode> ' )
def subnode ( subnode ) :
return render_template ( ' subnode_rendered.html ' , subnode = db . subnode_by_uri ( subnode ) , backlinks = db . subnodes_by_outlink ( subnode ) )
2020-11-10 21:48:20 +00:00
@bp.route ( ' /u/<user> ' )
@bp.route ( ' /user/<user> ' )
2020-11-14 18:11:05 +00:00
@bp.route ( ' /@<user> ' )
2020-11-10 21:48:20 +00:00
def user ( user ) :
2020-11-16 20:29:37 +00:00
return render_template ( ' user.html ' , user = user , readmes = db . user_readmes ( user ) , subnodes = db . subnodes_by_user ( user ) )
2020-11-07 14:34:48 +00:00
@bp.route ( ' /garden/<garden> ' )
def garden ( garden ) :
current_app . logger . warning ( ' Not implemented. ' )
return ' If I had implemented rendering gardens already, here you would see garden named " %s " . ' % escape ( garden )
2020-12-12 19:44:00 +00:00
# Lists
@bp.route ( ' /nodes ' )
def nodes ( ) :
return render_template ( ' nodes.html ' , nodes = db . all_nodes ( include_journals = False ) )
@bp.route ( ' /notes ' ) # alias
@bp.route ( ' /subnodes ' )
def subnodes ( ) :
return render_template ( ' subnodes.html ' , subnodes = db . all_subnodes ( ) )
@bp.route ( ' /users ' )
def users ( ) :
return render_template ( ' users.html ' , users = db . all_users ( ) )
@bp.route ( ' /journals ' )
def journals ( ) :
return render_template ( ' nodes.html ' , header = " Journals " , nodes = db . all_journals ( ) )
# Searching with GET: potentially useful but probably not a good idea.
2020-11-16 15:39:30 +00:00
# @bp.route('/search/<query>')
# def search(query):
# return render_template('subnodes.html', subnodes=db.search_subnodes(query))
2020-11-16 14:51:34 +00:00
2020-11-07 18:38:01 +00:00
@bp.route ( ' /asset/<user>/<asset> ' )
def asset ( user , asset ) :
# An asset is a binary in someone's garden/<user>/assets directory.
2020-11-16 14:51:34 +00:00
# Currently unused.
2020-11-07 18:38:01 +00:00
path = ' / ' . join ( [ " garden " , user , ' assets ' , asset ] )
return current_app . send_static_file ( path )
2020-11-07 14:34:48 +00:00
@bp.route ( ' /raw/<node> ' )
def raw ( node ) :
2020-11-16 14:51:34 +00:00
# Currently unused.
2020-11-07 14:34:48 +00:00
# hack hack
# outlinks
return Response ( " \n \n " . join ( [ str ( n . outlinks ) for n in db . nodes_by_wikilink ( node ) ] ) , mimetype = " text/plain " )
# content
# return Response("\n\n".join([n.content for n in db.nodes_by_wikilink(node)]), mimetype="text/plain")
@bp.route ( ' /backlinks/<node> ' )
def backlinks ( node ) :
2020-11-16 14:51:34 +00:00
# Currently unused.
2020-11-07 14:34:48 +00:00
return render_template ( ' nodes.html ' , nodes = db . nodes_by_outlink ( node ) )