mirror of https://gitlab.com/bashrc2/epicyon
				
				
				
			
		
			
				
	
	
		
			3484 lines
		
	
	
		
			136 KiB
		
	
	
	
		
			Python
		
	
	
			
		
		
	
	
			3484 lines
		
	
	
		
			136 KiB
		
	
	
	
		
			Python
		
	
	
| __filename__ = "epicyon.py"
 | |
| __author__ = "Bob Mottram"
 | |
| __license__ = "AGPL3+"
 | |
| __version__ = "1.3.0"
 | |
| __maintainer__ = "Bob Mottram"
 | |
| __email__ = "bob@libreserver.org"
 | |
| __status__ = "Production"
 | |
| __module_group__ = "Commandline Interface"
 | |
| 
 | |
| import os
 | |
| import shutil
 | |
| import sys
 | |
| import time
 | |
| import argparse
 | |
| import getpass
 | |
| import datetime
 | |
| from person import get_actor_json
 | |
| from person import create_person
 | |
| from person import create_group
 | |
| from person import set_profile_image
 | |
| from person import remove_account
 | |
| from person import activate_account
 | |
| from person import deactivate_account
 | |
| from skills import set_skill_level
 | |
| from roles import set_role
 | |
| from webfinger import webfinger_handle
 | |
| from bookmarks import send_bookmark_via_server
 | |
| from bookmarks import send_undo_bookmark_via_server
 | |
| from posts import get_instance_actor_key
 | |
| from posts import send_mute_via_server
 | |
| from posts import send_undo_mute_via_server
 | |
| from posts import c2s_box_json
 | |
| from posts import download_follow_collection
 | |
| from posts import get_public_post_domains
 | |
| from posts import get_public_post_domains_blocked
 | |
| from posts import send_block_via_server
 | |
| from posts import send_undo_block_via_server
 | |
| from posts import create_public_post
 | |
| from posts import delete_all_posts
 | |
| from posts import archive_posts
 | |
| from posts import send_post_via_server
 | |
| from posts import get_public_posts_of_person
 | |
| from posts import get_user_url
 | |
| from posts import check_domains
 | |
| from session import create_session
 | |
| from session import get_json
 | |
| from session import get_vcard
 | |
| from session import download_html
 | |
| from newswire import get_rss
 | |
| from filters import add_filter
 | |
| from filters import remove_filter
 | |
| from pprint import pprint
 | |
| from daemon import run_daemon
 | |
| from follow import get_follow_requests_via_server
 | |
| from follow import get_following_via_server
 | |
| from follow import get_followers_via_server
 | |
| from follow import clear_follows
 | |
| from follow import add_follower_of_person
 | |
| from follow import send_follow_request_via_server
 | |
| from follow import send_unfollow_request_via_server
 | |
| from tests import test_shared_items_federation
 | |
| from tests import test_group_follow
 | |
| from tests import test_post_message_between_servers
 | |
| from tests import test_follow_between_servers
 | |
| from tests import test_client_to_server
 | |
| from tests import test_update_actor
 | |
| from tests import run_all_tests
 | |
| from auth import store_basic_credentials
 | |
| from auth import create_password
 | |
| from utils import remove_domain_port
 | |
| from utils import get_port_from_domain
 | |
| from utils import has_users_path
 | |
| from utils import get_full_domain
 | |
| from utils import set_config_param
 | |
| from utils import get_config_param
 | |
| from utils import get_domain_from_actor
 | |
| from utils import get_nickname_from_actor
 | |
| from utils import follow_person
 | |
| from utils import valid_nickname
 | |
| from utils import get_protocol_prefixes
 | |
| from utils import acct_dir
 | |
| from media import archive_media
 | |
| from media import get_attachment_media_type
 | |
| from delete import send_delete_via_server
 | |
| from like import send_like_via_server
 | |
| from like import send_undo_like_via_server
 | |
| from reaction import send_reaction_via_server
 | |
| from reaction import send_undo_reaction_via_server
 | |
| from reaction import valid_emoji_content
 | |
| from skills import send_skill_via_server
 | |
| from availability import set_availability
 | |
| from availability import send_availability_via_server
 | |
| from manualapprove import manual_deny_follow_request
 | |
| from manualapprove import manual_approve_follow_request
 | |
| from shares import send_share_via_server
 | |
| from shares import send_undo_share_via_server
 | |
| from shares import send_wanted_via_server
 | |
| from shares import send_undo_wanted_via_server
 | |
| from shares import add_share
 | |
| from theme import set_theme
 | |
| from announce import send_announce_via_server
 | |
| from socnet import instances_graph
 | |
| from migrate import migrate_accounts
 | |
| from desktop_client import run_desktop_client
 | |
| from happening import dav_month_via_server
 | |
| from happening import dav_day_via_server
 | |
| from content import import_emoji
 | |
| 
 | |
| 
 | |
| def str2bool(value_str) -> bool:
 | |
|     """Returns true if the given value is a boolean
 | |
|     """
 | |
|     if isinstance(value_str, bool):
 | |
|         return value_str
 | |
|     if value_str.lower() in ('yes', 'true', 't', 'y', '1'):
 | |
|         return True
 | |
|     if value_str.lower() in ('no', 'false', 'f', 'n', '0'):
 | |
|         return False
 | |
|     raise argparse.ArgumentTypeError('Boolean value expected.')
 | |
| 
 | |
| 
 | |
| search_date = datetime.datetime.now()
 | |
| parser = argparse.ArgumentParser(description='ActivityPub Server')
 | |
| parser.add_argument('--eventDate', type=str,
 | |
|                     default=None,
 | |
|                     help='Date for an event when sending a c2s post' +
 | |
|                     ' YYYY-MM-DD')
 | |
| parser.add_argument('--eventTime', type=str,
 | |
|                     default=None,
 | |
|                     help='Time for an event when sending a c2s post' +
 | |
|                     ' HH:MM')
 | |
| parser.add_argument('--eventLocation', type=str,
 | |
|                     default=None,
 | |
|                     help='Location for an event when sending a c2s post')
 | |
| parser.add_argument('--content_license_url', type=str,
 | |
|                     default='https://creativecommons.org/licenses/by/4.0',
 | |
|                     help='Url of the license used for the instance content')
 | |
| parser.add_argument('--import_emoji', type=str,
 | |
|                     default='',
 | |
|                     help='Import emoji from the given instance domain')
 | |
| parser.add_argument('--lists_enabled', type=str,
 | |
|                     default=None,
 | |
|                     help='Names of content warning lists enabled. ' +
 | |
|                     'See the cwlists directory')
 | |
| parser.add_argument('--userAgentBlocks', type=str,
 | |
|                     default=None,
 | |
|                     help='List of blocked user agents, separated by commas')
 | |
| parser.add_argument('--crawlersAllowed', type=str,
 | |
|                     default=None,
 | |
|                     help='List of permitted web crawler user agents, ' +
 | |
|                     'separated by commas')
 | |
| parser.add_argument('--libretranslate', dest='libretranslateUrl', type=str,
 | |
|                     default=None,
 | |
|                     help='URL for LibreTranslate service')
 | |
| parser.add_argument('--conversationId', dest='conversationId', type=str,
 | |
|                     default=None,
 | |
|                     help='Conversation Id which can be added ' +
 | |
|                     'when sending a post')
 | |
| parser.add_argument('--libretranslateApiKey',
 | |
|                     dest='libretranslateApiKey', type=str,
 | |
|                     default=None,
 | |
|                     help='API key for LibreTranslate service')
 | |
| parser.add_argument('--defaultCurrency', dest='defaultCurrency', type=str,
 | |
|                     default=None,
 | |
|                     help='Default currency EUR/GBP/USD...')
 | |
| parser.add_argument('-n', '--nickname', dest='nickname', type=str,
 | |
|                     default=None,
 | |
|                     help='Nickname of the account to use')
 | |
| parser.add_argument('--screenreader', dest='screenreader', type=str,
 | |
|                     default=None,
 | |
|                     help='Name of the screen reader: espeak/picospeaker')
 | |
| parser.add_argument('--fol', '--follow', dest='follow', type=str,
 | |
|                     default=None,
 | |
|                     help='Handle of account to follow. eg. nickname@domain')
 | |
| parser.add_argument('--unfol', '--unfollow', dest='unfollow', type=str,
 | |
|                     default=None,
 | |
|                     help='Handle of account stop following. ' +
 | |
|                     'eg. nickname@domain')
 | |
| parser.add_argument('-d', '--domain', dest='domain', type=str,
 | |
|                     default=None,
 | |
|                     help='Domain name of the server')
 | |
| parser.add_argument('--notificationType', '--notifyType',
 | |
|                     dest='notificationType', type=str,
 | |
|                     default='notify-send',
 | |
|                     help='Type of desktop notification command: ' +
 | |
|                     'notify-send/zenity/osascript/New-BurntToastNotification')
 | |
| parser.add_argument('-o', '--onion', dest='onion', type=str,
 | |
|                     default=None,
 | |
|                     help='Onion domain name of the server if ' +
 | |
|                     'primarily on clearnet')
 | |
| parser.add_argument('--i2p_domain', dest='i2p_domain', type=str,
 | |
|                     default=None,
 | |
|                     help='i2p domain name of the server if ' +
 | |
|                     'primarily on clearnet')
 | |
| parser.add_argument('-p', '--port', dest='port', type=int,
 | |
|                     default=None,
 | |
|                     help='Port number to run on')
 | |
| parser.add_argument('--check-actor-timeout', dest='check_actor_timeout',
 | |
|                     type=int, default=2,
 | |
|                     help='Timeout in seconds used for checking is an actor ' +
 | |
|                     'has changed when clicking their avatar image')
 | |
| parser.add_argument('--year', dest='year', type=int,
 | |
|                     default=search_date.year,
 | |
|                     help='Year for calendar query')
 | |
| parser.add_argument('--month', dest='month', type=int,
 | |
|                     default=search_date.month,
 | |
|                     help='Month for calendar query')
 | |
| parser.add_argument('--day', dest='day', type=int,
 | |
|                     default=None,
 | |
|                     help='Day for calendar query')
 | |
| parser.add_argument('--postsPerSource',
 | |
|                     dest='max_newswire_postsPerSource', type=int,
 | |
|                     default=4,
 | |
|                     help='Maximum newswire posts per feed or account')
 | |
| parser.add_argument('--dormant_months',
 | |
|                     dest='dormant_months', type=int,
 | |
|                     default=3,
 | |
|                     help='How many months does a followed account need to ' +
 | |
|                     'be unseen for before being considered dormant')
 | |
| parser.add_argument('--default_reply_interval_hrs',
 | |
|                     dest='default_reply_interval_hrs', type=int,
 | |
|                     default=1000,
 | |
|                     help='How many hours after publication of a post ' +
 | |
|                     'are replies to it permitted')
 | |
| parser.add_argument('--send_threads_timeout_mins',
 | |
|                     dest='send_threads_timeout_mins', type=int,
 | |
|                     default=30,
 | |
|                     help='How many minutes before a thread to send out ' +
 | |
|                     'posts expires')
 | |
| parser.add_argument('--max_newswire_posts',
 | |
|                     dest='max_newswire_posts', type=int,
 | |
|                     default=20,
 | |
|                     help='Maximum newswire posts in the right column')
 | |
| parser.add_argument('--maxFeedSize',
 | |
|                     dest='max_newswire_feed_size_kb', type=int,
 | |
|                     default=10240,
 | |
|                     help='Maximum newswire rss/atom feed size in K')
 | |
| parser.add_argument('--max_feed_item_size_kb',
 | |
|                     dest='max_feed_item_size_kb', type=int,
 | |
|                     default=2048,
 | |
|                     help='Maximum size of an individual rss/atom ' +
 | |
|                     'feed item in K')
 | |
| parser.add_argument('--max_mirrored_articles',
 | |
|                     dest='max_mirrored_articles', type=int,
 | |
|                     default=100,
 | |
|                     help='Maximum number of news articles to mirror.' +
 | |
|                     ' Set to zero for indefinite mirroring.')
 | |
| parser.add_argument('--max_news_posts',
 | |
|                     dest='max_news_posts', type=int,
 | |
|                     default=0,
 | |
|                     help='Maximum number of news timeline posts to keep. ' +
 | |
|                     'Zero for no expiry.')
 | |
| parser.add_argument('--max_followers',
 | |
|                     dest='max_followers', type=int,
 | |
|                     default=2000,
 | |
|                     help='Maximum number of followers per account. ' +
 | |
|                     'Zero for no limit.')
 | |
| parser.add_argument('--followers',
 | |
|                     dest='followers', type=str,
 | |
|                     default='',
 | |
|                     help='Show list of followers for the given actor')
 | |
| parser.add_argument('--postcache', dest='max_recent_posts', type=int,
 | |
|                     default=512,
 | |
|                     help='The maximum number of recent posts to store in RAM')
 | |
| parser.add_argument('--proxy', dest='proxy_port', type=int, default=None,
 | |
|                     help='Proxy port number to run on')
 | |
| parser.add_argument('--path', dest='base_dir',
 | |
|                     type=str, default=os.getcwd(),
 | |
|                     help='Directory in which to store posts')
 | |
| parser.add_argument('--ytdomain', dest='yt_replace_domain',
 | |
|                     type=str, default=None,
 | |
|                     help='Domain used to replace youtube.com')
 | |
| parser.add_argument('--twitterdomain', dest='twitter_replacement_domain',
 | |
|                     type=str, default=None,
 | |
|                     help='Domain used to replace twitter.com')
 | |
| parser.add_argument('--language', dest='language',
 | |
|                     type=str, default=None,
 | |
|                     help='Specify a single language code, ' +
 | |
|                     'eg. "en" or "fr" or "de"')
 | |
| parser.add_argument('--languagesUnderstood', dest='languages_understood',
 | |
|                     type=str, default=None,
 | |
|                     help='List of the default languages understood eg. ' +
 | |
|                     '"en / fr"')
 | |
| parser.add_argument('-a', '--addaccount', dest='addaccount',
 | |
|                     type=str, default=None,
 | |
|                     help='Adds a new account')
 | |
| parser.add_argument('-g', '--addgroup', dest='addgroup',
 | |
|                     type=str, default=None,
 | |
|                     help='Adds a new group')
 | |
| parser.add_argument('--activate', dest='activate',
 | |
|                     type=str, default=None,
 | |
|                     help='Activate a previously deactivated account')
 | |
| parser.add_argument('--deactivate', dest='deactivate',
 | |
|                     type=str, default=None,
 | |
|                     help='Deactivate an account')
 | |
| parser.add_argument('-r', '--rmaccount', dest='rmaccount',
 | |
|                     type=str, default=None,
 | |
|                     help='Remove an account')
 | |
| parser.add_argument('--rmgroup', dest='rmgroup',
 | |
|                     type=str, default=None,
 | |
|                     help='Remove a group')
 | |
| parser.add_argument('--pass', '--password', dest='password',
 | |
|                     type=str, default=None,
 | |
|                     help='Set a password for an account')
 | |
| parser.add_argument('--chpass', '--changepassword',
 | |
|                     nargs='+', dest='changepassword',
 | |
|                     help='Change the password for an account')
 | |
| parser.add_argument('--actor', dest='actor', type=str,
 | |
|                     default=None,
 | |
|                     help='Show the json actor the given handle')
 | |
| parser.add_argument('--posts', dest='posts', type=str,
 | |
|                     default=None,
 | |
|                     help='Show posts for the given handle')
 | |
| parser.add_argument('--postDomains', dest='postDomains', type=str,
 | |
|                     default=None,
 | |
|                     help='Show domains referenced in public '
 | |
|                     'posts for the given handle')
 | |
| parser.add_argument('--postDomainsBlocked', dest='postDomainsBlocked',
 | |
|                     type=str, default=None,
 | |
|                     help='Show blocked domains referenced in public '
 | |
|                     'posts for the given handle')
 | |
| parser.add_argument('--check_domains', dest='check_domains', type=str,
 | |
|                     default=None,
 | |
|                     help='Check domains of non-mutual followers for '
 | |
|                     'domains which are globally blocked by this instance')
 | |
| parser.add_argument('--socnet', dest='socnet', type=str,
 | |
|                     default=None,
 | |
|                     help='Show dot diagram for social network '
 | |
|                     'of federated instances')
 | |
| parser.add_argument('--postsraw', dest='postsraw', type=str,
 | |
|                     default=None,
 | |
|                     help='Show raw json of posts for the given handle')
 | |
| parser.add_argument('--vcard', dest='vcard', type=str, default=None,
 | |
|                     help='Show the vcard for a given activitypub actor url')
 | |
| parser.add_argument('--xmlvcard', dest='xmlvcard', type=str, default=None,
 | |
|                     help='Show the xml vcard for a given ' +
 | |
|                     'activitypub actor url')
 | |
| parser.add_argument('--json', dest='json', type=str, default=None,
 | |
|                     help='Show the json for a given activitypub url')
 | |
| parser.add_argument('--htmlpost', dest='htmlpost', type=str, default=None,
 | |
|                     help='Show the html for a given activitypub url')
 | |
| parser.add_argument('--rss', dest='rss', type=str, default=None,
 | |
|                     help='Show an rss feed for a given url')
 | |
| parser.add_argument('-f', '--federate', nargs='+', dest='federation_list',
 | |
|                     help='Specify federation list separated by spaces')
 | |
| parser.add_argument('--federateshares', nargs='+',
 | |
|                     dest='shared_items_federated_domains',
 | |
|                     help='Specify federation list for shared items, ' +
 | |
|                     'separated by spaces')
 | |
| parser.add_argument("--following", "--followingList",
 | |
|                     dest='followingList',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Get the following list. Use nickname and " +
 | |
|                     "domain options to specify the account")
 | |
| parser.add_argument("--followersList",
 | |
|                     dest='followersList',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Get the followers list. Use nickname and " +
 | |
|                     "domain options to specify the account")
 | |
| parser.add_argument("--followRequestsList",
 | |
|                     dest='followRequestsList',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Get the follow requests list. Use nickname and " +
 | |
|                     "domain options to specify the account")
 | |
| parser.add_argument("--repliesEnabled", "--commentsEnabled",
 | |
|                     dest='commentsEnabled',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=True,
 | |
|                     help="Enable replies to a post")
 | |
| parser.add_argument("--dav",
 | |
|                     dest='dav',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Caldav")
 | |
| parser.add_argument("--show_publish_as_icon",
 | |
|                     dest='show_publish_as_icon',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=True,
 | |
|                     help="Whether to show newswire publish " +
 | |
|                     "as an icon or a button")
 | |
| parser.add_argument("--full_width_tl_button_header",
 | |
|                     dest='full_width_tl_button_header',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Whether to show the timeline " +
 | |
|                     "button header containing inbox and outbox " +
 | |
|                     "as the full width of the screen")
 | |
| parser.add_argument("--icons_as_buttons",
 | |
|                     dest='icons_as_buttons',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Show header icons as buttons")
 | |
| parser.add_argument("--log_login_failures",
 | |
|                     dest='log_login_failures',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Whether to log longin failures")
 | |
| parser.add_argument("--rss_icon_at_top",
 | |
|                     dest='rss_icon_at_top',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=True,
 | |
|                     help="Whether to show the rss icon at teh top or bottom" +
 | |
|                     "of the timeline")
 | |
| parser.add_argument("--low_bandwidth",
 | |
|                     dest='low_bandwidth',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=True,
 | |
|                     help="Whether to use low bandwidth images")
 | |
| parser.add_argument("--publish_button_at_top",
 | |
|                     dest='publish_button_at_top',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Whether to show the publish button at the top of " +
 | |
|                     "the newswire column")
 | |
| parser.add_argument("--allow_local_network_access",
 | |
|                     dest='allow_local_network_access',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Whether to allow access to local network " +
 | |
|                     "addresses. This might be useful when deploying in " +
 | |
|                     "a mesh network")
 | |
| parser.add_argument("--verify_all_signatures",
 | |
|                     dest='verify_all_signatures',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Whether to require that all incoming " +
 | |
|                     "posts have valid jsonld signatures")
 | |
| parser.add_argument("--broch_mode",
 | |
|                     dest='broch_mode',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Enable broch mode")
 | |
| parser.add_argument("--dyslexic_font",
 | |
|                     dest='dyslexic_font',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use dyslexic font")
 | |
| parser.add_argument("--nodeinfoaccounts",
 | |
|                     dest='show_node_info_accounts',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Show numbers of accounts within nodeinfo metadata")
 | |
| parser.add_argument("--nodeinfoversion",
 | |
|                     dest='show_node_info_version',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Show version number within nodeinfo metadata")
 | |
| parser.add_argument("--noKeyPress",
 | |
|                     dest='noKeyPress',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Notification daemon does not wait for keypresses")
 | |
| parser.add_argument("--notifyShowNewPosts",
 | |
|                     dest='notifyShowNewPosts',
 | |
|                     type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Desktop client shows/speaks new posts " +
 | |
|                     "as they arrive")
 | |
| parser.add_argument("--noapproval", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Allow followers without approval")
 | |
| parser.add_argument("--mediainstance", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Media Instance - favor media over text")
 | |
| parser.add_argument("--dateonly", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Only show the date at the bottom of posts")
 | |
| parser.add_argument("--blogsinstance", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Blogs Instance - favor blogs over microblogging")
 | |
| parser.add_argument("--newsinstance", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="News Instance - favor news over microblogging")
 | |
| parser.add_argument("--positivevoting", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="On newswire, whether moderators vote " +
 | |
|                     "positively for or veto against items")
 | |
| parser.add_argument("--debug", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Show debug messages")
 | |
| parser.add_argument("--notificationSounds", type=str2bool, nargs='?',
 | |
|                     const=True, default=True,
 | |
|                     help="Play notification sounds")
 | |
| parser.add_argument("--secure_mode", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Requires all GET requests to be signed, " +
 | |
|                     "so that the sender can be identifies and " +
 | |
|                     "blocked  if neccessary")
 | |
| parser.add_argument("--instance_only_skills_search", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Skills searches only return " +
 | |
|                     "results from this instance")
 | |
| parser.add_argument("--http", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use http only")
 | |
| parser.add_argument("--gnunet", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use gnunet protocol only")
 | |
| parser.add_argument("--dat", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use dat protocol only")
 | |
| parser.add_argument("--hyper", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use hypercore protocol only")
 | |
| parser.add_argument("--i2p", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use i2p protocol only")
 | |
| parser.add_argument("--tor", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Route via Tor")
 | |
| parser.add_argument("--migrations", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Migrate moved accounts")
 | |
| parser.add_argument("--tests", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Run unit tests")
 | |
| parser.add_argument("--testsnetwork", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Run network unit tests")
 | |
| parser.add_argument("--testdata", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Generate some data for testing purposes")
 | |
| parser.add_argument('--icon', '--avatar', dest='avatar', type=str,
 | |
|                     default=None,
 | |
|                     help='Set the avatar filename for an account')
 | |
| parser.add_argument('--image', '--background', dest='backgroundImage',
 | |
|                     type=str, default=None,
 | |
|                     help='Set the profile background image for an account')
 | |
| parser.add_argument('--archive', dest='archive', type=str,
 | |
|                     default=None,
 | |
|                     help='Archive old files to the given directory')
 | |
| parser.add_argument('--archiveweeks', dest='archiveWeeks', type=int,
 | |
|                     default=4,
 | |
|                     help='Specify the number of weeks after which ' +
 | |
|                     'media will be archived')
 | |
| parser.add_argument('--maxposts', dest='archiveMaxPosts', type=int,
 | |
|                     default=32000,
 | |
|                     help='Maximum number of posts in in/outbox')
 | |
| parser.add_argument('--minimumvotes', dest='minimumvotes', type=int,
 | |
|                     default=1,
 | |
|                     help='Minimum number of votes to remove or add' +
 | |
|                     ' a newswire item')
 | |
| parser.add_argument('--max_like_count', dest='max_like_count', type=int,
 | |
|                     default=10,
 | |
|                     help='Maximum number of likes displayed on a post')
 | |
| parser.add_argument('--votingtime', dest='votingtime', type=int,
 | |
|                     default=1440,
 | |
|                     help='Time to vote on newswire items in minutes')
 | |
| parser.add_argument('--message', dest='message', type=str,
 | |
|                     default=None,
 | |
|                     help='Message content')
 | |
| parser.add_argument('--delete', dest='delete', type=str,
 | |
|                     default=None,
 | |
|                     help='Delete a specified post')
 | |
| parser.add_argument("--allowdeletion", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Do not allow deletions")
 | |
| parser.add_argument('--repeat', '--announce', dest='announce', type=str,
 | |
|                     default=None,
 | |
|                     help='Announce/repeat a url')
 | |
| parser.add_argument('--box', type=str,
 | |
|                     default=None,
 | |
|                     help='Returns the json for a given timeline, ' +
 | |
|                     'with authentication')
 | |
| parser.add_argument('--page', '--pageNumber', dest='pageNumber', type=int,
 | |
|                     default=1,
 | |
|                     help='Page number when using the --box option')
 | |
| parser.add_argument('--favorite', '--like', dest='like', type=str,
 | |
|                     default=None, help='Like a url')
 | |
| parser.add_argument('--undolike', '--unlike', dest='undolike', type=str,
 | |
|                     default=None, help='Undo a like of a url')
 | |
| parser.add_argument('--react', '--reaction', dest='react', type=str,
 | |
|                     default=None, help='Reaction url')
 | |
| parser.add_argument('--emoji', type=str,
 | |
|                     default=None, help='Reaction emoji')
 | |
| parser.add_argument('--undoreact', '--undoreaction', dest='undoreact',
 | |
|                     type=str,
 | |
|                     default=None, help='Reaction url')
 | |
| parser.add_argument('--bookmark', '--bm', dest='bookmark', type=str,
 | |
|                     default=None,
 | |
|                     help='Bookmark the url of a post')
 | |
| parser.add_argument('--unbookmark', '--unbm', dest='unbookmark', type=str,
 | |
|                     default=None,
 | |
|                     help='Undo a bookmark given the url of a post')
 | |
| parser.add_argument('--sendto', dest='sendto', type=str,
 | |
|                     default=None, help='Address to send a post to')
 | |
| parser.add_argument('--attach', dest='attach', type=str,
 | |
|                     default=None, help='File to attach to a post')
 | |
| parser.add_argument('--imagedescription', dest='imageDescription', type=str,
 | |
|                     default=None, help='Description of an attached image')
 | |
| parser.add_argument('--city', dest='city', type=str,
 | |
|                     default='London, England',
 | |
|                     help='Spoofed city for image metadata misdirection')
 | |
| parser.add_argument('--warning', '--warn', '--cwsubject', '--subject',
 | |
|                     dest='subject', type=str, default=None,
 | |
|                     help='Subject of content warning')
 | |
| parser.add_argument('--reply', '--replyto', dest='replyto', type=str,
 | |
|                     default=None, help='Url of post to reply to')
 | |
| parser.add_argument("--followersonly", type=str2bool, nargs='?',
 | |
|                     const=True, default=True,
 | |
|                     help="Send to followers only")
 | |
| parser.add_argument("--followerspending", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Show a list of followers pending")
 | |
| parser.add_argument('--approve', dest='approve', type=str, default=None,
 | |
|                     help='Approve a follow request')
 | |
| parser.add_argument('--deny', dest='deny', type=str, default=None,
 | |
|                     help='Deny a follow request')
 | |
| parser.add_argument("-c", "--client", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Use as an ActivityPub client")
 | |
| parser.add_argument('--maxreplies', dest='max_replies', type=int, default=64,
 | |
|                     help='Maximum number of replies to a post')
 | |
| parser.add_argument('--max_mentions', '--hellthread', dest='max_mentions',
 | |
|                     type=int, default=10,
 | |
|                     help='Maximum number of mentions within a post')
 | |
| parser.add_argument('--max_emoji', '--maxemoji', dest='max_emoji',
 | |
|                     type=int, default=10,
 | |
|                     help='Maximum number of emoji within a post')
 | |
| parser.add_argument('--role', dest='role', type=str, default=None,
 | |
|                     help='Set a role for a person')
 | |
| parser.add_argument('--skill', dest='skill', type=str, default=None,
 | |
|                     help='Set a skill for a person')
 | |
| parser.add_argument('--level', dest='skillLevelPercent', type=int,
 | |
|                     default=None,
 | |
|                     help='Set a skill level for a person as a ' +
 | |
|                     'percentage, or zero to remove')
 | |
| parser.add_argument('--status', '--availability', dest='availability',
 | |
|                     type=str, default=None,
 | |
|                     help='Set an availability status')
 | |
| parser.add_argument('--desktop', dest='desktop',
 | |
|                     type=str, default=None,
 | |
|                     help='Run desktop client')
 | |
| parser.add_argument('--block', dest='block', type=str, default=None,
 | |
|                     help='Block a particular address')
 | |
| parser.add_argument('--unblock', dest='unblock', type=str, default=None,
 | |
|                     help='Remove a block on a particular address')
 | |
| parser.add_argument('--mute', dest='mute', type=str, default=None,
 | |
|                     help='Mute a particular post URL')
 | |
| parser.add_argument('--unmute', dest='unmute', type=str, default=None,
 | |
|                     help='Unmute a particular post URL')
 | |
| parser.add_argument('--filter', dest='filterStr', type=str, default=None,
 | |
|                     help='Adds a word or phrase which if present will ' +
 | |
|                     'cause a message to be ignored')
 | |
| parser.add_argument('--unfilter', dest='unfilterStr', type=str, default=None,
 | |
|                     help='Remove a filter on a particular word or phrase')
 | |
| parser.add_argument('--domainmax', dest='domain_max_posts_per_day', type=int,
 | |
|                     default=8640,
 | |
|                     help='Maximum number of received posts ' +
 | |
|                     'from a domain per day')
 | |
| parser.add_argument('--accountmax', dest='account_max_posts_per_day', type=int,
 | |
|                     default=8640,
 | |
|                     help='Maximum number of received posts ' +
 | |
|                     'from an account per day')
 | |
| parser.add_argument('--itemName', dest='itemName', type=str,
 | |
|                     default=None,
 | |
|                     help='Name of an item being shared')
 | |
| parser.add_argument('--undoItemName', dest='undoItemName', type=str,
 | |
|                     default=None,
 | |
|                     help='Name of an shared item to remove')
 | |
| parser.add_argument('--wantedItemName', dest='wantedItemName', type=str,
 | |
|                     default=None,
 | |
|                     help='Name of a wanted item')
 | |
| parser.add_argument('--undoWantedItemName', dest='undoWantedItemName',
 | |
|                     type=str, default=None,
 | |
|                     help='Name of a wanted item to remove')
 | |
| parser.add_argument('--summary', dest='summary', type=str,
 | |
|                     default=None,
 | |
|                     help='Description of an item being shared')
 | |
| parser.add_argument('--itemImage', dest='itemImage', type=str,
 | |
|                     default=None,
 | |
|                     help='Filename of an image for an item being shared')
 | |
| parser.add_argument('--itemQty', dest='itemQty', type=float,
 | |
|                     default=1,
 | |
|                     help='Quantity of items being shared')
 | |
| parser.add_argument('--itemPrice', dest='itemPrice', type=str,
 | |
|                     default="0.00",
 | |
|                     help='Total price of items being shared')
 | |
| parser.add_argument('--itemCurrency', dest='itemCurrency', type=str,
 | |
|                     default="EUR",
 | |
|                     help='Currency of items being shared')
 | |
| parser.add_argument('--itemType', dest='itemType', type=str,
 | |
|                     default=None,
 | |
|                     help='Type of item being shared')
 | |
| parser.add_argument('--itemCategory', dest='itemCategory', type=str,
 | |
|                     default=None,
 | |
|                     help='Category of item being shared')
 | |
| parser.add_argument('--location', dest='location', type=str, default=None,
 | |
|                     help='Location/City of item being shared')
 | |
| parser.add_argument('--duration', dest='duration', type=str, default=None,
 | |
|                     help='Duration for which to share an item')
 | |
| parser.add_argument('--registration', dest='registration', type=str,
 | |
|                     default='open',
 | |
|                     help='Whether new registrations are open or closed')
 | |
| parser.add_argument("--nosharedinbox", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help='Disable shared inbox')
 | |
| parser.add_argument('--maxregistrations', dest='maxRegistrations',
 | |
|                     type=int, default=10,
 | |
|                     help='The maximum number of new registrations')
 | |
| parser.add_argument("--resetregistrations", type=str2bool, nargs='?',
 | |
|                     const=True, default=False,
 | |
|                     help="Reset the number of remaining registrations")
 | |
| 
 | |
| args = parser.parse_args()
 | |
| 
 | |
| debug = False
 | |
| if args.debug:
 | |
|     debug = True
 | |
| else:
 | |
|     if os.path.isfile('debug'):
 | |
|         debug = True
 | |
| 
 | |
| if args.tests:
 | |
|     run_all_tests()
 | |
|     sys.exit()
 | |
| if args.testsnetwork:
 | |
|     print('Network Tests')
 | |
|     base_dir = os.getcwd()
 | |
|     test_shared_items_federation(base_dir)
 | |
|     test_group_follow(base_dir)
 | |
|     test_post_message_between_servers(base_dir)
 | |
|     test_follow_between_servers(base_dir)
 | |
|     test_client_to_server(base_dir)
 | |
|     test_update_actor(base_dir)
 | |
|     print('All tests succeeded')
 | |
|     sys.exit()
 | |
| 
 | |
| http_prefix = 'https'
 | |
| if args.http or args.i2p:
 | |
|     http_prefix = 'http'
 | |
| elif args.gnunet:
 | |
|     http_prefix = 'gnunet'
 | |
| 
 | |
| base_dir = args.base_dir
 | |
| if base_dir.endswith('/'):
 | |
|     print("--path option should not end with '/'")
 | |
|     sys.exit()
 | |
| 
 | |
| if args.import_emoji:
 | |
|     import_filename = args.import_emoji
 | |
|     print('Importing custom emoji from ' + import_filename)
 | |
|     session = create_session(None)
 | |
|     import_emoji(base_dir, import_filename, session)
 | |
|     sys.exit()
 | |
| 
 | |
| # automatic translations
 | |
| if args.libretranslateUrl:
 | |
|     if '://' in args.libretranslateUrl and \
 | |
|        '.' in args.libretranslateUrl:
 | |
|         set_config_param(base_dir, 'libretranslateUrl', args.libretranslateUrl)
 | |
| if args.libretranslateApiKey:
 | |
|     set_config_param(base_dir, 'libretranslateApiKey',
 | |
|                      args.libretranslateApiKey)
 | |
| 
 | |
| if args.posts:
 | |
|     if not args.domain:
 | |
|         originDomain = get_config_param(base_dir, 'domain')
 | |
|     else:
 | |
|         originDomain = args.domain
 | |
|     if debug:
 | |
|         print('originDomain: ' + str(originDomain))
 | |
|     if '@' not in args.posts:
 | |
|         if '/users/' in args.posts:
 | |
|             posts_nickname = get_nickname_from_actor(args.posts)
 | |
|             posts_domain, posts_port = get_domain_from_actor(args.posts)
 | |
|             args.posts = \
 | |
|                 get_full_domain(posts_nickname + '@' + posts_domain,
 | |
|                                 posts_port)
 | |
|         else:
 | |
|             print('Syntax: --posts nickname@domain')
 | |
|             sys.exit()
 | |
|     if not args.http:
 | |
|         args.port = 443
 | |
|     nickname = args.posts.split('@')[0]
 | |
|     domain = args.posts.split('@')[1]
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     if not args.language:
 | |
|         args.language = 'en'
 | |
|     signing_priv_key_pem = get_instance_actor_key(base_dir, originDomain)
 | |
|     get_public_posts_of_person(base_dir, nickname, domain, False, True,
 | |
|                                proxy_type, args.port, http_prefix, debug,
 | |
|                                __version__, args.language,
 | |
|                                signing_priv_key_pem, originDomain)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.postDomains:
 | |
|     if '@' not in args.postDomains:
 | |
|         if '/users/' in args.postDomains:
 | |
|             posts_nickname = get_nickname_from_actor(args.postDomains)
 | |
|             posts_domain, posts_port = get_domain_from_actor(args.postDomains)
 | |
|             args.postDomains = \
 | |
|                 get_full_domain(posts_nickname + '@' + posts_domain,
 | |
|                                 posts_port)
 | |
|         else:
 | |
|             print('Syntax: --postDomains nickname@domain')
 | |
|             sys.exit()
 | |
|     if not args.http:
 | |
|         args.port = 443
 | |
|     nickname = args.postDomains.split('@')[0]
 | |
|     domain = args.postDomains.split('@')[1]
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     word_frequency = {}
 | |
|     domain_list = []
 | |
|     if not args.language:
 | |
|         args.language = 'en'
 | |
|     signing_priv_key_pem = None
 | |
|     if not args.domain:
 | |
|         originDomain = get_config_param(base_dir, 'domain')
 | |
|     else:
 | |
|         originDomain = args.domain
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, originDomain)
 | |
|     domain_list = \
 | |
|         get_public_post_domains(None,
 | |
|                                 base_dir, nickname, domain,
 | |
|                                 originDomain,
 | |
|                                 proxy_type, args.port,
 | |
|                                 http_prefix, debug,
 | |
|                                 __version__,
 | |
|                                 word_frequency, domain_list,
 | |
|                                 args.language,
 | |
|                                 signing_priv_key_pem)
 | |
|     for postDomain in domain_list:
 | |
|         print(postDomain)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.postDomainsBlocked:
 | |
|     # Domains which were referenced in public posts by a
 | |
|     # given handle but which are globally blocked on this instance
 | |
|     if '@' not in args.postDomainsBlocked:
 | |
|         if '/users/' in args.postDomainsBlocked:
 | |
|             posts_nickname = get_nickname_from_actor(args.postDomainsBlocked)
 | |
|             posts_domain, posts_port = \
 | |
|                 get_domain_from_actor(args.postDomainsBlocked)
 | |
|             args.postDomainsBlocked = \
 | |
|                 get_full_domain(posts_nickname + '@' + posts_domain,
 | |
|                                 posts_port)
 | |
|         else:
 | |
|             print('Syntax: --postDomainsBlocked nickname@domain')
 | |
|             sys.exit()
 | |
|     if not args.http:
 | |
|         args.port = 443
 | |
|     nickname = args.postDomainsBlocked.split('@')[0]
 | |
|     domain = args.postDomainsBlocked.split('@')[1]
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     word_frequency = {}
 | |
|     domain_list = []
 | |
|     if not args.language:
 | |
|         args.language = 'en'
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     domain_list = \
 | |
|         get_public_post_domains_blocked(None,
 | |
|                                         base_dir, nickname, domain,
 | |
|                                         proxy_type, args.port,
 | |
|                                         http_prefix, debug,
 | |
|                                         __version__,
 | |
|                                         word_frequency, domain_list,
 | |
|                                         args.language,
 | |
|                                         signing_priv_key_pem)
 | |
|     for postDomain in domain_list:
 | |
|         print(postDomain)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.check_domains:
 | |
|     # Domains which were referenced in public posts by a
 | |
|     # given handle but which are globally blocked on this instance
 | |
|     if '@' not in args.check_domains:
 | |
|         if '/users/' in args.check_domains:
 | |
|             posts_nickname = get_nickname_from_actor(args.posts)
 | |
|             posts_domain, posts_port = get_domain_from_actor(args.posts)
 | |
|             args.check_domains = \
 | |
|                 get_full_domain(posts_nickname + '@' + posts_domain,
 | |
|                                 posts_port)
 | |
|         else:
 | |
|             print('Syntax: --check_domains nickname@domain')
 | |
|             sys.exit()
 | |
|     if not args.http:
 | |
|         args.port = 443
 | |
|     nickname = args.check_domains.split('@')[0]
 | |
|     domain = args.check_domains.split('@')[1]
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     max_blocked_domains = 0
 | |
|     if not args.language:
 | |
|         args.language = 'en'
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     check_domains(None,
 | |
|                   base_dir, nickname, domain,
 | |
|                   proxy_type, args.port,
 | |
|                   http_prefix, debug,
 | |
|                   __version__,
 | |
|                   max_blocked_domains, False, args.language,
 | |
|                   signing_priv_key_pem)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.socnet:
 | |
|     if ',' not in args.socnet:
 | |
|         print('Syntax: '
 | |
|               '--socnet nick1@domain1,nick2@domain2,nick3@domain3')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.http:
 | |
|         args.port = 443
 | |
|     proxy_type = 'tor'
 | |
|     if not args.language:
 | |
|         args.language = 'en'
 | |
|     if not args.domain:
 | |
|         args.domain = get_config_param(base_dir, 'domain')
 | |
|     domain = ''
 | |
|     if args.domain:
 | |
|         domain = args.domain
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     dot_graph = instances_graph(base_dir, args.socnet,
 | |
|                                 proxy_type, args.port,
 | |
|                                 http_prefix, debug,
 | |
|                                 __version__, args.language,
 | |
|                                 signing_priv_key_pem)
 | |
|     try:
 | |
|         with open('socnet.dot', 'w+') as fp_soc:
 | |
|             fp_soc.write(dot_graph)
 | |
|             print('Saved to socnet.dot')
 | |
|     except OSError:
 | |
|         print('EX: commandline unable to write socnet.dot')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.postsraw:
 | |
|     if not args.domain:
 | |
|         originDomain = get_config_param(base_dir, 'domain')
 | |
|     else:
 | |
|         originDomain = args.domain
 | |
|     if debug:
 | |
|         print('originDomain: ' + str(originDomain))
 | |
|     if '@' not in args.postsraw:
 | |
|         print('Syntax: --postsraw nickname@domain')
 | |
|         sys.exit()
 | |
|     if not args.http:
 | |
|         args.port = 443
 | |
|     nickname = args.postsraw.split('@')[0]
 | |
|     domain = args.postsraw.split('@')[1]
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     if not args.language:
 | |
|         args.language = 'en'
 | |
|     signing_priv_key_pem = get_instance_actor_key(base_dir, originDomain)
 | |
|     get_public_posts_of_person(base_dir, nickname, domain, False, False,
 | |
|                                proxy_type, args.port, http_prefix, debug,
 | |
|                                __version__, args.language,
 | |
|                                signing_priv_key_pem, originDomain)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.json:
 | |
|     session = create_session(None)
 | |
|     profile_str = 'https://www.w3.org/ns/activitystreams'
 | |
|     as_header = {
 | |
|         'Accept': 'application/ld+json; profile="' + profile_str + '"'
 | |
|     }
 | |
|     if not args.domain:
 | |
|         args.domain = get_config_param(base_dir, 'domain')
 | |
|     domain = ''
 | |
|     if args.domain:
 | |
|         domain = args.domain
 | |
|     signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     if debug:
 | |
|         print('base_dir: ' + str(base_dir))
 | |
|         if signing_priv_key_pem:
 | |
|             print('Obtained instance actor signing key')
 | |
|         else:
 | |
|             print('Did not obtain instance actor key for ' + domain)
 | |
|     test_json = get_json(signing_priv_key_pem, session, args.json, as_header,
 | |
|                          None, debug, __version__, http_prefix, domain)
 | |
|     if test_json:
 | |
|         pprint(test_json)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.vcard:
 | |
|     session = create_session(None)
 | |
|     if not args.domain:
 | |
|         args.domain = get_config_param(base_dir, 'domain')
 | |
|     domain = ''
 | |
|     if args.domain:
 | |
|         domain = args.domain
 | |
|     test_vcard = get_vcard(False, session, args.vcard,
 | |
|                            None, debug, __version__, http_prefix, domain)
 | |
|     if test_vcard:
 | |
|         print(test_vcard)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.xmlvcard:
 | |
|     session = create_session(None)
 | |
|     if not args.domain:
 | |
|         args.domain = get_config_param(base_dir, 'domain')
 | |
|     domain = ''
 | |
|     if args.domain:
 | |
|         domain = args.domain
 | |
|     test_vcard = get_vcard(True, session, args.xmlvcard,
 | |
|                            None, debug, __version__, http_prefix, domain)
 | |
|     if test_vcard:
 | |
|         print(test_vcard)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.htmlpost:
 | |
|     session = create_session(None)
 | |
|     profile_str = 'https://www.w3.org/ns/activitystreams'
 | |
|     as_header = {
 | |
|         'Accept': 'text/html; profile="' + profile_str + '"'
 | |
|     }
 | |
|     if not args.domain:
 | |
|         args.domain = get_config_param(base_dir, 'domain')
 | |
|     domain = ''
 | |
|     if args.domain:
 | |
|         domain = args.domain
 | |
|     signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     if debug:
 | |
|         print('base_dir: ' + str(base_dir))
 | |
|         if signing_priv_key_pem:
 | |
|             print('Obtained instance actor signing key')
 | |
|         else:
 | |
|             print('Did not obtain instance actor key for ' + domain)
 | |
|     testHtml = download_html(signing_priv_key_pem, session, args.htmlpost,
 | |
|                              as_header, None, debug, __version__,
 | |
|                              http_prefix, domain)
 | |
|     if testHtml:
 | |
|         print(testHtml)
 | |
|     sys.exit()
 | |
| 
 | |
| # create cache for actors
 | |
| if not os.path.isdir(base_dir + '/cache'):
 | |
|     os.mkdir(base_dir + '/cache')
 | |
| if not os.path.isdir(base_dir + '/cache/actors'):
 | |
|     print('Creating actors cache')
 | |
|     os.mkdir(base_dir + '/cache/actors')
 | |
| if not os.path.isdir(base_dir + '/cache/announce'):
 | |
|     print('Creating announce cache')
 | |
|     os.mkdir(base_dir + '/cache/announce')
 | |
| 
 | |
| # set the theme in config.json
 | |
| theme_name = get_config_param(base_dir, 'theme')
 | |
| if not theme_name:
 | |
|     set_config_param(base_dir, 'theme', 'default')
 | |
|     theme_name = 'default'
 | |
| 
 | |
| if not args.mediainstance:
 | |
|     media_instance = get_config_param(base_dir, 'mediaInstance')
 | |
|     if media_instance is not None:
 | |
|         args.mediainstance = media_instance
 | |
|         if args.mediainstance:
 | |
|             args.blogsinstance = False
 | |
|             args.newsinstance = False
 | |
| 
 | |
| if not args.newsinstance:
 | |
|     news_instance = get_config_param(base_dir, 'newsInstance')
 | |
|     if news_instance is not None:
 | |
|         args.newsinstance = news_instance
 | |
|         if args.newsinstance:
 | |
|             args.blogsinstance = False
 | |
|             args.mediainstance = False
 | |
| 
 | |
| if not args.blogsinstance:
 | |
|     blogs_instance = get_config_param(base_dir, 'blogsInstance')
 | |
|     if blogs_instance is not None:
 | |
|         args.blogsinstance = blogs_instance
 | |
|         if args.blogsinstance:
 | |
|             args.mediainstance = False
 | |
|             args.newsinstance = False
 | |
| 
 | |
| # set the instance title in config.json
 | |
| title = get_config_param(base_dir, 'instanceTitle')
 | |
| if not title:
 | |
|     set_config_param(base_dir, 'instanceTitle', 'Epicyon')
 | |
| 
 | |
| # set the instance description in config.json
 | |
| descFull = get_config_param(base_dir, 'instanceDescription')
 | |
| if not descFull:
 | |
|     set_config_param(base_dir, 'instanceDescription',
 | |
|                      'Just another ActivityPub server')
 | |
| 
 | |
| # set the short instance description in config.json
 | |
| descShort = get_config_param(base_dir, 'instanceDescriptionShort')
 | |
| if not descShort:
 | |
|     set_config_param(base_dir, 'instanceDescriptionShort',
 | |
|                      'Just another ActivityPub server')
 | |
| 
 | |
| if args.domain:
 | |
|     domain = args.domain
 | |
|     set_config_param(base_dir, 'domain', domain)
 | |
| 
 | |
| if args.rss:
 | |
|     session = create_session(None)
 | |
|     testRSS = get_rss(base_dir, domain, session, args.rss,
 | |
|                       False, False, 1000, 1000, 1000, 1000, debug)
 | |
|     pprint(testRSS)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.onion:
 | |
|     if not args.onion.endswith('.onion'):
 | |
|         print(args.onion + ' does not look like an onion domain')
 | |
|         sys.exit()
 | |
|     if '://' in args.onion:
 | |
|         args.onion = args.onion.split('://')[1]
 | |
|     onion_domain = args.onion
 | |
|     set_config_param(base_dir, 'onion', onion_domain)
 | |
| 
 | |
| i2p_domain = None
 | |
| if args.i2p_domain:
 | |
|     if not args.i2p_domain.endswith('.i2p'):
 | |
|         print(args.i2p_domain + ' does not look like an i2p domain')
 | |
|         sys.exit()
 | |
|     if '://' in args.i2p_domain:
 | |
|         args.onion = args.onion.split('://')[1]
 | |
|     i2p_domain = args.i2p_domain
 | |
|     set_config_param(base_dir, 'i2pDomain', i2p_domain)
 | |
| 
 | |
| if not args.language:
 | |
|     languageCode = get_config_param(base_dir, 'language')
 | |
|     if languageCode:
 | |
|         args.language = languageCode
 | |
|     else:
 | |
|         args.language = 'en'
 | |
| 
 | |
| # maximum number of new registrations
 | |
| if not args.maxRegistrations:
 | |
|     maxRegistrations = get_config_param(base_dir, 'maxRegistrations')
 | |
|     if not maxRegistrations:
 | |
|         maxRegistrations = 10
 | |
|         set_config_param(base_dir, 'maxRegistrations', str(maxRegistrations))
 | |
|     else:
 | |
|         maxRegistrations = int(maxRegistrations)
 | |
| else:
 | |
|     maxRegistrations = args.maxRegistrations
 | |
|     set_config_param(base_dir, 'maxRegistrations', str(maxRegistrations))
 | |
| 
 | |
| # if this is the initial run then allow new registrations
 | |
| if not get_config_param(base_dir, 'registration'):
 | |
|     if args.registration.lower() == 'open':
 | |
|         set_config_param(base_dir, 'registration', 'open')
 | |
|         set_config_param(base_dir, 'maxRegistrations', str(maxRegistrations))
 | |
|         set_config_param(base_dir, 'registrationsRemaining',
 | |
|                          str(maxRegistrations))
 | |
| 
 | |
| if args.resetregistrations:
 | |
|     set_config_param(base_dir, 'registrationsRemaining', str(maxRegistrations))
 | |
|     print('Number of new registrations reset to ' + str(maxRegistrations))
 | |
| 
 | |
| # unique ID for the instance
 | |
| instance_id = get_config_param(base_dir, 'instanceId')
 | |
| if not instance_id:
 | |
|     instance_id = create_password(32)
 | |
|     set_config_param(base_dir, 'instanceId', instance_id)
 | |
|     print('Instance ID: ' + instance_id)
 | |
| 
 | |
| # get domain name from configuration
 | |
| configDomain = get_config_param(base_dir, 'domain')
 | |
| if configDomain:
 | |
|     domain = configDomain
 | |
| else:
 | |
|     domain = 'localhost'
 | |
| 
 | |
| # get onion domain name from configuration
 | |
| configOnionDomain = get_config_param(base_dir, 'onion')
 | |
| if configOnionDomain:
 | |
|     onion_domain = configOnionDomain
 | |
| else:
 | |
|     onion_domain = None
 | |
| 
 | |
| # get i2p domain name from configuration
 | |
| configi2p_domain = get_config_param(base_dir, 'i2pDomain')
 | |
| if configi2p_domain:
 | |
|     i2p_domain = configi2p_domain
 | |
| else:
 | |
|     i2p_domain = None
 | |
| 
 | |
| # get port number from configuration
 | |
| configPort = get_config_param(base_dir, 'port')
 | |
| if configPort:
 | |
|     port = configPort
 | |
| else:
 | |
|     if domain.endswith('.onion') or \
 | |
|        domain.endswith('.i2p'):
 | |
|         port = 80
 | |
|     else:
 | |
|         port = 443
 | |
| 
 | |
| configProxyPort = get_config_param(base_dir, 'proxyPort')
 | |
| if configProxyPort:
 | |
|     proxy_port = configProxyPort
 | |
| else:
 | |
|     proxy_port = port
 | |
| 
 | |
| nickname = None
 | |
| if args.nickname:
 | |
|     nickname = nickname
 | |
| 
 | |
| federation_list = []
 | |
| if args.federation_list:
 | |
|     if len(args.federation_list) == 1:
 | |
|         if not (args.federation_list[0].lower() == 'any' or
 | |
|                 args.federation_list[0].lower() == 'all' or
 | |
|                 args.federation_list[0].lower() == '*'):
 | |
|             for federationDomain in args.federation_list:
 | |
|                 if '@' in federationDomain:
 | |
|                     print(federationDomain +
 | |
|                           ': Federate with domains, not individual accounts')
 | |
|                     sys.exit()
 | |
|             federation_list = args.federation_list.copy()
 | |
|         set_config_param(base_dir, 'federationList', federation_list)
 | |
| else:
 | |
|     configFederationList = get_config_param(base_dir, 'federationList')
 | |
|     if configFederationList:
 | |
|         federation_list = configFederationList
 | |
| 
 | |
| proxy_type = None
 | |
| if args.tor or domain.endswith('.onion'):
 | |
|     proxy_type = 'tor'
 | |
| elif args.i2p or domain.endswith('.i2p'):
 | |
|     proxy_type = 'i2p'
 | |
| elif args.gnunet:
 | |
|     proxy_type = 'gnunet'
 | |
| 
 | |
| if args.approve:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
|     if '@' not in args.approve:
 | |
|         print('syntax: --approve nick@domain')
 | |
|         sys.exit()
 | |
|     session_onion = None
 | |
|     session_i2p = None
 | |
|     session = create_session(proxy_type)
 | |
|     send_threads = []
 | |
|     postLog = []
 | |
|     cached_webfingers = {}
 | |
|     person_cache = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     onion_domain = get_config_param(base_dir, 'onionDomain')
 | |
|     if args.onion:
 | |
|         onion_domain = args.onion
 | |
|     if onion_domain:
 | |
|         session_onion = create_session('tor')
 | |
|     i2p_domain = get_config_param(base_dir, 'i2pDomain')
 | |
|     if args.i2p_domain:
 | |
|         i2p_domain = args.i2p_domain
 | |
|     if i2p_domain:
 | |
|         session_i2p = create_session('i2p')
 | |
|     manual_approve_follow_request(session, session_onion, session_i2p,
 | |
|                                   onion_domain, i2p_domain,
 | |
|                                   base_dir, http_prefix,
 | |
|                                   args.nickname, domain, port,
 | |
|                                   args.approve,
 | |
|                                   federation_list,
 | |
|                                   send_threads, postLog,
 | |
|                                   cached_webfingers, person_cache,
 | |
|                                   debug, __version__,
 | |
|                                   signing_priv_key_pem, proxy_type)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.deny:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
|     if '@' not in args.deny:
 | |
|         print('syntax: --deny nick@domain')
 | |
|         sys.exit()
 | |
|     session_onion = None
 | |
|     session_i2p = None
 | |
|     session = create_session(proxy_type)
 | |
|     send_threads = []
 | |
|     postLog = []
 | |
|     cached_webfingers = {}
 | |
|     person_cache = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     onion_domain = get_config_param(base_dir, 'onionDomain')
 | |
|     if args.onion:
 | |
|         onion_domain = args.onion
 | |
|     if onion_domain:
 | |
|         session_onion = create_session('tor')
 | |
|     i2p_domain = get_config_param(base_dir, 'i2pDomain')
 | |
|     if args.i2p_domain:
 | |
|         i2p_domain = args.i2p_domain
 | |
|     if i2p_domain:
 | |
|         session_i2p = create_session('i2p')
 | |
|     manual_deny_follow_request(session, session_onion, session_i2p,
 | |
|                                onion_domain, i2p_domain,
 | |
|                                base_dir, http_prefix,
 | |
|                                args.nickname, domain, port,
 | |
|                                args.deny,
 | |
|                                federation_list,
 | |
|                                send_threads, postLog,
 | |
|                                cached_webfingers, person_cache,
 | |
|                                debug, __version__,
 | |
|                                signing_priv_key_pem)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.followerspending:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     accounts_dir = acct_dir(base_dir, args.nickname, domain)
 | |
|     approve_follows_filename = accounts_dir + '/followrequests.txt'
 | |
|     approve_ctr = 0
 | |
|     if os.path.isfile(approve_follows_filename):
 | |
|         with open(approve_follows_filename, 'r') as approvefile:
 | |
|             for approve in approvefile:
 | |
|                 print(approve.replace('\n', '').replace('\r', ''))
 | |
|                 approve_ctr += 1
 | |
|     if approve_ctr == 0:
 | |
|         print('There are no follow requests pending approval.')
 | |
|     sys.exit()
 | |
| 
 | |
| 
 | |
| if args.message:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if args.eventDate:
 | |
|         if '-' not in args.eventDate or len(args.eventDate) != 10:
 | |
|             print('Event date format should be YYYY-MM-DD')
 | |
|             sys.exit()
 | |
| 
 | |
|     if args.eventTime:
 | |
|         if ':' not in args.eventTime or len(args.eventTime) != 5:
 | |
|             print('Event time format should be HH:MM')
 | |
|             sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     if not args.sendto:
 | |
|         print('Specify an account to sent to: --sendto [nickname@domain]')
 | |
|         sys.exit()
 | |
|     if '@' not in args.sendto and \
 | |
|        not args.sendto.lower().endswith('public') and \
 | |
|        not args.sendto.lower().endswith('followers'):
 | |
|         print('syntax: --sendto [nickname@domain]')
 | |
|         print('        --sendto public')
 | |
|         print('        --sendto followers')
 | |
|         sys.exit()
 | |
|     if '@' in args.sendto:
 | |
|         to_nickname = args.sendto.split('@')[0]
 | |
|         to_domain = args.sendto.split('@')[1]
 | |
|         to_domain = to_domain.replace('\n', '').replace('\r', '')
 | |
|         to_port = 443
 | |
|         if ':' in to_domain:
 | |
|             to_port = get_port_from_domain(to_domain)
 | |
|             to_domain = remove_domain_port(to_domain)
 | |
|     else:
 | |
|         if args.sendto.endswith('followers'):
 | |
|             to_nickname = None
 | |
|             to_domain = 'followers'
 | |
|             to_port = port
 | |
|         else:
 | |
|             to_nickname = None
 | |
|             to_domain = 'public'
 | |
|             to_port = port
 | |
| 
 | |
|     cc_url = None
 | |
|     sendMessage = args.message
 | |
|     followers_only = args.followersonly
 | |
|     client_to_server = args.client
 | |
|     attached_image_description = args.imageDescription
 | |
|     city = 'London, England'
 | |
|     send_threads = []
 | |
|     postLog = []
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     subject = args.subject
 | |
|     attach = args.attach
 | |
|     media_type = None
 | |
|     if attach:
 | |
|         media_type = get_attachment_media_type(attach)
 | |
|     reply_to = args.replyto
 | |
|     followers_only = False
 | |
|     is_article = False
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     languages_understood = [args.language]
 | |
|     if args.languages_understood:
 | |
|         languages_understood = [args.languages_understood]
 | |
| 
 | |
|     print('Sending post to ' + args.sendto)
 | |
|     send_post_via_server(signing_priv_key_pem, __version__,
 | |
|                          base_dir, session, args.nickname, args.password,
 | |
|                          domain, port,
 | |
|                          to_nickname, to_domain, to_port, cc_url,
 | |
|                          http_prefix, sendMessage, followers_only,
 | |
|                          args.commentsEnabled, attach, media_type,
 | |
|                          attached_image_description, city,
 | |
|                          cached_webfingers, person_cache, is_article,
 | |
|                          args.language, languages_understood,
 | |
|                          args.low_bandwidth,
 | |
|                          args.content_license_url,
 | |
|                          args.eventDate, args.eventTime, args.eventLocation,
 | |
|                          args.debug,
 | |
|                          reply_to, reply_to, args.conversationId, subject)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.dav:
 | |
|     if not args.nickname:
 | |
|         print('Please specify a nickname with --nickname')
 | |
|         sys.exit()
 | |
|     if not args.domain:
 | |
|         print('Please specify a domain with --domain')
 | |
|         sys.exit()
 | |
|     if not args.year:
 | |
|         print('Please specify a year with --year')
 | |
|         sys.exit()
 | |
|     if not args.month:
 | |
|         print('Please specify a month with --month')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     session = create_session(proxy_type)
 | |
|     if args.day:
 | |
|         result = \
 | |
|             dav_day_via_server(session, http_prefix,
 | |
|                                args.nickname, args.domain, args.port,
 | |
|                                args.debug,
 | |
|                                args.year, args.month, args.day,
 | |
|                                args.password)
 | |
|     else:
 | |
|         result = \
 | |
|             dav_month_via_server(session, http_prefix,
 | |
|                                  args.nickname, args.domain, args.port,
 | |
|                                  args.debug,
 | |
|                                  args.year, args.month,
 | |
|                                  args.password)
 | |
|     if result:
 | |
|         print(str(result))
 | |
|     sys.exit()
 | |
| 
 | |
| if args.announce:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending announce/repeat of ' + args.announce)
 | |
| 
 | |
|     send_announce_via_server(base_dir, session, args.nickname, args.password,
 | |
|                              domain, port,
 | |
|                              http_prefix, args.announce,
 | |
|                              cached_webfingers, person_cache,
 | |
|                              True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.box:
 | |
|     if not domain:
 | |
|         print('Specify a domain with the --domain option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     box_json = c2s_box_json(base_dir, session,
 | |
|                             args.nickname, args.password,
 | |
|                             domain, port, http_prefix,
 | |
|                             args.box, args.pageNumber,
 | |
|                             args.debug, signing_priv_key_pem)
 | |
|     if box_json:
 | |
|         pprint(box_json)
 | |
|     else:
 | |
|         print('Box not found: ' + args.box)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.itemName:
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.summary:
 | |
|         print('Specify a description for your shared item ' +
 | |
|               'with the --summary option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.itemQty:
 | |
|         print('Specify a quantity of shared items with the --itemQty option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.itemType:
 | |
|         print('Specify a type of shared item with the --itemType option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.itemCategory:
 | |
|         print('Specify a category of shared item ' +
 | |
|               'with the --itemCategory option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.location:
 | |
|         print('Specify a location or city where the shared ' +
 | |
|               'item resides with the --location option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.duration:
 | |
|         print('Specify a duration to share the object ' +
 | |
|               'with the --duration option')
 | |
|         sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending shared item: ' + args.itemName)
 | |
| 
 | |
|     send_share_via_server(base_dir, session,
 | |
|                           args.nickname, args.password,
 | |
|                           domain, port,
 | |
|                           http_prefix,
 | |
|                           args.itemName,
 | |
|                           args.summary,
 | |
|                           args.itemImage,
 | |
|                           args.itemQty,
 | |
|                           args.itemType,
 | |
|                           args.itemCategory,
 | |
|                           args.location,
 | |
|                           args.duration,
 | |
|                           cached_webfingers, person_cache,
 | |
|                           debug, __version__,
 | |
|                           args.itemPrice, args.itemCurrency,
 | |
|                           signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.undoItemName:
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo of shared item: ' + args.undoItemName)
 | |
| 
 | |
|     send_undo_share_via_server(base_dir, session,
 | |
|                                args.nickname, args.password,
 | |
|                                domain, port,
 | |
|                                http_prefix,
 | |
|                                args.undoItemName,
 | |
|                                cached_webfingers, person_cache,
 | |
|                                debug, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.wantedItemName:
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.summary:
 | |
|         print('Specify a description for your shared item ' +
 | |
|               'with the --summary option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.itemQty:
 | |
|         print('Specify a quantity of shared items with the --itemQty option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.itemType:
 | |
|         print('Specify a type of shared item with the --itemType option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.itemCategory:
 | |
|         print('Specify a category of shared item ' +
 | |
|               'with the --itemCategory option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.location:
 | |
|         print('Specify a location or city where the wanted ' +
 | |
|               'item resides with the --location option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.duration:
 | |
|         print('Specify a duration to share the object ' +
 | |
|               'with the --duration option')
 | |
|         sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending wanted item: ' + args.wantedItemName)
 | |
| 
 | |
|     send_wanted_via_server(base_dir, session,
 | |
|                            args.nickname, args.password,
 | |
|                            domain, port,
 | |
|                            http_prefix,
 | |
|                            args.wantedItemName,
 | |
|                            args.summary,
 | |
|                            args.itemImage,
 | |
|                            args.itemQty,
 | |
|                            args.itemType,
 | |
|                            args.itemCategory,
 | |
|                            args.location,
 | |
|                            args.duration,
 | |
|                            cached_webfingers, person_cache,
 | |
|                            debug, __version__,
 | |
|                            args.itemPrice, args.itemCurrency,
 | |
|                            signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.undoWantedItemName:
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo of wanted item: ' + args.undoWantedItemName)
 | |
| 
 | |
|     send_undo_wanted_via_server(base_dir, session,
 | |
|                                 args.nickname, args.password,
 | |
|                                 domain, port,
 | |
|                                 http_prefix,
 | |
|                                 args.undoWantedItemName,
 | |
|                                 cached_webfingers, person_cache,
 | |
|                                 debug, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.like:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending like of ' + args.like)
 | |
| 
 | |
|     send_like_via_server(base_dir, session,
 | |
|                          args.nickname, args.password,
 | |
|                          domain, port,
 | |
|                          http_prefix, args.like,
 | |
|                          cached_webfingers, person_cache,
 | |
|                          True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.react:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
|     if not args.emoji:
 | |
|         print('Specify a reaction emoji with the --emoji option')
 | |
|         sys.exit()
 | |
|     if not valid_emoji_content(args.emoji):
 | |
|         print('This is not a valid emoji')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending emoji reaction ' + args.emoji + ' to ' + args.react)
 | |
| 
 | |
|     send_reaction_via_server(base_dir, session,
 | |
|                              args.nickname, args.password,
 | |
|                              domain, port,
 | |
|                              http_prefix, args.react, args.emoji,
 | |
|                              cached_webfingers, person_cache,
 | |
|                              True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.undolike:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo like of ' + args.undolike)
 | |
| 
 | |
|     send_undo_like_via_server(base_dir, session,
 | |
|                               args.nickname, args.password,
 | |
|                               domain, port,
 | |
|                               http_prefix, args.undolike,
 | |
|                               cached_webfingers, person_cache,
 | |
|                               True, __version__,
 | |
|                               signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.undoreact:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
|     if not args.emoji:
 | |
|         print('Specify a reaction emoji with the --emoji option')
 | |
|         sys.exit()
 | |
|     if not valid_emoji_content(args.emoji):
 | |
|         print('This is not a valid emoji')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo emoji reaction ' + args.emoji + ' to ' + args.react)
 | |
| 
 | |
|     send_undo_reaction_via_server(base_dir, session,
 | |
|                                   args.nickname, args.password,
 | |
|                                   domain, port,
 | |
|                                   http_prefix, args.undoreact, args.emoji,
 | |
|                                   cached_webfingers, person_cache,
 | |
|                                   True, __version__,
 | |
|                                   signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.bookmark:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending bookmark of ' + args.bookmark)
 | |
| 
 | |
|     send_bookmark_via_server(base_dir, session,
 | |
|                              args.nickname, args.password,
 | |
|                              domain, port,
 | |
|                              http_prefix, args.bookmark,
 | |
|                              cached_webfingers, person_cache,
 | |
|                              True, __version__,
 | |
|                              signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.unbookmark:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo bookmark of ' + args.unbookmark)
 | |
| 
 | |
|     send_undo_bookmark_via_server(base_dir, session,
 | |
|                                   args.nickname, args.password,
 | |
|                                   domain, port,
 | |
|                                   http_prefix, args.unbookmark,
 | |
|                                   cached_webfingers, person_cache,
 | |
|                                   True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.delete:
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending delete request of ' + args.delete)
 | |
| 
 | |
|     send_delete_via_server(base_dir, session,
 | |
|                            args.nickname, args.password,
 | |
|                            domain, port,
 | |
|                            http_prefix, args.delete,
 | |
|                            cached_webfingers, person_cache,
 | |
|                            True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.follow:
 | |
|     # follow via c2s protocol
 | |
|     if '.' not in args.follow:
 | |
|         print("This doesn't look like a fediverse handle")
 | |
|         sys.exit()
 | |
|     if not args.nickname:
 | |
|         print('Please specify the nickname for the account with --nickname')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     follow_nickname = get_nickname_from_actor(args.follow)
 | |
|     if not follow_nickname:
 | |
|         print('Unable to find nickname in ' + args.follow)
 | |
|         sys.exit()
 | |
|     follow_domain, follow_port = get_domain_from_actor(args.follow)
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     follow_http_prefix = http_prefix
 | |
|     if args.follow.startswith('https'):
 | |
|         follow_http_prefix = 'https'
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
| 
 | |
|     send_follow_request_via_server(base_dir, session,
 | |
|                                    args.nickname, args.password,
 | |
|                                    domain, port,
 | |
|                                    follow_nickname, follow_domain, follow_port,
 | |
|                                    follow_http_prefix,
 | |
|                                    cached_webfingers, person_cache,
 | |
|                                    debug, __version__, signing_priv_key_pem)
 | |
|     for t in range(20):
 | |
|         time.sleep(1)
 | |
|         # TODO some method to know if it worked
 | |
|     print('Ok')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.unfollow:
 | |
|     # unfollow via c2s protocol
 | |
|     if '.' not in args.follow:
 | |
|         print("This doesn't look like a fediverse handle")
 | |
|         sys.exit()
 | |
|     if not args.nickname:
 | |
|         print('Please specify the nickname for the account with --nickname')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     follow_nickname = get_nickname_from_actor(args.unfollow)
 | |
|     if not follow_nickname:
 | |
|         print('WARN: unable to find nickname in ' + args.unfollow)
 | |
|         sys.exit()
 | |
|     follow_domain, follow_port = get_domain_from_actor(args.unfollow)
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     follow_http_prefix = http_prefix
 | |
|     if args.follow.startswith('https'):
 | |
|         follow_http_prefix = 'https'
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
| 
 | |
|     send_unfollow_request_via_server(base_dir, session,
 | |
|                                      args.nickname, args.password,
 | |
|                                      domain, port,
 | |
|                                      follow_nickname, follow_domain,
 | |
|                                      follow_port, follow_http_prefix,
 | |
|                                      cached_webfingers, person_cache,
 | |
|                                      debug, __version__, signing_priv_key_pem)
 | |
|     for t in range(20):
 | |
|         time.sleep(1)
 | |
|         # TODO some method to know if it worked
 | |
|     print('Ok')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.followingList:
 | |
|     # following list via c2s protocol
 | |
|     if not args.nickname:
 | |
|         print('Please specify the nickname for the account with --nickname')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     follow_http_prefix = http_prefix
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
| 
 | |
|     following_json = \
 | |
|         get_following_via_server(base_dir, session,
 | |
|                                  args.nickname, args.password,
 | |
|                                  domain, port,
 | |
|                                  follow_http_prefix, args.pageNumber,
 | |
|                                  cached_webfingers, person_cache,
 | |
|                                  debug, __version__, signing_priv_key_pem)
 | |
|     if following_json:
 | |
|         pprint(following_json)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.followersList:
 | |
|     # following list via c2s protocol
 | |
|     if not args.nickname:
 | |
|         print('Please specify the nickname for the account with --nickname')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     follow_http_prefix = http_prefix
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
| 
 | |
|     followers_json = \
 | |
|         get_followers_via_server(base_dir, session,
 | |
|                                  args.nickname, args.password,
 | |
|                                  domain, port,
 | |
|                                  follow_http_prefix, args.pageNumber,
 | |
|                                  cached_webfingers, person_cache,
 | |
|                                  debug, __version__,
 | |
|                                  signing_priv_key_pem)
 | |
|     if followers_json:
 | |
|         pprint(followers_json)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.followRequestsList:
 | |
|     # follow requests list via c2s protocol
 | |
|     if not args.nickname:
 | |
|         print('Please specify the nickname for the account with --nickname')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     follow_http_prefix = http_prefix
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
| 
 | |
|     follow_requests_json = \
 | |
|         get_follow_requests_via_server(base_dir, session,
 | |
|                                        args.nickname, args.password,
 | |
|                                        domain, port,
 | |
|                                        follow_http_prefix, args.pageNumber,
 | |
|                                        cached_webfingers, person_cache,
 | |
|                                        debug, __version__,
 | |
|                                        signing_priv_key_pem)
 | |
|     if follow_requests_json:
 | |
|         pprint(follow_requests_json)
 | |
|     sys.exit()
 | |
| 
 | |
| nickname = 'admin'
 | |
| if args.domain:
 | |
|     domain = args.domain
 | |
|     set_config_param(base_dir, 'domain', domain)
 | |
| if args.port:
 | |
|     port = args.port
 | |
|     set_config_param(base_dir, 'port', port)
 | |
| if args.proxy_port:
 | |
|     proxy_port = args.proxy_port
 | |
|     set_config_param(base_dir, 'proxyPort', proxy_port)
 | |
| if args.gnunet:
 | |
|     http_prefix = 'gnunet'
 | |
| if args.dat or args.hyper:
 | |
|     http_prefix = 'hyper'
 | |
| if args.i2p:
 | |
|     http_prefix = 'http'
 | |
| 
 | |
| if args.migrations:
 | |
|     cached_webfingers = {}
 | |
|     if args.http or domain.endswith('.onion'):
 | |
|         http_prefix = 'http'
 | |
|         port = 80
 | |
|         proxy_type = 'tor'
 | |
|     elif domain.endswith('.i2p'):
 | |
|         http_prefix = 'http'
 | |
|         port = 80
 | |
|         proxy_type = 'i2p'
 | |
|     elif args.gnunet:
 | |
|         http_prefix = 'gnunet'
 | |
|         port = 80
 | |
|         proxy_type = 'gnunet'
 | |
|     else:
 | |
|         http_prefix = 'https'
 | |
|         port = 443
 | |
|     session = create_session(proxy_type)
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     ctr = migrate_accounts(base_dir, session,
 | |
|                            http_prefix, cached_webfingers,
 | |
|                            True, signing_priv_key_pem)
 | |
|     if ctr == 0:
 | |
|         print('No followed accounts have moved')
 | |
|     else:
 | |
|         print(str(ctr) + ' followed accounts were migrated')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.actor:
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     if debug:
 | |
|         print('base_dir: ' + str(base_dir))
 | |
|         if signing_priv_key_pem:
 | |
|             print('Obtained instance actor signing key')
 | |
|         else:
 | |
|             print('Did not obtain instance actor key for ' + domain)
 | |
|     get_actor_json(domain, args.actor, args.http, args.gnunet,
 | |
|                    debug, False, signing_priv_key_pem, None)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.followers:
 | |
|     originalActor = args.followers
 | |
|     if '/@' in args.followers or \
 | |
|        '/users/' in args.followers or \
 | |
|        args.followers.startswith('http') or \
 | |
|        args.followers.startswith('hyper'):
 | |
|         # format: https://domain/@nick
 | |
|         prefixes = get_protocol_prefixes()
 | |
|         for prefix in prefixes:
 | |
|             args.followers = args.followers.replace(prefix, '')
 | |
|         args.followers = args.followers.replace('/@', '/users/')
 | |
|         if not has_users_path(args.followers):
 | |
|             print('Expected actor format: ' +
 | |
|                   'https://domain/@nick or https://domain/users/nick')
 | |
|             sys.exit()
 | |
|         if '/users/' in args.followers:
 | |
|             nickname = args.followers.split('/users/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/users/')[0]
 | |
|         elif '/profile/' in args.followers:
 | |
|             nickname = args.followers.split('/profile/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/profile/')[0]
 | |
|         elif '/author/' in args.followers:
 | |
|             nickname = args.followers.split('/author/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/author/')[0]
 | |
|         elif '/channel/' in args.followers:
 | |
|             nickname = args.followers.split('/channel/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/channel/')[0]
 | |
|         elif '/accounts/' in args.followers:
 | |
|             nickname = args.followers.split('/accounts/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/accounts/')[0]
 | |
|         elif '/u/' in args.followers:
 | |
|             nickname = args.followers.split('/u/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/u/')[0]
 | |
|         elif '/c/' in args.followers:
 | |
|             nickname = args.followers.split('/c/')[1]
 | |
|             nickname = nickname.replace('\n', '').replace('\r', '')
 | |
|             domain = args.followers.split('/c/')[0]
 | |
|     else:
 | |
|         # format: @nick@domain
 | |
|         if '@' not in args.followers:
 | |
|             print('Syntax: --actor nickname@domain')
 | |
|             sys.exit()
 | |
|         if args.followers.startswith('@'):
 | |
|             args.followers = args.followers[1:]
 | |
|         if '@' not in args.followers:
 | |
|             print('Syntax: --actor nickname@domain')
 | |
|             sys.exit()
 | |
|         nickname = args.followers.split('@')[0]
 | |
|         domain = args.followers.split('@')[1]
 | |
|         domain = domain.replace('\n', '').replace('\r', '')
 | |
|     cached_webfingers = {}
 | |
|     if args.http or domain.endswith('.onion'):
 | |
|         http_prefix = 'http'
 | |
|         port = 80
 | |
|         proxy_type = 'tor'
 | |
|     elif domain.endswith('.i2p'):
 | |
|         http_prefix = 'http'
 | |
|         port = 80
 | |
|         proxy_type = 'i2p'
 | |
|     elif args.gnunet:
 | |
|         http_prefix = 'gnunet'
 | |
|         port = 80
 | |
|         proxy_type = 'gnunet'
 | |
|     else:
 | |
|         http_prefix = 'https'
 | |
|         port = 443
 | |
|     session = create_session(proxy_type)
 | |
|     if nickname == 'inbox':
 | |
|         nickname = domain
 | |
| 
 | |
|     hostDomain = None
 | |
|     if args.domain:
 | |
|         hostDomain = args.domain
 | |
|     handle = nickname + '@' + domain
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     wf_request = webfinger_handle(session, handle,
 | |
|                                   http_prefix, cached_webfingers,
 | |
|                                   hostDomain, __version__, debug, False,
 | |
|                                   signing_priv_key_pem)
 | |
|     if not wf_request:
 | |
|         print('Unable to webfinger ' + handle)
 | |
|         sys.exit()
 | |
|     if not isinstance(wf_request, dict):
 | |
|         print('Webfinger for ' + handle + ' did not return a dict. ' +
 | |
|               str(wf_request))
 | |
|         sys.exit()
 | |
| 
 | |
|     person_url = None
 | |
|     if wf_request.get('errors'):
 | |
|         print('wf_request error: ' + str(wf_request['errors']))
 | |
|         if has_users_path(args.followers):
 | |
|             person_url = originalActor
 | |
|         else:
 | |
|             sys.exit()
 | |
| 
 | |
|     profile_str = 'https://www.w3.org/ns/activitystreams'
 | |
|     as_header = {
 | |
|         'Accept': 'application/activity+json; profile="' + profile_str + '"'
 | |
|     }
 | |
|     if not person_url:
 | |
|         person_url = get_user_url(wf_request, 0, args.debug)
 | |
|     if nickname == domain:
 | |
|         person_url = person_url.replace('/users/', '/actor/')
 | |
|         person_url = person_url.replace('/accounts/', '/actor/')
 | |
|         person_url = person_url.replace('/channel/', '/actor/')
 | |
|         person_url = person_url.replace('/profile/', '/actor/')
 | |
|         person_url = person_url.replace('/author/', '/actor/')
 | |
|         person_url = person_url.replace('/u/', '/actor/')
 | |
|         person_url = person_url.replace('/c/', '/actor/')
 | |
|     if not person_url:
 | |
|         # try single user instance
 | |
|         person_url = http_prefix + '://' + domain
 | |
|         profile_str = 'https://www.w3.org/ns/activitystreams'
 | |
|         as_header = {
 | |
|             'Accept': 'application/ld+json; profile="' + profile_str + '"'
 | |
|         }
 | |
|     if '/channel/' in person_url or '/accounts/' in person_url:
 | |
|         profile_str = 'https://www.w3.org/ns/activitystreams'
 | |
|         as_header = {
 | |
|             'Accept': 'application/ld+json; profile="' + profile_str + '"'
 | |
|         }
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     followers_list = \
 | |
|         download_follow_collection(signing_priv_key_pem,
 | |
|                                    'followers', session,
 | |
|                                    http_prefix, person_url, 1, 3, args.debug)
 | |
|     if followers_list:
 | |
|         for actor in followers_list:
 | |
|             print(actor)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.addaccount:
 | |
|     if '@' in args.addaccount:
 | |
|         nickname = args.addaccount.split('@')[0]
 | |
|         domain = args.addaccount.split('@')[1]
 | |
|     else:
 | |
|         nickname = args.addaccount
 | |
|         if not args.domain or not get_config_param(base_dir, 'domain'):
 | |
|             print('Use the --domain option to set the domain name')
 | |
|             sys.exit()
 | |
| 
 | |
|     configured_domain = get_config_param(base_dir, 'domain')
 | |
|     if configured_domain:
 | |
|         if domain != configured_domain:
 | |
|             print('The account domain is expected to be ' + configured_domain)
 | |
|             sys.exit()
 | |
| 
 | |
|     if not valid_nickname(domain, nickname):
 | |
|         print(nickname + ' is a reserved name. Use something different.')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
|     if len(args.password.strip()) < 8:
 | |
|         print('Password should be at least 8 characters')
 | |
|         sys.exit()
 | |
|     account_dir = acct_dir(base_dir, nickname, domain)
 | |
|     if os.path.isdir(account_dir):
 | |
|         print('Account already exists')
 | |
|         sys.exit()
 | |
|     if os.path.isdir(base_dir + '/deactivated/' + nickname + '@' + domain):
 | |
|         print('Account is deactivated')
 | |
|         sys.exit()
 | |
|     if domain.endswith('.onion') or \
 | |
|        domain.endswith('.i2p'):
 | |
|         port = 80
 | |
|         http_prefix = 'http'
 | |
|     create_person(base_dir, nickname, domain, port, http_prefix,
 | |
|                   True, not args.noapproval, args.password.strip())
 | |
|     if os.path.isdir(account_dir):
 | |
|         print('Account created for ' + nickname + '@' + domain)
 | |
|     else:
 | |
|         print('Account creation failed')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.addgroup:
 | |
|     if '@' in args.addgroup:
 | |
|         nickname = args.addgroup.split('@')[0]
 | |
|         domain = args.addgroup.split('@')[1]
 | |
|     else:
 | |
|         nickname = args.addgroup
 | |
|         if not args.domain or not get_config_param(base_dir, 'domain'):
 | |
|             print('Use the --domain option to set the domain name')
 | |
|             sys.exit()
 | |
|     if nickname.startswith('!'):
 | |
|         # remove preceding group indicator
 | |
|         nickname = nickname[1:]
 | |
|     if not valid_nickname(domain, nickname):
 | |
|         print(nickname + ' is a reserved name. Use something different.')
 | |
|         sys.exit()
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
|     if len(args.password.strip()) < 8:
 | |
|         print('Password should be at least 8 characters')
 | |
|         sys.exit()
 | |
|     account_dir = acct_dir(base_dir, nickname, domain)
 | |
|     if os.path.isdir(account_dir):
 | |
|         print('Group already exists')
 | |
|         sys.exit()
 | |
|     create_group(base_dir, nickname, domain, port, http_prefix,
 | |
|                  True, args.password.strip())
 | |
|     if os.path.isdir(account_dir):
 | |
|         print('Group created for ' + nickname + '@' + domain)
 | |
|     else:
 | |
|         print('Group creation failed')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.rmgroup:
 | |
|     args.rmaccount = args.rmgroup
 | |
| 
 | |
| if args.deactivate:
 | |
|     args.rmaccount = args.deactivate
 | |
| 
 | |
| if args.rmaccount:
 | |
|     if '@' in args.rmaccount:
 | |
|         nickname = args.rmaccount.split('@')[0]
 | |
|         domain = args.rmaccount.split('@')[1]
 | |
|     else:
 | |
|         nickname = args.rmaccount
 | |
|         if not args.domain or not get_config_param(base_dir, 'domain'):
 | |
|             print('Use the --domain option to set the domain name')
 | |
|             sys.exit()
 | |
|         if args.domain:
 | |
|             domain = args.domain
 | |
|         else:
 | |
|             domain = get_config_param(base_dir, 'domain')
 | |
| 
 | |
|     configured_domain = get_config_param(base_dir, 'domain')
 | |
|     if configured_domain:
 | |
|         if domain != configured_domain:
 | |
|             print('The account domain is expected to be ' + configured_domain)
 | |
|             sys.exit()
 | |
| 
 | |
|     if args.deactivate:
 | |
|         if deactivate_account(base_dir, nickname, domain):
 | |
|             print('Account for ' + nickname + '@' + domain +
 | |
|                   ' was deactivated')
 | |
|         else:
 | |
|             print('Account for ' + nickname + '@' + domain + ' was not found')
 | |
|         sys.exit()
 | |
|     if remove_account(base_dir, nickname, domain, port):
 | |
|         if not args.rmgroup:
 | |
|             print('Account for ' + nickname + '@' + domain + ' was removed')
 | |
|         else:
 | |
|             print('Group ' + nickname + '@' + domain + ' was removed')
 | |
|         sys.exit()
 | |
| 
 | |
| if args.activate:
 | |
|     if '@' in args.activate:
 | |
|         nickname = args.activate.split('@')[0]
 | |
|         domain = args.activate.split('@')[1]
 | |
|     else:
 | |
|         nickname = args.activate
 | |
|         if not args.domain or not get_config_param(base_dir, 'domain'):
 | |
|             print('Use the --domain option to set the domain name')
 | |
|             sys.exit()
 | |
|     if activate_account(base_dir, nickname, domain):
 | |
|         print('Account for ' + nickname + '@' + domain + ' was activated')
 | |
|     else:
 | |
|         print('Deactivated account for ' + nickname + '@' + domain +
 | |
|               ' was not found')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.changepassword:
 | |
|     if len(args.changepassword) != 2:
 | |
|         print('--changepassword [nickname] [new password]')
 | |
|         sys.exit()
 | |
|     if '@' in args.changepassword[0]:
 | |
|         nickname = args.changepassword[0].split('@')[0]
 | |
|         domain = args.changepassword[0].split('@')[1]
 | |
|     else:
 | |
|         nickname = args.changepassword[0]
 | |
|         if not args.domain or not get_config_param(base_dir, 'domain'):
 | |
|             print('Use the --domain option to set the domain name')
 | |
|             sys.exit()
 | |
|     new_password = args.changepassword[1]
 | |
|     if len(new_password) < 8:
 | |
|         print('Password should be at least 8 characters')
 | |
|         sys.exit()
 | |
|     account_dir = acct_dir(base_dir, nickname, domain)
 | |
|     if not os.path.isdir(account_dir):
 | |
|         print('Account ' + nickname + '@' + domain + ' not found')
 | |
|         sys.exit()
 | |
|     password_file = base_dir + '/accounts/passwords'
 | |
|     if os.path.isfile(password_file):
 | |
|         if nickname + ':' in open(password_file).read():
 | |
|             store_basic_credentials(base_dir, nickname, new_password)
 | |
|             print('Password for ' + nickname + ' was changed')
 | |
|         else:
 | |
|             print(nickname + ' is not in the passwords file')
 | |
|     else:
 | |
|         print('Passwords file not found')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.archive:
 | |
|     if args.archive.lower().endswith('null') or \
 | |
|        args.archive.lower().endswith('delete') or \
 | |
|        args.archive.lower().endswith('none'):
 | |
|         args.archive = None
 | |
|         print('Archiving with deletion of old posts...')
 | |
|     else:
 | |
|         print('Archiving to ' + args.archive + '...')
 | |
|     archive_media(base_dir, args.archive, args.archiveWeeks)
 | |
|     archive_posts(base_dir, http_prefix, args.archive, {},
 | |
|                   args.archiveMaxPosts)
 | |
|     print('Archiving complete')
 | |
|     sys.exit()
 | |
| 
 | |
| if not args.domain and not domain:
 | |
|     print('Specify a domain with --domain [name]')
 | |
|     sys.exit()
 | |
| 
 | |
| if args.avatar:
 | |
|     if not os.path.isfile(args.avatar):
 | |
|         print(args.avatar + ' is not an image filename')
 | |
|         sys.exit()
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with --nickname [name]')
 | |
|         sys.exit()
 | |
|     city = 'London, England'
 | |
|     if set_profile_image(base_dir, http_prefix, args.nickname, domain,
 | |
|                          port, args.avatar, 'avatar', '128x128', city,
 | |
|                          args.content_license_url):
 | |
|         print('Avatar added for ' + args.nickname)
 | |
|     else:
 | |
|         print('Avatar was not added for ' + args.nickname)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.backgroundImage:
 | |
|     if not os.path.isfile(args.backgroundImage):
 | |
|         print(args.backgroundImage + ' is not an image filename')
 | |
|         sys.exit()
 | |
|     if not args.nickname:
 | |
|         print('Specify a nickname with --nickname [name]')
 | |
|         sys.exit()
 | |
|     city = 'London, England'
 | |
|     if set_profile_image(base_dir, http_prefix, args.nickname, domain,
 | |
|                          port, args.backgroundImage, 'background',
 | |
|                          '256x256', city, args.content_license_url):
 | |
|         print('Background image added for ' + args.nickname)
 | |
|     else:
 | |
|         print('Background image was not added for ' + args.nickname)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.skill:
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if not args.skillLevelPercent:
 | |
|         print('Specify a skill level in the range 0-100')
 | |
|         sys.exit()
 | |
| 
 | |
|     if int(args.skillLevelPercent) < 0 or \
 | |
|        int(args.skillLevelPercent) > 100:
 | |
|         print('Skill level should be a percentage in the range 0-100')
 | |
|         sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending ' + args.skill + ' skill level ' +
 | |
|           str(args.skillLevelPercent) + ' for ' + nickname)
 | |
| 
 | |
|     send_skill_via_server(base_dir, session,
 | |
|                           nickname, args.password,
 | |
|                           domain, port,
 | |
|                           http_prefix,
 | |
|                           args.skill, args.skillLevelPercent,
 | |
|                           cached_webfingers, person_cache,
 | |
|                           True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.availability:
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending availability status of ' + nickname +
 | |
|           ' as ' + args.availability)
 | |
| 
 | |
|     send_availability_via_server(base_dir, session, nickname, args.password,
 | |
|                                  domain, port, http_prefix,
 | |
|                                  args.availability,
 | |
|                                  cached_webfingers, person_cache,
 | |
|                                  True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.desktop:
 | |
|     # Announce posts as they arrive in your inbox using text-to-speech
 | |
|     if args.desktop.startswith('@'):
 | |
|         args.desktop = args.desktop[1:]
 | |
|     if '@' not in args.desktop:
 | |
|         print('Specify the handle to notify: nickname@domain')
 | |
|         sys.exit()
 | |
|     nickname = args.desktop.split('@')[0]
 | |
|     domain = args.desktop.split('@')[1]
 | |
| 
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
| 
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     proxy_type = None
 | |
|     if args.tor or domain.endswith('.onion'):
 | |
|         proxy_type = 'tor'
 | |
|         if domain.endswith('.onion'):
 | |
|             args.port = 80
 | |
|     elif args.i2p or domain.endswith('.i2p'):
 | |
|         proxy_type = 'i2p'
 | |
|         if domain.endswith('.i2p'):
 | |
|             args.port = 80
 | |
|     elif args.gnunet:
 | |
|         proxy_type = 'gnunet'
 | |
| 
 | |
|     # only store inbox posts if we are not running as a daemon
 | |
|     storeInboxPosts = not args.noKeyPress
 | |
| 
 | |
|     run_desktop_client(base_dir, proxy_type, http_prefix,
 | |
|                        nickname, domain, port, args.password,
 | |
|                        args.screenreader, args.language,
 | |
|                        args.notificationSounds,
 | |
|                        args.notificationType,
 | |
|                        args.noKeyPress,
 | |
|                        storeInboxPosts,
 | |
|                        args.notifyShowNewPosts,
 | |
|                        args.language,
 | |
|                        args.debug, args.low_bandwidth)
 | |
|     sys.exit()
 | |
| 
 | |
| if federation_list:
 | |
|     print('Federating with: ' + str(federation_list))
 | |
| if args.shared_items_federated_domains:
 | |
|     print('Federating shared items with: ' +
 | |
|           args.shared_items_federated_domains)
 | |
| 
 | |
| shared_items_federated_domains = []
 | |
| if args.shared_items_federated_domains:
 | |
|     fed_domains_str = args.shared_items_federated_domains
 | |
|     set_config_param(base_dir, 'sharedItemsFederatedDomains',
 | |
|                      fed_domains_str)
 | |
| else:
 | |
|     fed_domains_str = \
 | |
|         get_config_param(base_dir, 'sharedItemsFederatedDomains')
 | |
| if fed_domains_str:
 | |
|     fed_domains_list = fed_domains_str.split(',')
 | |
|     for shared_federated_domain in fed_domains_list:
 | |
|         shared_items_federated_domains.append(shared_federated_domain.strip())
 | |
| 
 | |
| if args.block:
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if '@' in args.block:
 | |
|         blocked_domain = args.block.split('@')[1]
 | |
|         blocked_domain = blocked_domain.replace('\n', '').replace('\r', '')
 | |
|         blocked_nickname = args.block.split('@')[0]
 | |
|         blocked_actor = http_prefix + '://' + blocked_domain + \
 | |
|             '/users/' + blocked_nickname
 | |
|         args.block = blocked_actor
 | |
|     else:
 | |
|         if '/users/' not in args.block:
 | |
|             print(args.block + ' does not look like an actor url')
 | |
|             sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending block of ' + args.block)
 | |
| 
 | |
|     send_block_via_server(base_dir, session, nickname, args.password,
 | |
|                           domain, port,
 | |
|                           http_prefix, args.block,
 | |
|                           cached_webfingers, person_cache,
 | |
|                           True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.mute:
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending mute of ' + args.mute)
 | |
| 
 | |
|     send_mute_via_server(base_dir, session, nickname, args.password,
 | |
|                          domain, port,
 | |
|                          http_prefix, args.mute,
 | |
|                          cached_webfingers, person_cache,
 | |
|                          True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.unmute:
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo mute of ' + args.unmute)
 | |
| 
 | |
|     send_undo_mute_via_server(base_dir, session, nickname, args.password,
 | |
|                               domain, port,
 | |
|                               http_prefix, args.unmute,
 | |
|                               cached_webfingers, person_cache,
 | |
|                               True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.unblock:
 | |
|     if not nickname:
 | |
|         print('Specify a nickname with the --nickname option')
 | |
|         sys.exit()
 | |
| 
 | |
|     if not args.password:
 | |
|         args.password = getpass.getpass('Password: ')
 | |
|         if not args.password:
 | |
|             print('Specify a password with the --password option')
 | |
|             sys.exit()
 | |
|     args.password = args.password.replace('\n', '')
 | |
| 
 | |
|     if '@' in args.unblock:
 | |
|         blocked_domain = args.unblock.split('@')[1]
 | |
|         blocked_domain = blocked_domain.replace('\n', '').replace('\r', '')
 | |
|         blocked_nickname = args.unblock.split('@')[0]
 | |
|         blocked_actor = http_prefix + '://' + blocked_domain + \
 | |
|             '/users/' + blocked_nickname
 | |
|         args.unblock = blocked_actor
 | |
|     else:
 | |
|         if '/users/' not in args.unblock:
 | |
|             print(args.unblock + ' does not look like an actor url')
 | |
|             sys.exit()
 | |
| 
 | |
|     session = create_session(proxy_type)
 | |
|     person_cache = {}
 | |
|     cached_webfingers = {}
 | |
|     if not domain:
 | |
|         domain = get_config_param(base_dir, 'domain')
 | |
|     signing_priv_key_pem = None
 | |
|     if args.secure_mode:
 | |
|         signing_priv_key_pem = get_instance_actor_key(base_dir, domain)
 | |
|     print('Sending undo block of ' + args.unblock)
 | |
| 
 | |
|     send_undo_block_via_server(base_dir, session, nickname, args.password,
 | |
|                                domain, port,
 | |
|                                http_prefix, args.unblock,
 | |
|                                cached_webfingers, person_cache,
 | |
|                                True, __version__, signing_priv_key_pem)
 | |
|     for i in range(10):
 | |
|         # TODO detect send success/fail
 | |
|         time.sleep(1)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.filterStr:
 | |
|     if not args.nickname:
 | |
|         print('Please specify a nickname')
 | |
|         sys.exit()
 | |
|     if add_filter(base_dir, args.nickname, domain, args.filterStr):
 | |
|         print('Filter added to ' + args.nickname + ': ' + args.filterStr)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.unfilterStr:
 | |
|     if not args.nickname:
 | |
|         print('Please specify a nickname')
 | |
|         sys.exit()
 | |
|     if remove_filter(base_dir, args.nickname, domain, args.unfilterStr):
 | |
|         print('Filter removed from ' + args.nickname + ': ' + args.unfilterStr)
 | |
|     sys.exit()
 | |
| 
 | |
| if args.testdata:
 | |
|     args.language = 'en'
 | |
|     city = 'London, England'
 | |
|     nickname = 'testuser567'
 | |
|     password = 'boringpassword'
 | |
|     print('Generating some test data for user: ' + nickname)
 | |
| 
 | |
|     if os.path.isdir(base_dir + '/tags'):
 | |
|         shutil.rmtree(base_dir + '/tags', ignore_errors=False, onerror=None)
 | |
|     if os.path.isdir(base_dir + '/accounts'):
 | |
|         shutil.rmtree(base_dir + '/accounts',
 | |
|                       ignore_errors=False, onerror=None)
 | |
|     if os.path.isdir(base_dir + '/keys'):
 | |
|         shutil.rmtree(base_dir + '/keys', ignore_errors=False, onerror=None)
 | |
|     if os.path.isdir(base_dir + '/media'):
 | |
|         shutil.rmtree(base_dir + '/media', ignore_errors=False, onerror=None)
 | |
|     if os.path.isdir(base_dir + '/sharefiles'):
 | |
|         shutil.rmtree(base_dir + '/sharefiles',
 | |
|                       ignore_errors=False, onerror=None)
 | |
|     if os.path.isdir(base_dir + '/wfendpoints'):
 | |
|         shutil.rmtree(base_dir + '/wfendpoints',
 | |
|                       ignore_errors=False, onerror=None)
 | |
| 
 | |
|     set_config_param(base_dir, 'registrationsRemaining',
 | |
|                      str(maxRegistrations))
 | |
| 
 | |
|     create_person(base_dir, 'maxboardroom', domain, port, http_prefix,
 | |
|                   True, False, password)
 | |
|     create_person(base_dir, 'ultrapancake', domain, port, http_prefix,
 | |
|                   True, False, password)
 | |
|     create_person(base_dir, 'drokk', domain, port, http_prefix,
 | |
|                   True, False, password)
 | |
|     create_person(base_dir, 'sausagedog', domain, port, http_prefix,
 | |
|                   True, False, password)
 | |
| 
 | |
|     create_person(base_dir, nickname, domain, port, http_prefix,
 | |
|                   True, False, 'likewhateveryouwantscoob')
 | |
|     set_skill_level(base_dir, nickname, domain, 'testing', 60)
 | |
|     set_skill_level(base_dir, nickname, domain, 'typing', 50)
 | |
|     set_role(base_dir, nickname, domain, 'admin')
 | |
|     set_availability(base_dir, nickname, domain, 'busy')
 | |
| 
 | |
|     add_share(base_dir,
 | |
|               http_prefix, nickname, domain, port,
 | |
|               "spanner",
 | |
|               "It's a spanner",
 | |
|               "img/shares1.png",
 | |
|               1, "tool",
 | |
|               "mechanical",
 | |
|               "City", "0", "GBP",
 | |
|               "2 months",
 | |
|               debug, city, args.language, {}, 'shares', args.low_bandwidth,
 | |
|               args.content_license_url)
 | |
|     add_share(base_dir,
 | |
|               http_prefix, nickname, domain, port,
 | |
|               "witch hat",
 | |
|               "Spooky",
 | |
|               "img/shares2.png",
 | |
|               1, "hat",
 | |
|               "clothing",
 | |
|               "City", "0", "GBP",
 | |
|               "3 months",
 | |
|               debug, city, args.language, {}, 'shares', args.low_bandwidth,
 | |
|               args.content_license_url)
 | |
| 
 | |
|     delete_all_posts(base_dir, nickname, domain, 'inbox')
 | |
|     delete_all_posts(base_dir, nickname, domain, 'outbox')
 | |
| 
 | |
|     test_followers_only = False
 | |
|     test_save_to_file = True
 | |
|     test_c2s = False
 | |
|     test_comments_enabled = True
 | |
|     test_attach_image_filename = None
 | |
|     test_media_type = None
 | |
|     test_image_description = None
 | |
|     test_city = 'London, England'
 | |
|     test_in_reply_to = None
 | |
|     test_in_reply_to_atom_uri = None
 | |
|     test_subject = None
 | |
|     test_schedule_post = False
 | |
|     test_event_date = None
 | |
|     test_event_time = None
 | |
|     test_location = None
 | |
|     test_is_article = False
 | |
|     conversation_id = None
 | |
|     low_bandwidth = False
 | |
|     languages_understood = [args.language]
 | |
| 
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "like this is totally just a #test man",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "Zoiks!!!",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "Hey scoob we need like a hundred more #milkshakes",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "Getting kinda spooky around here",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        'someone', test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "And they would have gotten away with it too" +
 | |
|                        "if it wasn't for those pesky hackers",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        'img/logo.png', 'image/png',
 | |
|                        'Description of image', test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "man these centralized sites are like the worst!",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "another mystery solved #test",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     create_public_post(base_dir, nickname, domain, port, http_prefix,
 | |
|                        "let's go bowling",
 | |
|                        test_followers_only,
 | |
|                        test_save_to_file,
 | |
|                        test_c2s,
 | |
|                        test_comments_enabled,
 | |
|                        test_attach_image_filename,
 | |
|                        test_media_type, test_image_description, test_city,
 | |
|                        test_in_reply_to, test_in_reply_to_atom_uri,
 | |
|                        test_subject, test_schedule_post,
 | |
|                        test_event_date, test_event_time, test_location,
 | |
|                        test_is_article, args.language, conversation_id,
 | |
|                        low_bandwidth, args.content_license_url,
 | |
|                        languages_understood)
 | |
|     domain_full = domain + ':' + str(port)
 | |
|     clear_follows(base_dir, nickname, domain)
 | |
|     follow_person(base_dir, nickname, domain, 'maxboardroom', domain_full,
 | |
|                   federation_list, False, False)
 | |
|     follow_person(base_dir, nickname, domain, 'ultrapancake', domain_full,
 | |
|                   federation_list, False, False)
 | |
|     follow_person(base_dir, nickname, domain, 'sausagedog', domain_full,
 | |
|                   federation_list, False, False)
 | |
|     follow_person(base_dir, nickname, domain, 'drokk', domain_full,
 | |
|                   federation_list, False, False)
 | |
|     add_follower_of_person(base_dir, nickname, domain, 'drokk', domain_full,
 | |
|                            federation_list, False, False)
 | |
|     add_follower_of_person(base_dir, nickname, domain, 'maxboardroom',
 | |
|                            domain_full, federation_list, False, False)
 | |
|     set_config_param(base_dir, 'admin', nickname)
 | |
| 
 | |
| # set a lower bound to the maximum mentions
 | |
| # so that it can't be accidentally set to zero and disable replies
 | |
| if args.max_mentions < 4:
 | |
|     args.max_mentions = 4
 | |
| 
 | |
| registration = get_config_param(base_dir, 'registration')
 | |
| if not registration:
 | |
|     registration = False
 | |
| 
 | |
| minimumvotes = get_config_param(base_dir, 'minvotes')
 | |
| if minimumvotes:
 | |
|     args.minimumvotes = int(minimumvotes)
 | |
| 
 | |
| content_license_url = ''
 | |
| if args.content_license_url:
 | |
|     content_license_url = args.content_license_url
 | |
|     set_config_param(base_dir, 'contentLicenseUrl', content_license_url)
 | |
| else:
 | |
|     content_license_url = get_config_param(base_dir, 'contentLicenseUrl')
 | |
| 
 | |
| votingtime = get_config_param(base_dir, 'votingtime')
 | |
| if votingtime:
 | |
|     args.votingtime = votingtime
 | |
| 
 | |
| # only show the date at the bottom of posts
 | |
| dateonly = get_config_param(base_dir, 'dateonly')
 | |
| if dateonly:
 | |
|     args.dateonly = dateonly
 | |
| 
 | |
| # set the maximum number of newswire posts per account or rss feed
 | |
| max_newswire_postsPerSource = \
 | |
|     get_config_param(base_dir, 'maxNewswirePostsPerSource')
 | |
| if max_newswire_postsPerSource:
 | |
|     args.max_newswire_postsPerSource = int(max_newswire_postsPerSource)
 | |
| 
 | |
| # set the maximum number of newswire posts appearing in the right column
 | |
| max_newswire_posts = \
 | |
|     get_config_param(base_dir, 'maxNewswirePosts')
 | |
| if max_newswire_posts:
 | |
|     args.max_newswire_posts = int(max_newswire_posts)
 | |
| 
 | |
| # set the maximum size of a newswire rss/atom feed in Kilobytes
 | |
| max_newswire_feed_size_kb = \
 | |
|     get_config_param(base_dir, 'maxNewswireFeedSizeKb')
 | |
| if max_newswire_feed_size_kb:
 | |
|     args.max_newswire_feed_size_kb = int(max_newswire_feed_size_kb)
 | |
| 
 | |
| max_mirrored_articles = \
 | |
|     get_config_param(base_dir, 'maxMirroredArticles')
 | |
| if max_mirrored_articles is not None:
 | |
|     args.max_mirrored_articles = int(max_mirrored_articles)
 | |
| 
 | |
| max_news_posts = \
 | |
|     get_config_param(base_dir, 'maxNewsPosts')
 | |
| if max_news_posts is not None:
 | |
|     args.max_news_posts = int(max_news_posts)
 | |
| 
 | |
| max_followers = \
 | |
|     get_config_param(base_dir, 'maxFollowers')
 | |
| if max_followers is not None:
 | |
|     args.max_followers = int(max_followers)
 | |
| 
 | |
| max_feed_item_size_kb = \
 | |
|     get_config_param(base_dir, 'maxFeedItemSizeKb')
 | |
| if max_feed_item_size_kb is not None:
 | |
|     args.max_feed_item_size_kb = int(max_feed_item_size_kb)
 | |
| 
 | |
| dormant_months = \
 | |
|     get_config_param(base_dir, 'dormantMonths')
 | |
| if dormant_months is not None:
 | |
|     args.dormant_months = int(dormant_months)
 | |
| 
 | |
| send_threads_timeout_mins = \
 | |
|     get_config_param(base_dir, 'sendThreadsTimeoutMins')
 | |
| if send_threads_timeout_mins is not None:
 | |
|     args.send_threads_timeout_mins = int(send_threads_timeout_mins)
 | |
| 
 | |
| max_like_count = \
 | |
|     get_config_param(base_dir, 'maxLikeCount')
 | |
| if max_like_count is not None:
 | |
|     args.max_like_count = int(max_like_count)
 | |
| 
 | |
| show_publish_as_icon = \
 | |
|     get_config_param(base_dir, 'showPublishAsIcon')
 | |
| if show_publish_as_icon is not None:
 | |
|     args.show_publish_as_icon = bool(show_publish_as_icon)
 | |
| 
 | |
| icons_as_buttons = \
 | |
|     get_config_param(base_dir, 'iconsAsButtons')
 | |
| if icons_as_buttons is not None:
 | |
|     args.icons_as_buttons = bool(icons_as_buttons)
 | |
| 
 | |
| rss_icon_at_top = \
 | |
|     get_config_param(base_dir, 'rssIconAtTop')
 | |
| if rss_icon_at_top is not None:
 | |
|     args.rss_icon_at_top = bool(rss_icon_at_top)
 | |
| 
 | |
| publish_button_at_top = \
 | |
|     get_config_param(base_dir, 'publishButtonAtTop')
 | |
| if publish_button_at_top is not None:
 | |
|     args.publish_button_at_top = bool(publish_button_at_top)
 | |
| 
 | |
| full_width_tl_button_header = \
 | |
|     get_config_param(base_dir, 'fullWidthTlButtonHeader')
 | |
| if full_width_tl_button_header is not None:
 | |
|     args.full_width_tl_button_header = bool(full_width_tl_button_header)
 | |
| 
 | |
| allow_local_network_access = \
 | |
|     get_config_param(base_dir, 'allowLocalNetworkAccess')
 | |
| if allow_local_network_access is not None:
 | |
|     args.allow_local_network_access = bool(allow_local_network_access)
 | |
| 
 | |
| verify_all_signatures = \
 | |
|     get_config_param(base_dir, 'verifyAllSignatures')
 | |
| if verify_all_signatures is not None:
 | |
|     args.verify_all_signatures = bool(verify_all_signatures)
 | |
| 
 | |
| broch_mode = get_config_param(base_dir, 'brochMode')
 | |
| if broch_mode is not None:
 | |
|     args.broch_mode = bool(broch_mode)
 | |
| 
 | |
| dyslexic_font = get_config_param(base_dir, 'dyslexicFont')
 | |
| if dyslexic_font is not None:
 | |
|     args.dyslexic_font = bool(dyslexic_font)
 | |
| 
 | |
| log_login_failures = \
 | |
|     get_config_param(base_dir, 'logLoginFailures')
 | |
| if log_login_failures is not None:
 | |
|     args.log_login_failures = bool(log_login_failures)
 | |
| 
 | |
| show_node_info_accounts = \
 | |
|     get_config_param(base_dir, 'showNodeInfoAccounts')
 | |
| if show_node_info_accounts is not None:
 | |
|     args.show_node_info_accounts = bool(show_node_info_accounts)
 | |
| 
 | |
| show_node_info_version = \
 | |
|     get_config_param(base_dir, 'showNodeInfoVersion')
 | |
| if show_node_info_version is not None:
 | |
|     args.show_node_info_version = bool(show_node_info_version)
 | |
| 
 | |
| low_bandwidth = \
 | |
|     get_config_param(base_dir, 'lowBandwidth')
 | |
| if low_bandwidth is not None:
 | |
|     args.low_bandwidth = bool(low_bandwidth)
 | |
| 
 | |
| user_agents_blocked = []
 | |
| if args.userAgentBlocks:
 | |
|     user_agents_blocked_str = args.userAgentBlocks
 | |
|     set_config_param(base_dir, 'userAgentsBlocked', user_agents_blocked_str)
 | |
| else:
 | |
|     user_agents_blocked_str = \
 | |
|         get_config_param(base_dir, 'userAgentsBlocked')
 | |
| if user_agents_blocked_str:
 | |
|     agent_blocks_list = user_agents_blocked_str.split(',')
 | |
|     for user_agents_blocked_str2 in agent_blocks_list:
 | |
|         user_agents_blocked.append(user_agents_blocked_str2.strip())
 | |
| 
 | |
| crawlers_allowed = []
 | |
| if args.crawlersAllowed:
 | |
|     crawlers_allowed_str = args.crawlersAllowed
 | |
|     set_config_param(base_dir, 'crawlersAllowed', crawlers_allowed_str)
 | |
| else:
 | |
|     crawlers_allowed_str = \
 | |
|         get_config_param(base_dir, 'crawlersAllowed')
 | |
| if crawlers_allowed_str:
 | |
|     crawlers_allowed_list = crawlers_allowed_str.split(',')
 | |
|     for crawlers_allowed_str2 in crawlers_allowed_list:
 | |
|         crawlers_allowed.append(crawlers_allowed_str2.strip())
 | |
| 
 | |
| lists_enabled = ''
 | |
| if args.lists_enabled:
 | |
|     lists_enabled = args.lists_enabled
 | |
|     set_config_param(base_dir, 'listsEnabled', lists_enabled)
 | |
| else:
 | |
|     lists_enabled = get_config_param(base_dir, 'listsEnabled')
 | |
| 
 | |
| city = \
 | |
|     get_config_param(base_dir, 'city')
 | |
| if city is not None:
 | |
|     args.city = city
 | |
| 
 | |
| yt_domain = get_config_param(base_dir, 'youtubedomain')
 | |
| if yt_domain:
 | |
|     if '://' in yt_domain:
 | |
|         yt_domain = yt_domain.split('://')[1]
 | |
|     if '/' in yt_domain:
 | |
|         yt_domain = yt_domain.split('/')[0]
 | |
|     if '.' in yt_domain:
 | |
|         args.yt_replace_domain = yt_domain
 | |
| 
 | |
| twitter_domain = get_config_param(base_dir, 'twitterdomain')
 | |
| if twitter_domain:
 | |
|     if '://' in twitter_domain:
 | |
|         twitter_domain = twitter_domain.split('://')[1]
 | |
|     if '/' in twitter_domain:
 | |
|         twitter_domain = twitter_domain.split('/')[0]
 | |
|     if '.' in twitter_domain:
 | |
|         args.twitter_replacement_domain = twitter_domain
 | |
| 
 | |
| if set_theme(base_dir, theme_name, domain,
 | |
|              args.allow_local_network_access, args.language,
 | |
|              args.dyslexic_font, False):
 | |
|     print('Theme set to ' + theme_name)
 | |
| 
 | |
| # whether new registrations are open or closed
 | |
| if args.registration:
 | |
|     if args.registration.lower() == 'open':
 | |
|         registration = get_config_param(base_dir, 'registration')
 | |
|         if not registration:
 | |
|             set_config_param(base_dir, 'registrationsRemaining',
 | |
|                              str(maxRegistrations))
 | |
|         else:
 | |
|             if registration != 'open':
 | |
|                 set_config_param(base_dir, 'registrationsRemaining',
 | |
|                                  str(maxRegistrations))
 | |
|         set_config_param(base_dir, 'registration', 'open')
 | |
|         print('New registrations open')
 | |
|     else:
 | |
|         set_config_param(base_dir, 'registration', 'closed')
 | |
|         print('New registrations closed')
 | |
| 
 | |
| default_currency = get_config_param(base_dir, 'defaultCurrency')
 | |
| if not default_currency:
 | |
|     set_config_param(base_dir, 'defaultCurrency', 'EUR')
 | |
| if args.defaultCurrency:
 | |
|     if args.defaultCurrency == args.defaultCurrency.upper():
 | |
|         set_config_param(base_dir, 'defaultCurrency', args.defaultCurrency)
 | |
|         print('Default currency set to ' + args.defaultCurrency)
 | |
| 
 | |
| if __name__ == "__main__":
 | |
|     print('allowdeletion: ' + str(args.allowdeletion))
 | |
|     run_daemon(args.check_actor_timeout,
 | |
|                crawlers_allowed,
 | |
|                args.dyslexic_font,
 | |
|                content_license_url,
 | |
|                lists_enabled,
 | |
|                args.default_reply_interval_hrs,
 | |
|                args.low_bandwidth, args.max_like_count,
 | |
|                shared_items_federated_domains,
 | |
|                user_agents_blocked,
 | |
|                args.log_login_failures,
 | |
|                args.city,
 | |
|                args.show_node_info_accounts,
 | |
|                args.show_node_info_version,
 | |
|                args.broch_mode,
 | |
|                args.verify_all_signatures,
 | |
|                args.send_threads_timeout_mins,
 | |
|                args.dormant_months,
 | |
|                args.max_newswire_posts,
 | |
|                args.allow_local_network_access,
 | |
|                args.max_feed_item_size_kb,
 | |
|                args.publish_button_at_top,
 | |
|                args.rss_icon_at_top,
 | |
|                args.icons_as_buttons,
 | |
|                args.full_width_tl_button_header,
 | |
|                args.show_publish_as_icon,
 | |
|                args.max_followers,
 | |
|                args.max_news_posts,
 | |
|                args.max_mirrored_articles,
 | |
|                args.max_newswire_feed_size_kb,
 | |
|                args.max_newswire_postsPerSource,
 | |
|                args.dateonly,
 | |
|                args.votingtime,
 | |
|                args.positivevoting,
 | |
|                args.minimumvotes,
 | |
|                args.newsinstance,
 | |
|                args.blogsinstance, args.mediainstance,
 | |
|                args.max_recent_posts,
 | |
|                not args.nosharedinbox,
 | |
|                registration, args.language, __version__,
 | |
|                instance_id, args.client, base_dir,
 | |
|                domain, onion_domain, i2p_domain,
 | |
|                args.yt_replace_domain,
 | |
|                args.twitter_replacement_domain,
 | |
|                port, proxy_port, http_prefix,
 | |
|                federation_list, args.max_mentions,
 | |
|                args.max_emoji, args.secure_mode,
 | |
|                proxy_type, args.max_replies,
 | |
|                args.domain_max_posts_per_day,
 | |
|                args.account_max_posts_per_day,
 | |
|                args.allowdeletion, debug, False,
 | |
|                args.instance_only_skills_search, [],
 | |
|                not args.noapproval)
 |