| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | __filename__ = "webapp_create_post.py" | 
					
						
							|  |  |  | __author__ = "Bob Mottram" | 
					
						
							|  |  |  | __license__ = "AGPL3+" | 
					
						
							| 
									
										
										
										
											2024-12-22 23:37:30 +00:00
										 |  |  | __version__ = "1.6.0" | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | __maintainer__ = "Bob Mottram" | 
					
						
							| 
									
										
										
										
											2021-09-10 16:14:50 +00:00
										 |  |  | __email__ = "bob@libreserver.org" | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | __status__ = "Production" | 
					
						
							| 
									
										
										
										
											2021-06-15 15:08:12 +00:00
										 |  |  | __module_group__ = "Web Interface" | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import os | 
					
						
							| 
									
										
										
										
											2024-09-13 13:58:14 +00:00
										 |  |  | from flags import is_public_post_from_url | 
					
						
							|  |  |  | from flags import is_premium_account | 
					
						
							| 
									
										
										
										
											2024-05-12 12:35:26 +00:00
										 |  |  | from utils import data_dir | 
					
						
							| 
									
										
										
										
											2023-11-24 14:25:57 +00:00
										 |  |  | from utils import dangerous_markup | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  | from utils import remove_html | 
					
						
							|  |  |  | from utils import get_content_from_post | 
					
						
							|  |  |  | from utils import has_object_dict | 
					
						
							|  |  |  | from utils import load_json | 
					
						
							|  |  |  | from utils import locate_post | 
					
						
							| 
									
										
										
										
											2021-12-26 16:59:38 +00:00
										 |  |  | from utils import get_new_post_endpoints | 
					
						
							| 
									
										
										
										
											2021-12-27 22:19:18 +00:00
										 |  |  | from utils import get_nickname_from_actor | 
					
						
							| 
									
										
										
										
											2021-12-27 19:05:25 +00:00
										 |  |  | from utils import get_domain_from_actor | 
					
						
							| 
									
										
										
										
											2021-12-27 15:56:15 +00:00
										 |  |  | from utils import get_media_formats | 
					
						
							| 
									
										
										
										
											2021-12-26 14:08:58 +00:00
										 |  |  | from utils import get_config_param | 
					
						
							| 
									
										
										
										
											2021-12-26 12:02:29 +00:00
										 |  |  | from utils import acct_dir | 
					
						
							| 
									
										
										
										
											2021-12-26 17:29:09 +00:00
										 |  |  | from utils import get_currencies | 
					
						
							| 
									
										
										
										
											2021-12-26 17:18:34 +00:00
										 |  |  | from utils import get_category_types | 
					
						
							| 
									
										
										
										
											2022-02-25 19:12:40 +00:00
										 |  |  | from utils import get_account_timezone | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  | from utils import get_supported_languages | 
					
						
							| 
									
										
										
										
											2023-11-24 14:25:57 +00:00
										 |  |  | from utils import get_attributed_to | 
					
						
							| 
									
										
										
										
											2023-11-24 23:22:04 +00:00
										 |  |  | from utils import get_full_domain | 
					
						
							| 
									
										
										
										
											2024-12-24 18:17:36 +00:00
										 |  |  | from blocking import sending_is_blocked2 | 
					
						
							| 
									
										
										
										
											2024-08-15 10:14:32 +00:00
										 |  |  | from webapp_utils import open_content_warning | 
					
						
							| 
									
										
										
										
											2023-08-22 18:23:25 +00:00
										 |  |  | from webapp_utils import edit_check_box | 
					
						
							| 
									
										
										
										
											2023-01-13 17:41:48 +00:00
										 |  |  | from webapp_utils import get_buy_links | 
					
						
							| 
									
										
										
										
											2022-12-31 21:32:49 +00:00
										 |  |  | from webapp_utils import html_following_data_list | 
					
						
							| 
									
										
										
										
											2022-04-19 11:22:23 +00:00
										 |  |  | from webapp_utils import html_common_emoji | 
					
						
							| 
									
										
										
										
											2022-04-15 12:56:30 +00:00
										 |  |  | from webapp_utils import begin_edit_section | 
					
						
							|  |  |  | from webapp_utils import end_edit_section | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  | from webapp_utils import get_banner_file | 
					
						
							|  |  |  | from webapp_utils import html_header_with_external_style | 
					
						
							|  |  |  | from webapp_utils import html_footer | 
					
						
							|  |  |  | from webapp_utils import edit_text_field | 
					
						
							|  |  |  | from webapp_utils import edit_number_field | 
					
						
							|  |  |  | from webapp_utils import edit_currency_field | 
					
						
							|  |  |  | from webapp_post import individual_post_as_html | 
					
						
							| 
									
										
										
										
											2022-05-22 12:37:57 +00:00
										 |  |  | from maps import get_map_preferences_url | 
					
						
							|  |  |  | from maps import get_map_preferences_coords | 
					
						
							| 
									
										
										
										
											2023-08-03 12:35:43 +00:00
										 |  |  | from maps import get_location_from_post | 
					
						
							| 
									
										
										
										
											2023-11-24 14:25:57 +00:00
										 |  |  | from cache import get_person_from_cache | 
					
						
							| 
									
										
										
										
											2024-09-15 12:04:23 +00:00
										 |  |  | from person import get_person_notes | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  | def _html_new_post_drop_down(scope_icon: str, scope_description: str, | 
					
						
							|  |  |  |                              reply_str: str, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                              translate: {}, | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                              show_public_on_dropdown: bool, | 
					
						
							| 
									
										
										
										
											2021-12-31 23:50:29 +00:00
										 |  |  |                              default_timeline: str, | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                              path_base: str, | 
					
						
							|  |  |  |                              dropdown_new_post_suffix: str, | 
					
						
							|  |  |  |                              dropdown_new_blog_suffix: str, | 
					
						
							|  |  |  |                              dropdown_unlisted_suffix: str, | 
					
						
							|  |  |  |                              dropdown_followers_suffix: str, | 
					
						
							|  |  |  |                              dropdown_dm_suffix: str, | 
					
						
							|  |  |  |                              dropdown_reminder_suffix: str, | 
					
						
							|  |  |  |                              dropdown_report_suffix: str, | 
					
						
							|  |  |  |                              no_drop_down: bool, | 
					
						
							| 
									
										
										
										
											2023-04-05 18:07:08 +00:00
										 |  |  |                              access_keys: {}, | 
					
						
							| 
									
										
										
										
											2024-03-21 18:30:12 +00:00
										 |  |  |                              account_dir: str, | 
					
						
							|  |  |  |                              premium: bool) -> str: | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     """Returns the html for a drop down list of new post types
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content = '<nav><div class="newPostDropdown">\n' | 
					
						
							|  |  |  |     if not no_drop_down: | 
					
						
							|  |  |  |         drop_down_content += '  <input type="checkbox" ' + \ | 
					
						
							| 
									
										
										
										
											2021-02-05 12:22:23 +00:00
										 |  |  |             'id="my-newPostDropdown" value="" name="my-checkbox">\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += '  <label for="my-newPostDropdown"\n' | 
					
						
							|  |  |  |     drop_down_content += '     data-toggle="newPostDropdown">\n' | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |     drop_down_content += '  <img loading="lazy" decoding="async" ' + \ | 
					
						
							|  |  |  |         'alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         'icons/' + scope_icon + '"/><b>' + scope_description + '</b></label>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if no_drop_down: | 
					
						
							|  |  |  |         drop_down_content += '</div></nav>\n' | 
					
						
							|  |  |  |         return drop_down_content | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     drop_down_content += '  <ul>\n' | 
					
						
							|  |  |  |     if show_public_on_dropdown: | 
					
						
							|  |  |  |         drop_down_content += \ | 
					
						
							|  |  |  |             '<li><a href="' + path_base + dropdown_new_post_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |             '" accesskey="' + access_keys['Public'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |             '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |             'icons/scope_public.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Public'] + '</b><br>' + \ | 
					
						
							|  |  |  |             translate['Visible to anyone'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2021-12-31 23:50:29 +00:00
										 |  |  |         if default_timeline == 'tlfeatures': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             drop_down_content += \ | 
					
						
							|  |  |  |                 '<li><a href="' + path_base + dropdown_new_blog_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |                 '" accesskey="' + access_keys['menuBlogs'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |                 '<img loading="lazy" decoding="async" ' + \ | 
					
						
							|  |  |  |                 'alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |                 'icons/scope_blog.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 translate['Article'] + '</b><br>' + \ | 
					
						
							|  |  |  |                 translate['Create an article'] + '</a></li>\n' | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             drop_down_content += \ | 
					
						
							|  |  |  |                 '<li><a href="' + path_base + dropdown_new_blog_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |                 '" accesskey="' + access_keys['menuBlogs'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |                 '<img loading="lazy" decoding="async" ' + \ | 
					
						
							|  |  |  |                 'alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |                 'icons/scope_blog.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 translate['Blog'] + '</b><br>' + \ | 
					
						
							|  |  |  |                 translate['Publicly visible post'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2022-03-12 13:28:32 +00:00
										 |  |  |     drop_down_content += \ | 
					
						
							|  |  |  |         '<li><a href="' + path_base + dropdown_unlisted_suffix + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |         '"><img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2022-03-12 13:28:32 +00:00
										 |  |  |         'icons/scope_unlisted.png"/><b>' + \ | 
					
						
							|  |  |  |         translate['Unlisted'] + '</b><br>' + \ | 
					
						
							|  |  |  |         translate['Not on public timeline'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2024-03-21 18:30:12 +00:00
										 |  |  |     followers_str = translate['Followers'] | 
					
						
							|  |  |  |     followers_desc_str = translate['Only to followers'] | 
					
						
							|  |  |  |     if premium: | 
					
						
							|  |  |  |         followers_str = translate['Fans'] | 
					
						
							|  |  |  |         followers_desc_str = translate['Only to fans'] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += \ | 
					
						
							|  |  |  |         '<li><a href="' + path_base + dropdown_followers_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         '" accesskey="' + access_keys['menuFollowers'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |         '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |         'icons/scope_followers.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2024-03-21 18:30:12 +00:00
										 |  |  |         followers_str + '</b><br>' + \ | 
					
						
							|  |  |  |         followers_desc_str + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += \ | 
					
						
							|  |  |  |         '<li><a href="' + path_base + dropdown_dm_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         '" accesskey="' + access_keys['menuDM'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |         '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |         'icons/scope_dm.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         translate['DM'] + '</b><br>' + \ | 
					
						
							|  |  |  |         translate['Only to mentioned people'] + '</a></li>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += \ | 
					
						
							|  |  |  |         '<li><a href="' + path_base + dropdown_reminder_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         '" accesskey="' + access_keys['Reminder'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |         '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |         'icons/scope_reminder.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         translate['Reminder'] + '</b><br>' + \ | 
					
						
							|  |  |  |         translate['Scheduled note to yourself'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += \ | 
					
						
							|  |  |  |         '<li><a href="' + path_base + dropdown_report_suffix + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         '" accesskey="' + access_keys['reportButton'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |         '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |         'icons/scope_report.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         translate['Report'] + '</b><br>' + \ | 
					
						
							|  |  |  |         translate['Send to moderators'] + '</a></li>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     if not reply_str: | 
					
						
							|  |  |  |         drop_down_content += \ | 
					
						
							|  |  |  |             '<li><a href="' + path_base + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |             '/newshare" accesskey="' + access_keys['menuShares'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |             '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |             'icons/scope_share.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Shares'] + '</b><br>' + \ | 
					
						
							|  |  |  |             translate['Describe a shared item'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         drop_down_content += \ | 
					
						
							|  |  |  |             '<li><a href="' + path_base + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |             '/newwanted" accesskey="' + access_keys['menuWanted'] + '">' + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |             '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |             'icons/scope_wanted.png"/><b>' + \ | 
					
						
							|  |  |  |             translate['Wanted'] + '</b><br>' + \ | 
					
						
							|  |  |  |             translate['Describe something wanted'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2024-01-01 16:59:22 +00:00
										 |  |  |         drop_down_content += \ | 
					
						
							|  |  |  |             '<li><a href="' + path_base + \ | 
					
						
							|  |  |  |             '/newreadingstatus" accesskey="' + \ | 
					
						
							|  |  |  |             access_keys['menuReadingStatus'] + '">' + \ | 
					
						
							|  |  |  |             '<img loading="lazy" decoding="async" alt="" title="" src="/' + \ | 
					
						
							|  |  |  |             'icons/scope_readingstatus.png"/><b>' + \ | 
					
						
							|  |  |  |             translate['Reading Status'] + '</b><br>' + \ | 
					
						
							|  |  |  |             translate['Book reading updates'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2023-04-05 18:07:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # whether to show votes | 
					
						
							|  |  |  |     show_vote_file = account_dir + '/.noVotes' | 
					
						
							|  |  |  |     if not os.path.isfile(show_vote_file): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         drop_down_content += \ | 
					
						
							|  |  |  |             '<li><a href="' + path_base + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |             '/newquestion"><img loading="lazy" decoding="async" ' + \ | 
					
						
							|  |  |  |             'alt="" title="" src="/' + \ | 
					
						
							| 
									
										
										
										
											2020-12-09 13:08:26 +00:00
										 |  |  |             'icons/scope_question.png"/><b>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Question'] + '</b><br>' + \ | 
					
						
							|  |  |  |             translate['Ask a question'] + '</a></li>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += '  </ul>\n' | 
					
						
							| 
									
										
										
										
											2021-02-05 12:14:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     drop_down_content += '</div></nav>\n' | 
					
						
							|  |  |  |     return drop_down_content | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  | def _get_date_from_tags(tags: []) -> (str, str): | 
					
						
							|  |  |  |     """Returns the date from the tags list
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     for tag_item in tags: | 
					
						
							|  |  |  |         if not tag_item.get('type'): | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if tag_item['type'] != 'Event': | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if not tag_item.get('startTime'): | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if not isinstance(tag_item['startTime'], str): | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if 'T' not in tag_item['startTime']: | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         start_time = tag_item['startTime'] | 
					
						
							|  |  |  |         if not tag_item.get('endTime'): | 
					
						
							|  |  |  |             return start_time, '' | 
					
						
							|  |  |  |         if not isinstance(tag_item['endTime'], str): | 
					
						
							|  |  |  |             return start_time, '' | 
					
						
							|  |  |  |         if 'T' not in tag_item['endTime']: | 
					
						
							|  |  |  |             return start_time, '' | 
					
						
							|  |  |  |         end_time = tag_item['endTime'] | 
					
						
							|  |  |  |         return start_time, end_time | 
					
						
							|  |  |  |     return '', '' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-16 11:25:06 +00:00
										 |  |  | def _remove_initial_mentions_from_content(content: str) -> str: | 
					
						
							|  |  |  |     """ Removes initial @mentions from content
 | 
					
						
							|  |  |  |     This happens when a the html content is converted back to plain text | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     if not content.startswith('@'): | 
					
						
							|  |  |  |         return content | 
					
						
							|  |  |  |     words = content.split(' ') | 
					
						
							|  |  |  |     new_content = '' | 
					
						
							|  |  |  |     for wrd in words: | 
					
						
							|  |  |  |         if wrd.startswith('@'): | 
					
						
							|  |  |  |             continue | 
					
						
							|  |  |  |         if new_content: | 
					
						
							|  |  |  |             new_content += ' ' + wrd | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             new_content += wrd | 
					
						
							|  |  |  |     return new_content | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  | def html_new_post(edit_post_params: {}, | 
					
						
							|  |  |  |                   media_instance: bool, translate: {}, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                   base_dir: str, http_prefix: str, | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |                   path: str, in_reply_to: str, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                   mentions: [], | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                   share_description: str, | 
					
						
							|  |  |  |                   report_url: str, page_number: int, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                   category: str, | 
					
						
							|  |  |  |                   nickname: str, domain: str, | 
					
						
							|  |  |  |                   domain_full: str, | 
					
						
							| 
									
										
										
										
											2021-12-31 23:50:29 +00:00
										 |  |  |                   default_timeline: str, newswire: {}, | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                   theme: str, no_drop_down: bool, | 
					
						
							|  |  |  |                   access_keys: {}, custom_submit_text: str, | 
					
						
							| 
									
										
										
										
											2024-10-06 16:22:13 +00:00
										 |  |  |                   conversation_id: str, convthread_id: str, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                   recent_posts_cache: {}, max_recent_posts: int, | 
					
						
							|  |  |  |                   session, cached_webfingers: {}, | 
					
						
							|  |  |  |                   person_cache: {}, port: int, | 
					
						
							|  |  |  |                   post_json_object: {}, | 
					
						
							|  |  |  |                   project_version: str, | 
					
						
							|  |  |  |                   yt_replace_domain: str, | 
					
						
							|  |  |  |                   twitter_replacement_domain: str, | 
					
						
							|  |  |  |                   show_published_date_only: bool, | 
					
						
							|  |  |  |                   peertube_instances: [], | 
					
						
							|  |  |  |                   allow_local_network_access: bool, | 
					
						
							|  |  |  |                   system_language: str, | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |                   languages_understood: [], | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                   max_like_count: int, signing_priv_key_pem: str, | 
					
						
							|  |  |  |                   cw_lists: {}, lists_enabled: str, | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |                   box_name: str, | 
					
						
							| 
									
										
										
										
											2022-07-05 14:40:26 +00:00
										 |  |  |                   reply_is_chat: bool, bold_reading: bool, | 
					
						
							| 
									
										
										
										
											2022-11-13 18:54:11 +00:00
										 |  |  |                   dogwhistles: {}, | 
					
						
							| 
									
										
										
										
											2022-11-25 20:52:47 +00:00
										 |  |  |                   min_images_for_accounts: [], | 
					
						
							| 
									
										
										
										
											2022-12-08 15:28:17 +00:00
										 |  |  |                   default_month: int, default_year: int, | 
					
						
							| 
									
										
										
										
											2023-01-13 15:04:48 +00:00
										 |  |  |                   default_post_language: str, | 
					
						
							| 
									
										
										
										
											2023-01-13 17:41:48 +00:00
										 |  |  |                   buy_sites: {}, | 
					
						
							| 
									
										
										
										
											2024-01-18 13:27:22 +00:00
										 |  |  |                   default_buy_site: str, | 
					
						
							| 
									
										
										
										
											2024-10-12 10:53:04 +00:00
										 |  |  |                   auto_cw_cache: {}, | 
					
						
							| 
									
										
										
										
											2024-12-17 13:50:48 +00:00
										 |  |  |                   searchable_by_default: str, | 
					
						
							| 
									
										
										
										
											2025-01-20 17:55:29 +00:00
										 |  |  |                   mitm_servers: [], | 
					
						
							|  |  |  |                   instance_software: {}) -> str: | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     """New post screen
 | 
					
						
							|  |  |  |     """
 | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     # get the json if this is an edited post | 
					
						
							|  |  |  |     edited_post_json = None | 
					
						
							| 
									
										
										
										
											2022-11-16 14:51:57 +00:00
										 |  |  |     edited_published = '' | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     if edit_post_params: | 
					
						
							|  |  |  |         if edit_post_params.get('post_url'): | 
					
						
							|  |  |  |             edited_post_filename = \ | 
					
						
							|  |  |  |                 locate_post(base_dir, nickname, | 
					
						
							|  |  |  |                             domain, edit_post_params['post_url']) | 
					
						
							|  |  |  |             if edited_post_filename: | 
					
						
							|  |  |  |                 edited_post_json = load_json(edited_post_filename) | 
					
						
							|  |  |  |                 if not has_object_dict(edited_post_json): | 
					
						
							|  |  |  |                     return '' | 
					
						
							|  |  |  |         if not edited_post_json: | 
					
						
							|  |  |  |             return '' | 
					
						
							| 
									
										
										
										
											2023-01-13 17:41:48 +00:00
										 |  |  |         buy_links = \ | 
					
						
							|  |  |  |             get_buy_links(edited_post_json, translate, buy_sites) | 
					
						
							|  |  |  |         if buy_links: | 
					
						
							|  |  |  |             for _, buy_url in buy_links.items(): | 
					
						
							|  |  |  |                 default_buy_site = buy_url | 
					
						
							|  |  |  |                 break | 
					
						
							| 
									
										
										
										
											2024-10-06 09:41:21 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         # Due to lack of AP specification maintenance, a conversation can also | 
					
						
							|  |  |  |         # be referred to as a thread or (confusingly) "context" | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |         if edited_post_json['object'].get('conversation'): | 
					
						
							|  |  |  |             conversation_id = edited_post_json['object']['conversation'] | 
					
						
							| 
									
										
										
										
											2023-01-09 11:38:05 +00:00
										 |  |  |         elif edited_post_json['object'].get('context'): | 
					
						
							|  |  |  |             conversation_id = edited_post_json['object']['context'] | 
					
						
							| 
									
										
										
										
											2024-10-06 09:41:21 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-10-06 16:22:13 +00:00
										 |  |  |         if edited_post_json['object'].get('thread'): | 
					
						
							|  |  |  |             convthread_id = edited_post_json['object']['thread'] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-15 23:26:58 +00:00
										 |  |  |         if edit_post_params.get('replyTo'): | 
					
						
							|  |  |  |             in_reply_to = edit_post_params['replyTo'] | 
					
						
							| 
									
										
										
										
											2022-11-16 11:08:46 +00:00
										 |  |  |         if edit_post_params['scope'] == 'dm': | 
					
						
							| 
									
										
										
										
											2022-11-16 10:24:00 +00:00
										 |  |  |             mentions = edited_post_json['object']['to'] | 
					
						
							| 
									
										
										
										
											2022-11-16 14:51:57 +00:00
										 |  |  |         edited_published = \ | 
					
						
							|  |  |  |             edited_post_json['object']['published'] | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # default subject line or content warning | 
					
						
							|  |  |  |     default_subject = '' | 
					
						
							|  |  |  |     if share_description: | 
					
						
							|  |  |  |         default_subject = share_description | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     default_location = '' | 
					
						
							|  |  |  |     default_start_time = '' | 
					
						
							|  |  |  |     default_end_time = '' | 
					
						
							| 
									
										
										
										
											2022-11-25 20:52:47 +00:00
										 |  |  |     if default_month and default_year: | 
					
						
							|  |  |  |         default_month_str = str(default_month) | 
					
						
							|  |  |  |         if default_month < 10: | 
					
						
							|  |  |  |             default_month_str = '0' + default_month_str | 
					
						
							|  |  |  |         default_start_time = \ | 
					
						
							|  |  |  |             str(default_year) + '-' + default_month_str + '-01T09:00:00' | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     if edited_post_json: | 
					
						
							|  |  |  |         # if this is an edited post then get the subject line or | 
					
						
							|  |  |  |         # content warning | 
					
						
							|  |  |  |         summary_str = get_content_from_post(edited_post_json, system_language, | 
					
						
							|  |  |  |                                             languages_understood, "summary") | 
					
						
							|  |  |  |         if summary_str: | 
					
						
							|  |  |  |             default_subject = remove_html(summary_str) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if edited_post_json['object'].get('tag'): | 
					
						
							|  |  |  |             # if this is an edited post then get the location | 
					
						
							| 
									
										
										
										
											2023-08-03 12:35:43 +00:00
										 |  |  |             location_str = get_location_from_post(edited_post_json) | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |             if location_str: | 
					
						
							|  |  |  |                 default_location = location_str | 
					
						
							|  |  |  |             # if this is an edited post then get the start and end time | 
					
						
							|  |  |  |             default_start_time, default_end_time = \ | 
					
						
							|  |  |  |                 _get_date_from_tags(edited_post_json['object']['tag']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     reply_str = '' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     is_new_reminder = False | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  |     if path.endswith('/newreminder'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         is_new_reminder = True | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # the date and time | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     date_and_time_str = '<p>\n' | 
					
						
							|  |  |  |     if not is_new_reminder: | 
					
						
							|  |  |  |         date_and_time_str += \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |             '<img loading="lazy" decoding="async" alt="" title="" ' + \ | 
					
						
							| 
									
										
										
										
											2022-06-08 09:20:56 +00:00
										 |  |  |             'class="emojicalendar" src="/icons/calendar.png"/>\n' | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  |     # select a date and time for this post | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     date_and_time_str += '<label class="labels">' + \ | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  |         translate['Date'] + ': </label>\n' | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     date_default = '' | 
					
						
							|  |  |  |     time_default = '' | 
					
						
							|  |  |  |     if default_start_time: | 
					
						
							|  |  |  |         date_default = ' value="' + default_start_time.split('T')[0] + '"' | 
					
						
							|  |  |  |         time_default = ' value="' + default_start_time.split('T')[1] + '"' | 
					
						
							| 
									
										
										
										
											2022-11-15 19:32:10 +00:00
										 |  |  |     end_time_default = '' | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     if default_end_time: | 
					
						
							|  |  |  |         end_time_default = ' value="' + default_end_time.split('T')[1] + '"' | 
					
						
							|  |  |  |     date_and_time_str += \ | 
					
						
							|  |  |  |         '<input type="date" name="eventDate"' + date_default + '>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     date_and_time_str += '<label class="labelsright">' + \ | 
					
						
							| 
									
										
										
										
											2022-05-23 12:14:36 +00:00
										 |  |  |         translate['Start Time'] + ': ' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     date_and_time_str += \ | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |         '<input type="time" name="eventTime"' + \ | 
					
						
							|  |  |  |         time_default + '></label>\n<br>\n' | 
					
						
							| 
									
										
										
										
											2022-05-23 12:14:36 +00:00
										 |  |  |     date_and_time_str += '<label class="labelsright">' + \ | 
					
						
							|  |  |  |         translate['End Time'] + ': ' | 
					
						
							|  |  |  |     date_and_time_str += \ | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |         '<input type="time" name="eventEndTime"' + \ | 
					
						
							|  |  |  |         end_time_default + '></label>\n</p>\n' | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     show_public_on_dropdown = True | 
					
						
							|  |  |  |     message_box_height = 400 | 
					
						
							| 
									
										
										
										
											2022-06-08 09:38:00 +00:00
										 |  |  |     image_description_height = 150 | 
					
						
							| 
									
										
										
										
											2023-02-18 22:10:15 +00:00
										 |  |  |     transcript_height = 1000 | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # filename of the banner shown at the top | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     banner_file, _ = \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |         get_banner_file(base_dir, nickname, domain, theme) | 
					
						
							| 
									
										
										
										
											2024-10-22 12:36:24 +00:00
										 |  |  |     banner_path = '/users/' + nickname + '/' + banner_file | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |     if not path.endswith('/newshare') and not path.endswith('/newwanted'): | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         if not path.endswith('/newreport'): | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |             if not in_reply_to or is_new_reminder: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 new_post_text = '<h1>' + \ | 
					
						
							| 
									
										
										
										
											2020-12-07 11:03:14 +00:00
										 |  |  |                     translate['Write your post text below.'] + '</h1>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 new_post_text = '' | 
					
						
							| 
									
										
										
										
											2021-09-19 16:54:32 +00:00
										 |  |  |                 if category != 'accommodation': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                     new_post_text = \ | 
					
						
							| 
									
										
										
										
											2021-09-19 16:54:32 +00:00
										 |  |  |                         '<p class="new-post-text">' + \ | 
					
						
							|  |  |  |                         translate['Write your reply to'] + \ | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |                         ' <a href="' + in_reply_to + \ | 
					
						
							| 
									
										
										
										
											2021-09-19 16:54:32 +00:00
										 |  |  |                         '" rel="nofollow noopener noreferrer" ' + \ | 
					
						
							|  |  |  |                         'target="_blank">' + \ | 
					
						
							|  |  |  |                         translate['this post'] + '</a></p>\n' | 
					
						
							| 
									
										
										
										
											2023-09-17 14:46:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                     # is sending posts to this account blocked? | 
					
						
							| 
									
										
										
										
											2024-12-24 18:17:36 +00:00
										 |  |  |                     reply_actor = in_reply_to | 
					
						
							|  |  |  |                     reply_nickname = get_nickname_from_actor(in_reply_to) | 
					
						
							|  |  |  |                     if reply_nickname: | 
					
						
							|  |  |  |                         reply_actor = \ | 
					
						
							|  |  |  |                             in_reply_to.split('/' + reply_nickname)[0] + \ | 
					
						
							|  |  |  |                             '/' + reply_nickname | 
					
						
							|  |  |  |                     reply_domain, _ = get_domain_from_actor(reply_actor) | 
					
						
							|  |  |  |                     if sending_is_blocked2(base_dir, nickname, domain, | 
					
						
							|  |  |  |                                            reply_domain, reply_actor): | 
					
						
							|  |  |  |                         new_post_text += \ | 
					
						
							|  |  |  |                             '  <p class="new-post-text"><b>' + \ | 
					
						
							|  |  |  |                             translate['FollowAccountWarning'] + \ | 
					
						
							|  |  |  |                             '</b></p>\n' | 
					
						
							| 
									
										
										
										
											2023-09-17 14:46:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-25 22:09:19 +00:00
										 |  |  |                     if post_json_object: | 
					
						
							| 
									
										
										
										
											2022-02-25 19:12:40 +00:00
										 |  |  |                         timezone = \ | 
					
						
							|  |  |  |                             get_account_timezone(base_dir, nickname, domain) | 
					
						
							| 
									
										
										
										
											2022-11-13 18:54:11 +00:00
										 |  |  |                         minimize_all_images = False | 
					
						
							|  |  |  |                         if nickname in min_images_for_accounts: | 
					
						
							|  |  |  |                             minimize_all_images = True | 
					
						
							| 
									
										
										
										
											2024-08-15 10:14:32 +00:00
										 |  |  |                         replied_to_post = \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                             individual_post_as_html(signing_priv_key_pem, | 
					
						
							|  |  |  |                                                     True, recent_posts_cache, | 
					
						
							|  |  |  |                                                     max_recent_posts, | 
					
						
							|  |  |  |                                                     translate, None, | 
					
						
							|  |  |  |                                                     base_dir, session, | 
					
						
							|  |  |  |                                                     cached_webfingers, | 
					
						
							|  |  |  |                                                     person_cache, | 
					
						
							|  |  |  |                                                     nickname, domain, port, | 
					
						
							|  |  |  |                                                     post_json_object, | 
					
						
							|  |  |  |                                                     None, True, False, | 
					
						
							|  |  |  |                                                     http_prefix, | 
					
						
							|  |  |  |                                                     project_version, | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |                                                     box_name, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                                                     yt_replace_domain, | 
					
						
							|  |  |  |                                                     twitter_replacement_domain, | 
					
						
							|  |  |  |                                                     show_published_date_only, | 
					
						
							|  |  |  |                                                     peertube_instances, | 
					
						
							|  |  |  |                                                     allow_local_network_access, | 
					
						
							|  |  |  |                                                     theme, system_language, | 
					
						
							|  |  |  |                                                     max_like_count, | 
					
						
							|  |  |  |                                                     False, False, False, | 
					
						
							|  |  |  |                                                     False, False, False, | 
					
						
							| 
									
										
										
										
											2022-02-25 19:12:40 +00:00
										 |  |  |                                                     cw_lists, lists_enabled, | 
					
						
							| 
									
										
										
										
											2022-03-24 13:14:41 +00:00
										 |  |  |                                                     timezone, False, | 
					
						
							| 
									
										
										
										
											2022-11-13 18:54:11 +00:00
										 |  |  |                                                     bold_reading, dogwhistles, | 
					
						
							| 
									
										
										
										
											2023-01-13 15:04:48 +00:00
										 |  |  |                                                     minimize_all_images, None, | 
					
						
							| 
									
										
										
										
											2024-12-17 13:50:48 +00:00
										 |  |  |                                                     buy_sites, auto_cw_cache, | 
					
						
							| 
									
										
										
										
											2025-01-20 17:55:29 +00:00
										 |  |  |                                                     mitm_servers, | 
					
						
							|  |  |  |                                                     instance_software) | 
					
						
							| 
									
										
										
										
											2024-08-15 10:20:08 +00:00
										 |  |  |                         new_post_text += \ | 
					
						
							|  |  |  |                             open_content_warning(replied_to_post, translate) | 
					
						
							| 
									
										
										
										
											2023-11-24 14:25:57 +00:00
										 |  |  |                         # about the author | 
					
						
							|  |  |  |                         if has_object_dict(post_json_object): | 
					
						
							|  |  |  |                             if post_json_object['object'].get('attributedTo'): | 
					
						
							|  |  |  |                                 attrib_field = \ | 
					
						
							|  |  |  |                                     post_json_object['object']['attributedTo'] | 
					
						
							|  |  |  |                                 attrib_url = get_attributed_to(attrib_field) | 
					
						
							| 
									
										
										
										
											2023-11-24 23:22:04 +00:00
										 |  |  |                                 domain_full = get_full_domain(domain, port) | 
					
						
							|  |  |  |                                 this_account_url = \ | 
					
						
							|  |  |  |                                     '://' + domain_full + '/users/' + nickname | 
					
						
							|  |  |  |                                 if attrib_url and \ | 
					
						
							|  |  |  |                                    not attrib_url.endswith(this_account_url): | 
					
						
							| 
									
										
										
										
											2023-11-24 14:25:57 +00:00
										 |  |  |                                     reply_to_actor = \ | 
					
						
							|  |  |  |                                         get_person_from_cache(base_dir, | 
					
						
							|  |  |  |                                                               attrib_url, | 
					
						
							|  |  |  |                                                               person_cache) | 
					
						
							|  |  |  |                                     if reply_to_actor: | 
					
						
							| 
									
										
										
										
											2024-05-15 16:13:36 +00:00
										 |  |  |                                         summary = None | 
					
						
							|  |  |  |                                         if reply_to_actor.get('summary'): | 
					
						
							|  |  |  |                                             summary = reply_to_actor['summary'] | 
					
						
							| 
									
										
										
										
											2024-09-15 12:04:23 +00:00
										 |  |  |                                         attrib_nickname = \ | 
					
						
							|  |  |  |                                             get_nickname_from_actor(attrib_url) | 
					
						
							|  |  |  |                                         attrib_domain, attrib_port = \ | 
					
						
							|  |  |  |                                             get_domain_from_actor(attrib_url) | 
					
						
							|  |  |  |                                         if attrib_nickname and attrib_domain: | 
					
						
							|  |  |  |                                             attrib_domain_full = \ | 
					
						
							|  |  |  |                                                 get_full_domain(attrib_domain, | 
					
						
							|  |  |  |                                                                 attrib_port) | 
					
						
							|  |  |  |                                             attrib_handle = \ | 
					
						
							|  |  |  |                                                 attrib_nickname + '@' + \ | 
					
						
							|  |  |  |                                                 attrib_domain_full | 
					
						
							|  |  |  |                                             person_notes = \ | 
					
						
							|  |  |  |                                                 get_person_notes(base_dir, | 
					
						
							|  |  |  |                                                                  nickname, | 
					
						
							|  |  |  |                                                                  domain, | 
					
						
							|  |  |  |                                                                  attrib_handle) | 
					
						
							|  |  |  |                                             if person_notes: | 
					
						
							|  |  |  |                                                 if summary: | 
					
						
							|  |  |  |                                                     summary = \ | 
					
						
							|  |  |  |                                                         '<b>' + \ | 
					
						
							|  |  |  |                                                         person_notes + \ | 
					
						
							|  |  |  |                                                         '</b>' + \ | 
					
						
							|  |  |  |                                                         '<br><br>' + summary | 
					
						
							|  |  |  |                                                 else: | 
					
						
							|  |  |  |                                                     summary = \ | 
					
						
							|  |  |  |                                                         '<b>' + \ | 
					
						
							|  |  |  |                                                         person_notes + \ | 
					
						
							|  |  |  |                                                         '</b>' | 
					
						
							| 
									
										
										
										
											2023-11-24 14:25:57 +00:00
										 |  |  |                                         if summary: | 
					
						
							|  |  |  |                                             if not dangerous_markup(summary, | 
					
						
							|  |  |  |                                                                     False, []): | 
					
						
							|  |  |  |                                                 reply_to_description = \ | 
					
						
							|  |  |  |                                                     summary | 
					
						
							|  |  |  |                                             else: | 
					
						
							|  |  |  |                                                 reply_to_description = \ | 
					
						
							|  |  |  |                                                     remove_html(summary) | 
					
						
							|  |  |  |                                             about_author_str = \ | 
					
						
							|  |  |  |                                                 translate['About the author'] | 
					
						
							|  |  |  |                                             new_post_text += \ | 
					
						
							|  |  |  |                                                 '<div class="container">\n' + \ | 
					
						
							|  |  |  |                                                 '  <div class=' + \ | 
					
						
							|  |  |  |                                                 '"post-title">\n' + \ | 
					
						
							|  |  |  |                                                 '    ' + about_author_str + \ | 
					
						
							|  |  |  |                                                 '\n  </div>\n' + \ | 
					
						
							|  |  |  |                                                 '  ' + reply_to_description + \ | 
					
						
							|  |  |  |                                                 '\n</div>\n' | 
					
						
							| 
									
										
										
										
											2021-11-12 19:12:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 reply_str = '<input type="hidden" ' + \ | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |                     'name="replyTo" value="' + in_reply_to + '">\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 # if replying to a non-public post then also make | 
					
						
							|  |  |  |                 # this post non-public | 
					
						
							| 
									
										
										
										
											2021-12-28 14:41:10 +00:00
										 |  |  |                 if not is_public_post_from_url(base_dir, nickname, domain, | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |                                                in_reply_to): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                     new_post_path = path | 
					
						
							|  |  |  |                     if '?' in new_post_path: | 
					
						
							|  |  |  |                         new_post_path = new_post_path.split('?')[0] | 
					
						
							|  |  |  |                     if new_post_path.endswith('/newpost'): | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                         path = path.replace('/newpost', '/newfollowers') | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                     show_public_on_dropdown = False | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             new_post_text = \ | 
					
						
							| 
									
										
										
										
											2021-07-05 20:24:43 +00:00
										 |  |  |                 '<h1>' + translate['Write your report below.'] + '</h1>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # custom report header with any additional instructions | 
					
						
							| 
									
										
										
										
											2024-05-12 12:35:26 +00:00
										 |  |  |             dir_str = data_dir(base_dir) | 
					
						
							|  |  |  |             if os.path.isfile(dir_str + '/report.txt'): | 
					
						
							| 
									
										
										
										
											2024-07-13 22:56:02 +00:00
										 |  |  |                 try: | 
					
						
							|  |  |  |                     with open(dir_str + '/report.txt', 'r', | 
					
						
							| 
									
										
										
										
											2024-07-16 12:20:58 +00:00
										 |  |  |                               encoding='utf-8') as fp_report: | 
					
						
							|  |  |  |                         custom_report_text = fp_report.read() | 
					
						
							| 
									
										
										
										
											2024-07-13 22:56:02 +00:00
										 |  |  |                         if '</p>' not in custom_report_text: | 
					
						
							|  |  |  |                             custom_report_text = \ | 
					
						
							|  |  |  |                                 '<p class="login-subtext">' + \ | 
					
						
							|  |  |  |                                 custom_report_text + '</p>\n' | 
					
						
							|  |  |  |                             rep_str = '<p class="login-subtext">' | 
					
						
							|  |  |  |                             custom_report_text = \ | 
					
						
							|  |  |  |                                 custom_report_text.replace('<p>', rep_str) | 
					
						
							|  |  |  |                             new_post_text += custom_report_text | 
					
						
							|  |  |  |                 except OSError as exc: | 
					
						
							|  |  |  |                     print('EX: html_new_post unable to read ' + | 
					
						
							|  |  |  |                           dir_str + '/report.txt ' + str(exc)) | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             idx = 'This message only goes to moderators, even if it ' + \ | 
					
						
							|  |  |  |                 'mentions other fediverse addresses.' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             new_post_text += \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 '<p class="new-post-subtext">' + translate[idx] + '</p>\n' + \ | 
					
						
							|  |  |  |                 '<p class="new-post-subtext">' + translate['Also see'] + \ | 
					
						
							|  |  |  |                 ' <a href="/terms">' + \ | 
					
						
							|  |  |  |                 translate['Terms of Service'] + '</a></p>\n' | 
					
						
							|  |  |  |     else: | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |         if path.endswith('/newshare'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             new_post_text = \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |                 '<h1>' + \ | 
					
						
							|  |  |  |                 translate['Enter the details for your shared item below.'] + \ | 
					
						
							|  |  |  |                 '</h1>\n' | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             new_post_text = \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |                 '<h1>' + \ | 
					
						
							|  |  |  |                 translate['Enter the details for your wanted item below.'] + \ | 
					
						
							|  |  |  |                 '</h1>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if path.endswith('/newquestion'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         new_post_text = \ | 
					
						
							| 
									
										
										
										
											2020-11-21 09:56:45 +00:00
										 |  |  |             '<h1>' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Enter the choices for your question below.'] + \ | 
					
						
							| 
									
										
										
										
											2020-11-21 09:56:45 +00:00
										 |  |  |             '</h1>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-12 12:35:26 +00:00
										 |  |  |     dir_str = data_dir(base_dir) | 
					
						
							|  |  |  |     if os.path.isfile(dir_str + '/newpost.txt'): | 
					
						
							| 
									
										
										
										
											2024-07-13 22:56:02 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											2024-07-16 12:20:58 +00:00
										 |  |  |             with open(dir_str + '/newpost.txt', 'r', | 
					
						
							|  |  |  |                       encoding='utf-8') as fp_new: | 
					
						
							|  |  |  |                 new_post_text = '<p>' + fp_new.read() + '</p>\n' | 
					
						
							| 
									
										
										
										
											2024-07-13 22:56:02 +00:00
										 |  |  |         except OSError: | 
					
						
							|  |  |  |             print('EX: html_new_post unable to read ' + | 
					
						
							|  |  |  |                   dir_str + '/newpost.txt') | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |     css_filename = base_dir + '/epicyon-profile.css' | 
					
						
							| 
									
										
										
										
											2021-12-25 16:17:53 +00:00
										 |  |  |     if os.path.isfile(base_dir + '/epicyon.css'): | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         css_filename = base_dir + '/epicyon.css' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if '?' in path: | 
					
						
							|  |  |  |         path = path.split('?')[0] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_endpoints = get_new_post_endpoints() | 
					
						
							|  |  |  |     path_base = path | 
					
						
							|  |  |  |     for curr_post_type in new_post_endpoints: | 
					
						
							|  |  |  |         path_base = path_base.replace('/' + curr_post_type, '') | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 13:46:25 +00:00
										 |  |  |     attach_str = 'Attach an image, video or audio file' | 
					
						
							|  |  |  |     new_post_image_section = begin_edit_section('📷 ' + translate[attach_str]) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_image_section += \ | 
					
						
							| 
									
										
										
										
											2021-07-24 10:13:40 +00:00
										 |  |  |         '      <input type="file" id="attachpic" name="attachpic"' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     formats_string = get_media_formats() | 
					
						
							|  |  |  |     new_post_image_section += \ | 
					
						
							|  |  |  |         '            accept="' + formats_string + '">\n' | 
					
						
							| 
									
										
										
										
											2022-06-08 09:30:18 +00:00
										 |  |  |     new_post_image_section += \ | 
					
						
							|  |  |  |         '    <label class="labels">' + \ | 
					
						
							|  |  |  |         translate['Describe your attachment'] + '</label>\n' | 
					
						
							| 
									
										
										
										
											2022-04-15 13:27:25 +00:00
										 |  |  |     new_post_image_section += \ | 
					
						
							| 
									
										
										
										
											2022-06-08 09:20:56 +00:00
										 |  |  |         '    <textarea id="imageDescription" name="imageDescription" ' + \ | 
					
						
							|  |  |  |         'style="height:' + str(image_description_height) + \ | 
					
						
							|  |  |  |         'px" spellcheck="true" autocomplete="on"></textarea>\n' | 
					
						
							| 
									
										
										
										
											2023-01-23 10:39:49 +00:00
										 |  |  |     media_creator_str = translate['Media creator'] | 
					
						
							|  |  |  |     new_post_image_section += \ | 
					
						
							|  |  |  |         edit_text_field(media_creator_str, 'mediaCreator', '', '') | 
					
						
							|  |  |  |     media_license_str = translate['Media license'] | 
					
						
							|  |  |  |     new_post_image_section += \ | 
					
						
							|  |  |  |         edit_text_field(media_license_str, 'mediaLicense', | 
					
						
							|  |  |  |                         '', 'CC-BY-NC') | 
					
						
							| 
									
										
										
										
											2023-02-18 22:10:15 +00:00
										 |  |  |     new_post_image_section += \ | 
					
						
							|  |  |  |         '    <label class="labels">' + \ | 
					
						
							|  |  |  |         translate['Transcript'] + ' (WebVTT)</label>\n' | 
					
						
							|  |  |  |     new_post_image_section += \ | 
					
						
							|  |  |  |         '    <textarea id="videoTranscript" name="videoTranscript" ' + \ | 
					
						
							|  |  |  |         'style="height:' + str(transcript_height) + \ | 
					
						
							|  |  |  |         'px" spellcheck="true" autocomplete="on"></textarea>\n' | 
					
						
							| 
									
										
										
										
											2022-04-15 12:56:30 +00:00
										 |  |  |     new_post_image_section += end_edit_section() | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-19 13:56:26 +00:00
										 |  |  |     new_post_emoji_section = '' | 
					
						
							| 
									
										
										
										
											2024-01-03 17:59:31 +00:00
										 |  |  |     if not path.endswith('/newreadingstatus'): | 
					
						
							|  |  |  |         common_emoji_str = html_common_emoji(base_dir, 16) | 
					
						
							|  |  |  |         if common_emoji_str: | 
					
						
							|  |  |  |             new_post_emoji_section = \ | 
					
						
							|  |  |  |                 begin_edit_section('😀 ' + translate['Common emoji']) | 
					
						
							|  |  |  |             new_post_emoji_section += \ | 
					
						
							|  |  |  |                 '<label class="labels">' + \ | 
					
						
							|  |  |  |                 translate['Copy and paste into your text'] + '</label><br>\n' | 
					
						
							|  |  |  |             new_post_emoji_section += common_emoji_str | 
					
						
							|  |  |  |             new_post_emoji_section += end_edit_section() | 
					
						
							| 
									
										
										
										
											2022-04-19 11:22:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     scope_icon = 'scope_public.png' | 
					
						
							|  |  |  |     scope_description = translate['Public'] | 
					
						
							|  |  |  |     if share_description: | 
					
						
							| 
									
										
										
										
											2021-09-19 16:54:32 +00:00
										 |  |  |         if category == 'accommodation': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             placeholder_subject = translate['Request to stay'] | 
					
						
							| 
									
										
										
										
											2021-09-19 16:54:32 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             placeholder_subject = translate['Ask about a shared item.'] + '..' | 
					
						
							| 
									
										
										
										
											2020-12-07 11:03:14 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         placeholder_subject = \ | 
					
						
							| 
									
										
										
										
											2020-12-07 11:03:14 +00:00
										 |  |  |             translate['Subject or Content Warning (optional)'] + '...' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     placeholder_mentions = '' | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |     if in_reply_to: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         placeholder_mentions = \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Replying to'] + '...' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     placeholder_message = '' | 
					
						
							| 
									
										
										
										
											2021-09-19 16:54:32 +00:00
										 |  |  |     if category != 'accommodation': | 
					
						
							| 
									
										
										
										
											2022-01-04 22:48:13 +00:00
										 |  |  |         if default_timeline == 'tlfeatures': | 
					
						
							|  |  |  |             placeholder_message = translate['Write your news report'] + '...' | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             placeholder_message = translate['Write something'] + '...' | 
					
						
							| 
									
										
										
										
											2021-09-19 17:32:22 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         idx = 'Introduce yourself and specify the date ' + \ | 
					
						
							|  |  |  |             'and time when you wish to stay' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         placeholder_message = translate[idx] | 
					
						
							|  |  |  |     extra_fields = '' | 
					
						
							| 
									
										
										
										
											2024-03-21 18:30:12 +00:00
										 |  |  |     premium = is_premium_account(base_dir, nickname, domain) | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     endpoint = 'newpost' | 
					
						
							|  |  |  |     if path.endswith('/newblog'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         placeholder_subject = translate['Title'] | 
					
						
							|  |  |  |         scope_icon = 'scope_blog.png' | 
					
						
							| 
									
										
										
										
											2021-12-31 23:50:29 +00:00
										 |  |  |         if default_timeline != 'tlfeatures': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             scope_description = translate['Blog'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             scope_description = translate['Article'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newblog' | 
					
						
							|  |  |  |     elif path.endswith('/newunlisted'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_unlisted.png' | 
					
						
							|  |  |  |         scope_description = translate['Unlisted'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newunlisted' | 
					
						
							|  |  |  |     elif path.endswith('/newfollowers'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_followers.png' | 
					
						
							|  |  |  |         scope_description = translate['Followers'] | 
					
						
							| 
									
										
										
										
											2024-03-21 18:30:12 +00:00
										 |  |  |         if premium: | 
					
						
							|  |  |  |             scope_description = translate['Fans'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newfollowers' | 
					
						
							|  |  |  |     elif path.endswith('/newdm'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_dm.png' | 
					
						
							|  |  |  |         scope_description = translate['DM'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newdm' | 
					
						
							| 
									
										
										
										
											2022-04-29 21:25:14 +00:00
										 |  |  |         placeholder_message = '⚠️ ' + translate['DM warning'] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     elif is_new_reminder: | 
					
						
							|  |  |  |         scope_icon = 'scope_reminder.png' | 
					
						
							|  |  |  |         scope_description = translate['Reminder'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newreminder' | 
					
						
							|  |  |  |     elif path.endswith('/newreport'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_report.png' | 
					
						
							|  |  |  |         scope_description = translate['Report'] | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newreport' | 
					
						
							|  |  |  |     elif path.endswith('/newquestion'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_question.png' | 
					
						
							|  |  |  |         scope_description = translate['Question'] | 
					
						
							|  |  |  |         placeholder_message = translate['Enter your question'] + '...' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         endpoint = 'newquestion' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields = '<div class="container">\n' | 
					
						
							|  |  |  |         extra_fields += '  <label class="labels">' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Possible answers'] + ':</label><br>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         for question_ctr in range(8): | 
					
						
							|  |  |  |             extra_fields += \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 '  <input type="text" class="questionOption" placeholder="' + \ | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 str(question_ctr + 1) + \ | 
					
						
							|  |  |  |                 '" name="questionOption' + str(question_ctr) + '"><br>\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             '  <label class="labels">' + \ | 
					
						
							|  |  |  |             translate['Duration of listing in days'] + \ | 
					
						
							|  |  |  |             ':</label> <input type="number" name="duration" ' + \ | 
					
						
							|  |  |  |             'min="1" max="365" step="1" value="14"><br>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     elif path.endswith('/newshare'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_share.png' | 
					
						
							|  |  |  |         scope_description = translate['Shared Item'] | 
					
						
							|  |  |  |         placeholder_subject = translate['Name of the shared item'] + '...' | 
					
						
							|  |  |  |         placeholder_message = \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             translate['Description of the item being shared'] + '...' | 
					
						
							|  |  |  |         endpoint = 'newshare' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields = '<div class="container">\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_number_field(translate['Quantity'], | 
					
						
							|  |  |  |                               'itemQty', 1, 1, 999999, 1) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '<br>' + \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_text_field(translate['Type of shared item. eg. hat'] + ':', | 
					
						
							|  |  |  |                             'itemType', '', '', True) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         category_types = get_category_types(base_dir) | 
					
						
							|  |  |  |         cat_str = translate['Category of shared item. eg. clothing'] | 
					
						
							|  |  |  |         extra_fields += '<label class="labels">' + cat_str + '</label><br>\n' | 
					
						
							| 
									
										
										
										
											2021-08-07 17:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '  <select id="themeDropdown" ' + \ | 
					
						
							| 
									
										
										
										
											2021-08-07 17:55:49 +00:00
										 |  |  |             'name="category" class="theme">\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         for cat in category_types: | 
					
						
							|  |  |  |             translated_category = "food" | 
					
						
							|  |  |  |             if translate.get(cat): | 
					
						
							|  |  |  |                 translated_category = translate[cat] | 
					
						
							|  |  |  |             extra_fields += '    <option value="' + \ | 
					
						
							|  |  |  |                 translated_category + '">' + \ | 
					
						
							|  |  |  |                 translated_category + '</option>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         extra_fields += '  </select><br>\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_number_field(translate['Duration of listing in days'], | 
					
						
							|  |  |  |                               'duration', 14, 1, 365, 1) | 
					
						
							| 
									
										
										
										
											2023-08-22 18:56:46 +00:00
										 |  |  |         extra_fields += '  <br>\n' | 
					
						
							| 
									
										
										
										
											2023-08-22 18:23:25 +00:00
										 |  |  |         extra_fields += \ | 
					
						
							|  |  |  |             edit_check_box(translate['Display on your public profile'], | 
					
						
							|  |  |  |                            'shareOnProfile', False) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>\n' | 
					
						
							|  |  |  |         extra_fields += '<div class="container">\n' | 
					
						
							|  |  |  |         city_or_loc_str = translate['City or location of the shared item'] | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |         extra_fields += edit_text_field(city_or_loc_str + ':', 'location', | 
					
						
							|  |  |  |                                         default_location, | 
					
						
							| 
									
										
										
										
											2022-10-23 15:54:01 +00:00
										 |  |  |                                         'https://www.openstreetmap.org/#map=') | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>\n' | 
					
						
							|  |  |  |         extra_fields += '<div class="container">\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_currency_field(translate['Price'] + ':', 'itemPrice', '0.00', | 
					
						
							|  |  |  |                                 '0.00', True) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '<br>' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-08-07 17:44:25 +00:00
										 |  |  |             '<label class="labels">' + translate['Currency'] + '</label><br>\n' | 
					
						
							| 
									
										
										
										
											2021-12-26 17:29:09 +00:00
										 |  |  |         currencies = get_currencies() | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '  <select id="themeDropdown" ' + \ | 
					
						
							| 
									
										
										
										
											2021-08-07 17:55:49 +00:00
										 |  |  |             'name="itemCurrency" class="theme">\n' | 
					
						
							| 
									
										
										
										
											2024-12-23 18:23:47 +00:00
										 |  |  |         currency_list: list[str] = [] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         for symbol, curr_name in currencies.items(): | 
					
						
							|  |  |  |             currency_list.append(curr_name + ' ' + symbol) | 
					
						
							|  |  |  |         currency_list.sort() | 
					
						
							|  |  |  |         default_currency = get_config_param(base_dir, 'defaultCurrency') | 
					
						
							|  |  |  |         if not default_currency: | 
					
						
							|  |  |  |             default_currency = "EUR" | 
					
						
							|  |  |  |         for curr_name in currency_list: | 
					
						
							|  |  |  |             if default_currency not in curr_name: | 
					
						
							|  |  |  |                 extra_fields += '    <option value="' + \ | 
					
						
							|  |  |  |                     curr_name + '">' + curr_name + '</option>\n' | 
					
						
							| 
									
										
										
										
											2021-08-07 18:07:08 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 extra_fields += '    <option value="' + \ | 
					
						
							|  |  |  |                     curr_name + '" selected="selected">' + \ | 
					
						
							|  |  |  |                     curr_name + '</option>\n' | 
					
						
							|  |  |  |         extra_fields += '  </select>\n' | 
					
						
							| 
									
										
										
										
											2021-08-07 17:44:25 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>\n' | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |     elif path.endswith('/newwanted'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         scope_icon = 'scope_wanted.png' | 
					
						
							|  |  |  |         scope_description = translate['Wanted'] | 
					
						
							|  |  |  |         placeholder_subject = translate['Name of the wanted item'] + '...' | 
					
						
							|  |  |  |         placeholder_message = \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |             translate['Description of the item wanted'] + '...' | 
					
						
							|  |  |  |         endpoint = 'newwanted' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields = '<div class="container">\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_number_field(translate['Quantity'], | 
					
						
							|  |  |  |                               'itemQty', 1, 1, 999999, 1) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '<br>' + \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_text_field(translate['Type of wanted item. eg. hat'] + ':', | 
					
						
							|  |  |  |                             'itemType', '', '', True) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         category_types = get_category_types(base_dir) | 
					
						
							|  |  |  |         cat_str = translate['Category of wanted item. eg. clothes'] | 
					
						
							|  |  |  |         extra_fields += '<label class="labels">' + cat_str + '</label><br>\n' | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '  <select id="themeDropdown" ' + \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |             'name="category" class="theme">\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         for cat in category_types: | 
					
						
							|  |  |  |             translated_category = "food" | 
					
						
							|  |  |  |             if translate.get(cat): | 
					
						
							|  |  |  |                 translated_category = translate[cat] | 
					
						
							|  |  |  |             extra_fields += '    <option value="' + \ | 
					
						
							|  |  |  |                 translated_category + '">' + \ | 
					
						
							|  |  |  |                 translated_category + '</option>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         extra_fields += '  </select><br>\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_number_field(translate['Duration of listing in days'], | 
					
						
							|  |  |  |                               'duration', 14, 1, 365, 1) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>\n' | 
					
						
							|  |  |  |         extra_fields += '<div class="container">\n' | 
					
						
							|  |  |  |         city_or_loc_str = translate['City or location of the wanted item'] | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |         extra_fields += edit_text_field(city_or_loc_str + ':', 'location', | 
					
						
							|  |  |  |                                         default_location, | 
					
						
							| 
									
										
										
										
											2022-10-23 15:54:01 +00:00
										 |  |  |                                         'https://www.openstreetmap.org/#map=') | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>\n' | 
					
						
							|  |  |  |         extra_fields += '<div class="container">\n' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |             edit_currency_field(translate['Maximum Price'] + ':', | 
					
						
							|  |  |  |                                 'itemPrice', '0.00', '0.00', True) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '<br>' | 
					
						
							|  |  |  |         extra_fields += \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |             '<label class="labels">' + translate['Currency'] + '</label><br>\n' | 
					
						
							| 
									
										
										
										
											2021-12-26 17:29:09 +00:00
										 |  |  |         currencies = get_currencies() | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '  <select id="themeDropdown" ' + \ | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |             'name="itemCurrency" class="theme">\n' | 
					
						
							| 
									
										
										
										
											2024-12-23 18:23:47 +00:00
										 |  |  |         currency_list: list[str] = [] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         for symbol, curr_name in currencies.items(): | 
					
						
							|  |  |  |             currency_list.append(curr_name + ' ' + symbol) | 
					
						
							|  |  |  |         currency_list.sort() | 
					
						
							|  |  |  |         default_currency = get_config_param(base_dir, 'defaultCurrency') | 
					
						
							|  |  |  |         if not default_currency: | 
					
						
							|  |  |  |             default_currency = "EUR" | 
					
						
							|  |  |  |         for curr_name in currency_list: | 
					
						
							|  |  |  |             if default_currency not in curr_name: | 
					
						
							|  |  |  |                 extra_fields += '    <option value="' + \ | 
					
						
							|  |  |  |                     curr_name + '">' + curr_name + '</option>\n' | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 extra_fields += '    <option value="' + \ | 
					
						
							|  |  |  |                     curr_name + '" selected="selected">' + \ | 
					
						
							|  |  |  |                     curr_name + '</option>\n' | 
					
						
							|  |  |  |         extra_fields += '  </select>\n' | 
					
						
							| 
									
										
										
										
											2021-08-09 18:41:05 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         extra_fields += '</div>\n' | 
					
						
							| 
									
										
										
										
											2024-01-01 23:45:54 +00:00
										 |  |  |     elif path.endswith('/newreadingstatus'): | 
					
						
							|  |  |  |         scope_icon = 'scope_readingstatus.png' | 
					
						
							|  |  |  |         scope_description = translate['Reading Status'] | 
					
						
							|  |  |  |         endpoint = 'newreadingstatus' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         extra_fields = '<div class="container">\n' | 
					
						
							|  |  |  |         cat_str = translate['Update type'] | 
					
						
							|  |  |  |         extra_fields += '<label class="labels">' + cat_str + '</label><br>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         extra_fields += '  <select id="readingUpdateTypeDropdown" ' + \ | 
					
						
							|  |  |  |             'name="readingupdatetype" class="theme">\n' | 
					
						
							|  |  |  |         extra_fields += '    <option value="readingupdatewant">' + \ | 
					
						
							|  |  |  |             translate['want to read'] + '</option>\n' | 
					
						
							|  |  |  |         extra_fields += '    <option value="readingupdateread" ' + \ | 
					
						
							|  |  |  |             'selected="selected">' + \ | 
					
						
							|  |  |  |             translate['am reading'] + '</option>\n' | 
					
						
							|  |  |  |         extra_fields += '    <option value="readingupdatefinished">' + \ | 
					
						
							|  |  |  |             translate['finished reading'] + '</option>\n' | 
					
						
							| 
									
										
										
										
											2024-01-03 13:54:33 +00:00
										 |  |  |         extra_fields += '    <option value="readingupdaterating">' + \ | 
					
						
							| 
									
										
										
										
											2024-01-01 23:45:54 +00:00
										 |  |  |             translate['add a rating'] + '</option>\n' | 
					
						
							|  |  |  |         extra_fields += '  </select><br>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         extra_fields += '<br>' + \ | 
					
						
							|  |  |  |             edit_text_field(translate['Title'] + ':', | 
					
						
							|  |  |  |                             'booktitle', '', '', True) | 
					
						
							| 
									
										
										
										
											2024-01-04 13:53:09 +00:00
										 |  |  |         books_url = 'https://en.wikipedia.org/wiki/Lists_of_books' | 
					
						
							| 
									
										
										
										
											2024-01-01 23:45:54 +00:00
										 |  |  |         extra_fields += '<br>' + \ | 
					
						
							| 
									
										
										
										
											2024-01-04 13:53:09 +00:00
										 |  |  |             edit_text_field('<a href="' + books_url + | 
					
						
							| 
									
										
										
										
											2024-01-04 14:36:01 +00:00
										 |  |  |                             '" target="_blank" ' + | 
					
						
							| 
									
										
										
										
											2024-01-04 13:53:09 +00:00
										 |  |  |                             'rel="nofollow noopener noreferrer">URL</a>:', | 
					
						
							| 
									
										
										
										
											2024-01-01 23:45:54 +00:00
										 |  |  |                             'bookurl', '', 'https://...', True) | 
					
						
							|  |  |  |         extra_fields += '<br>' + \ | 
					
						
							|  |  |  |             edit_number_field(translate['Rating'], | 
					
						
							|  |  |  |                               'bookrating', '', 1, 5, None) | 
					
						
							|  |  |  |         extra_fields += '</div>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     citations_str = '' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     if endpoint == 'newblog': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         citations_filename = \ | 
					
						
							| 
									
										
										
										
											2021-12-26 12:02:29 +00:00
										 |  |  |             acct_dir(base_dir, nickname, domain) + '/.citations.txt' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         if os.path.isfile(citations_filename): | 
					
						
							|  |  |  |             citations_str = '<div class="container">\n' | 
					
						
							|  |  |  |             citations_str += '<p><label class="labels">' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 translate['Citations'] + ':</label></p>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             citations_str += '  <ul>\n' | 
					
						
							|  |  |  |             citations_separator = '#####' | 
					
						
							| 
									
										
										
										
											2024-12-23 18:23:47 +00:00
										 |  |  |             citations: list[str] = [] | 
					
						
							| 
									
										
										
										
											2024-07-13 22:56:02 +00:00
										 |  |  |             try: | 
					
						
							|  |  |  |                 with open(citations_filename, 'r', | 
					
						
							| 
									
										
										
										
											2024-07-14 13:01:46 +00:00
										 |  |  |                           encoding='utf-8') as fp_cit: | 
					
						
							|  |  |  |                     citations = fp_cit.readlines() | 
					
						
							| 
									
										
										
										
											2024-07-13 22:56:02 +00:00
										 |  |  |             except OSError as exc: | 
					
						
							|  |  |  |                 print('EX: html_new_post unable to read ' + | 
					
						
							|  |  |  |                       citations_filename + ' ' + str(exc)) | 
					
						
							| 
									
										
										
										
											2024-07-18 19:42:24 +00:00
										 |  |  |             for line in citations: | 
					
						
							|  |  |  |                 if citations_separator not in line: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 sections = line.strip().split(citations_separator) | 
					
						
							|  |  |  |                 if len(sections) != 3: | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 title = sections[1] | 
					
						
							|  |  |  |                 link = sections[2] | 
					
						
							|  |  |  |                 citations_str += \ | 
					
						
							|  |  |  |                     '    <li><a href="' + link + '"><cite>' + \ | 
					
						
							|  |  |  |                     title + '</cite></a></li>' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             citations_str += '  </ul>\n' | 
					
						
							|  |  |  |             citations_str += '</div>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |     replies_section = '' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     date_and_location = '' | 
					
						
							| 
									
										
										
										
											2024-01-01 23:45:54 +00:00
										 |  |  |     if endpoint not in ('newshare', 'newwanted', 'newreport', | 
					
						
							|  |  |  |                         'newquestion', 'newreadingstatus'): | 
					
						
							| 
									
										
										
										
											2021-11-03 13:44:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         if not is_new_reminder: | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |             replies_section = \ | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  |                 '<div class="container">\n' | 
					
						
							|  |  |  |             if category != 'accommodation': | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |                 replies_section += \ | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  |                     '<p><input type="checkbox" class="profilecheckbox" ' + \ | 
					
						
							|  |  |  |                     'name="commentsEnabled" ' + \ | 
					
						
							|  |  |  |                     'checked><label class="labels"> ' + \ | 
					
						
							|  |  |  |                     translate['Allow replies.'] + '</label></p>\n' | 
					
						
							| 
									
										
										
										
											2024-04-07 11:07:49 +00:00
										 |  |  |                 if endpoint == 'newpost': | 
					
						
							|  |  |  |                     replies_section += \ | 
					
						
							|  |  |  |                         '<p><input type="checkbox" ' + \ | 
					
						
							|  |  |  |                         'class="profilecheckbox" ' + \ | 
					
						
							|  |  |  |                         'name="pinToProfile"><label class="labels"> ' + \ | 
					
						
							|  |  |  |                         translate['Pin this post to your profile.'] + \ | 
					
						
							|  |  |  |                         '</label></p>\n' | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |                 replies_section += \ | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  |                     '<input type="hidden" name="commentsEnabled" ' + \ | 
					
						
							|  |  |  |                     'value="true">\n' | 
					
						
							| 
									
										
										
										
											2024-10-12 10:26:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # Language used dropdown | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  |             supported_languages = get_supported_languages(base_dir) | 
					
						
							| 
									
										
										
										
											2025-01-25 17:03:04 +00:00
										 |  |  |             languages_dropdown = '<br>\n<select id="themeDropdown" ' + \ | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  |                 'name="languagesDropdown" class="theme">' | 
					
						
							|  |  |  |             for lang_name in supported_languages: | 
					
						
							|  |  |  |                 translated_lang_name = lang_name | 
					
						
							|  |  |  |                 if translate.get('lang_' + lang_name): | 
					
						
							|  |  |  |                     translated_lang_name = translate['lang_' + lang_name] | 
					
						
							|  |  |  |                 languages_dropdown += '    <option value="' + \ | 
					
						
							|  |  |  |                     lang_name.lower() + '">' + \ | 
					
						
							| 
									
										
										
										
											2025-01-25 17:03:04 +00:00
										 |  |  |                     translated_lang_name + '</option>\n' | 
					
						
							|  |  |  |             languages_dropdown += '  </select>' | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  |             languages_dropdown = \ | 
					
						
							|  |  |  |                 languages_dropdown.replace('<option value="' + | 
					
						
							| 
									
										
										
										
											2022-12-08 15:28:17 +00:00
										 |  |  |                                            default_post_language + '">', | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  |                                            '<option value="' + | 
					
						
							| 
									
										
										
										
											2022-12-08 15:28:17 +00:00
										 |  |  |                                            default_post_language + | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  |                                            '" selected>') | 
					
						
							| 
									
										
										
										
											2025-01-25 17:03:04 +00:00
										 |  |  |             replies_section += '<br>\n' + \ | 
					
						
							| 
									
										
										
										
											2022-04-15 19:18:59 +00:00
										 |  |  |                 '      <label class="labels">' + \ | 
					
						
							|  |  |  |                 translate['Language used'] + '</label>\n' | 
					
						
							|  |  |  |             replies_section += languages_dropdown | 
					
						
							| 
									
										
										
										
											2024-10-12 10:26:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # searchable by dropdown | 
					
						
							| 
									
										
										
										
											2024-10-12 11:04:56 +00:00
										 |  |  |             if endpoint != 'newdm': | 
					
						
							|  |  |  |                 searchables = { | 
					
						
							|  |  |  |                     'yourself': translate['Yourself'], | 
					
						
							|  |  |  |                     'public': translate['Public'], | 
					
						
							|  |  |  |                     'followers': translate['Followers'], | 
					
						
							|  |  |  |                     'mutuals': translate['Mutuals'] | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 searchable_by_dropdown = '<select id="themeDropdown" ' + \ | 
					
						
							| 
									
										
										
										
											2025-01-25 16:18:32 +00:00
										 |  |  |                     'name="searchableByDropdown" class="theme">\n' | 
					
						
							| 
									
										
										
										
											2024-10-12 11:04:56 +00:00
										 |  |  |                 if not searchable_by_default: | 
					
						
							|  |  |  |                     searchable_by_default = 'yourself' | 
					
						
							|  |  |  |                 for srch, srch_text in searchables.items(): | 
					
						
							|  |  |  |                     if srch != searchable_by_default: | 
					
						
							|  |  |  |                         searchable_by_dropdown += \ | 
					
						
							|  |  |  |                             '    <option value="' + srch + '">' + \ | 
					
						
							| 
									
										
										
										
											2025-01-25 16:18:32 +00:00
										 |  |  |                             srch_text + '</option>\n' | 
					
						
							| 
									
										
										
										
											2024-10-12 11:04:56 +00:00
										 |  |  |                     else: | 
					
						
							|  |  |  |                         searchable_by_dropdown += \ | 
					
						
							|  |  |  |                             '    <option value="' + srch + '" selected="">' + \ | 
					
						
							| 
									
										
										
										
											2025-01-25 16:18:32 +00:00
										 |  |  |                             srch_text + '</option>\n' | 
					
						
							| 
									
										
										
										
											2025-01-25 16:29:13 +00:00
										 |  |  |                 replies_section += '<br>\n' + \ | 
					
						
							| 
									
										
										
										
											2024-10-12 11:04:56 +00:00
										 |  |  |                     '      <label class="labels">🔎 ' + \ | 
					
						
							|  |  |  |                     translate['Searchable by'] + '</label>\n' | 
					
						
							| 
									
										
										
										
											2025-01-25 16:23:44 +00:00
										 |  |  |                 replies_section += \ | 
					
						
							| 
									
										
										
										
											2025-01-25 16:29:13 +00:00
										 |  |  |                     searchable_by_dropdown + '</select>\n' | 
					
						
							| 
									
										
										
										
											2024-10-12 10:26:17 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             # buy link | 
					
						
							| 
									
										
										
										
											2023-01-17 18:49:02 +00:00
										 |  |  |             buy_link_str = translate['Buy link'] | 
					
						
							| 
									
										
										
										
											2025-01-25 16:29:13 +00:00
										 |  |  |             replies_section += \ | 
					
						
							|  |  |  |                 '<br>\n' + edit_text_field(buy_link_str, 'buyUrl', | 
					
						
							|  |  |  |                                            default_buy_site, 'https://...') | 
					
						
							|  |  |  |             chat_link_str = '💬 ' + translate['Chat link'] | 
					
						
							|  |  |  |             replies_section += \ | 
					
						
							|  |  |  |                 '<br>\n' + edit_text_field(chat_link_str, 'chatUrl', | 
					
						
							|  |  |  |                                            '', 'https://...') | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |             replies_section += '</div>\n' | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |             date_and_location = \ | 
					
						
							| 
									
										
										
										
											2022-04-15 13:46:25 +00:00
										 |  |  |                 begin_edit_section('🗓️ ' + translate['Set a place and time']) | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |             if not in_reply_to: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                 date_and_location += \ | 
					
						
							| 
									
										
										
										
											2021-11-03 13:28:35 +00:00
										 |  |  |                     '<p><input type="checkbox" class="profilecheckbox" ' + \ | 
					
						
							|  |  |  |                     'name="schedulePost"><label class="labels"> ' + \ | 
					
						
							|  |  |  |                     translate['This is a scheduled post.'] + '</label></p>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             date_and_location += date_and_time_str | 
					
						
							| 
									
										
										
										
											2021-07-24 10:13:40 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-22 12:37:57 +00:00
										 |  |  |         maps_url = get_map_preferences_url(base_dir, nickname, domain) | 
					
						
							| 
									
										
										
										
											2022-05-22 10:51:45 +00:00
										 |  |  |         if not maps_url: | 
					
						
							|  |  |  |             maps_url = 'https://www.openstreetmap.org' | 
					
						
							| 
									
										
										
										
											2022-05-22 10:56:19 +00:00
										 |  |  |         if '://' not in maps_url: | 
					
						
							|  |  |  |             maps_url = 'https://' + maps_url | 
					
						
							| 
									
										
										
										
											2022-05-22 12:37:57 +00:00
										 |  |  |         maps_latitude, maps_longitude, maps_zoom = \ | 
					
						
							|  |  |  |             get_map_preferences_coords(base_dir, nickname, domain) | 
					
						
							|  |  |  |         if maps_latitude and maps_longitude and maps_zoom: | 
					
						
							|  |  |  |             if 'openstreetmap.org' in maps_url: | 
					
						
							|  |  |  |                 maps_url = \ | 
					
						
							|  |  |  |                     'https://www.openstreetmap.org/#map=' + \ | 
					
						
							|  |  |  |                     str(maps_zoom) + '/' + \ | 
					
						
							|  |  |  |                     str(maps_latitude) + '/' + \ | 
					
						
							|  |  |  |                     str(maps_longitude) | 
					
						
							|  |  |  |             elif '.google.co' in maps_url: | 
					
						
							|  |  |  |                 maps_url = \ | 
					
						
							|  |  |  |                     'https://www.google.com/maps/@' + \ | 
					
						
							|  |  |  |                     str(maps_latitude) + ',' + \ | 
					
						
							|  |  |  |                     str(maps_longitude) + ',' + \ | 
					
						
							|  |  |  |                     str(maps_zoom) + 'z' | 
					
						
							|  |  |  |             elif '.bing.co' in maps_url: | 
					
						
							|  |  |  |                 maps_url = \ | 
					
						
							|  |  |  |                     'https://www.bing.com/maps?cp=' + \ | 
					
						
							|  |  |  |                     str(maps_latitude) + '~' + \ | 
					
						
							|  |  |  |                     str(maps_longitude) + '&lvl=' + \ | 
					
						
							|  |  |  |                     str(maps_zoom) | 
					
						
							|  |  |  |             elif '.waze.co' in maps_url: | 
					
						
							|  |  |  |                 maps_url = \ | 
					
						
							|  |  |  |                     'https://ul.waze.com/ul?ll=' + \ | 
					
						
							|  |  |  |                     str(maps_latitude) + '%2C' + \ | 
					
						
							|  |  |  |                     str(maps_longitude) + '&zoom=' + \ | 
					
						
							|  |  |  |                     str(maps_zoom) | 
					
						
							|  |  |  |             elif 'wego.here.co' in maps_url: | 
					
						
							|  |  |  |                 maps_url = \ | 
					
						
							|  |  |  |                     'https://wego.here.com/?x=ep&map=' + \ | 
					
						
							|  |  |  |                     str(maps_latitude) + ',' + \ | 
					
						
							|  |  |  |                     str(maps_longitude) + ',' + \ | 
					
						
							|  |  |  |                     str(maps_zoom) + ',normal' | 
					
						
							| 
									
										
										
										
											2022-05-22 10:51:45 +00:00
										 |  |  |         location_label_with_link = \ | 
					
						
							|  |  |  |             '<a href="' + maps_url + '" ' + \ | 
					
						
							| 
									
										
										
										
											2022-06-05 10:01:41 +00:00
										 |  |  |             'rel="nofollow noopener noreferrer" target="_blank">🗺️ ' + \ | 
					
						
							| 
									
										
										
										
											2022-05-22 10:51:45 +00:00
										 |  |  |             translate['Location'] + '</a>' | 
					
						
							| 
									
										
										
										
											2022-06-05 09:54:54 +00:00
										 |  |  |         date_and_location += '<br><p>\n' + \ | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |             edit_text_field(location_label_with_link, 'location', | 
					
						
							|  |  |  |                             default_location, | 
					
						
							| 
									
										
										
										
											2022-05-23 19:23:23 +00:00
										 |  |  |                             'https://www.openstreetmap.org/#map=') + '</p>\n' | 
					
						
							| 
									
										
										
										
											2022-04-15 13:17:38 +00:00
										 |  |  |         date_and_location += end_edit_section() | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     instance_title = get_config_param(base_dir, 'instanceTitle') | 
					
						
							| 
									
										
										
										
											2024-10-22 12:36:24 +00:00
										 |  |  |     preload_images = [banner_path] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form = html_header_with_external_style(css_filename, | 
					
						
							| 
									
										
										
										
											2024-10-22 12:12:16 +00:00
										 |  |  |                                                     instance_title, None, | 
					
						
							|  |  |  |                                                     preload_images) | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += \ | 
					
						
							| 
									
										
										
										
											2020-12-27 16:57:15 +00:00
										 |  |  |         '<header>\n' + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 23:50:29 +00:00
										 |  |  |         '<a href="/users/' + nickname + '/' + default_timeline + \ | 
					
						
							|  |  |  |         '" title="' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         translate['Switch to timeline view'] + '" alt="' + \ | 
					
						
							| 
									
										
										
										
											2021-04-23 17:04:37 +00:00
										 |  |  |         translate['Switch to timeline view'] + '" ' + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         'accesskey="' + access_keys['menuTimeline'] + '">\n' | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |     new_post_form += '<img loading="lazy" decoding="async" ' + \ | 
					
						
							|  |  |  |         'class="timeline-banner" src="' + \ | 
					
						
							| 
									
										
										
										
											2024-10-22 12:36:24 +00:00
										 |  |  |         banner_path + '" alt="" /></a>\n' + \ | 
					
						
							| 
									
										
										
										
											2020-12-27 16:57:15 +00:00
										 |  |  |         '</header>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     mentions_str = '' | 
					
						
							|  |  |  |     for ment in mentions: | 
					
						
							|  |  |  |         mention_nickname = get_nickname_from_actor(ment) | 
					
						
							|  |  |  |         if not mention_nickname: | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             continue | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         mention_domain, mention_port = get_domain_from_actor(ment) | 
					
						
							|  |  |  |         if not mention_domain: | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             continue | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         if mention_port: | 
					
						
							|  |  |  |             mentions_handle = \ | 
					
						
							|  |  |  |                 '@' + mention_nickname + '@' + \ | 
					
						
							|  |  |  |                 mention_domain + ':' + str(mention_port) | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             mentions_handle = '@' + mention_nickname + '@' + mention_domain | 
					
						
							|  |  |  |         if mentions_handle not in mentions_str: | 
					
						
							|  |  |  |             mentions_str += mentions_handle + ' ' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # build suffixes so that any replies or mentions are | 
					
						
							|  |  |  |     # preserved when switching between scopes | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     dropdown_new_post_suffix = '/newpost' | 
					
						
							|  |  |  |     dropdown_new_blog_suffix = '/newblog' | 
					
						
							|  |  |  |     dropdown_unlisted_suffix = '/newunlisted' | 
					
						
							|  |  |  |     dropdown_followers_suffix = '/newfollowers' | 
					
						
							|  |  |  |     dropdown_dm_suffix = '/newdm' | 
					
						
							|  |  |  |     dropdown_reminder_suffix = '/newreminder' | 
					
						
							|  |  |  |     dropdown_report_suffix = '/newreport' | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |     if in_reply_to or mentions: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         dropdown_new_post_suffix = '' | 
					
						
							|  |  |  |         dropdown_new_blog_suffix = '' | 
					
						
							|  |  |  |         dropdown_unlisted_suffix = '' | 
					
						
							|  |  |  |         dropdown_followers_suffix = '' | 
					
						
							|  |  |  |         dropdown_dm_suffix = '' | 
					
						
							|  |  |  |         dropdown_reminder_suffix = '' | 
					
						
							|  |  |  |         dropdown_report_suffix = '' | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |     if in_reply_to: | 
					
						
							|  |  |  |         dropdown_new_post_suffix += '?replyto=' + in_reply_to | 
					
						
							|  |  |  |         dropdown_new_blog_suffix += '?replyto=' + in_reply_to | 
					
						
							|  |  |  |         dropdown_unlisted_suffix += '?replyunlisted=' + in_reply_to | 
					
						
							|  |  |  |         dropdown_followers_suffix += '?replyfollowers=' + in_reply_to | 
					
						
							| 
									
										
										
										
											2022-02-08 12:08:20 +00:00
										 |  |  |         if reply_is_chat: | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |             dropdown_dm_suffix += '?replychat=' + in_reply_to | 
					
						
							| 
									
										
										
										
											2022-02-08 12:08:20 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |             dropdown_dm_suffix += '?replydm=' + in_reply_to | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     for mentioned_actor in mentions: | 
					
						
							|  |  |  |         dropdown_new_post_suffix += '?mention=' + mentioned_actor | 
					
						
							|  |  |  |         dropdown_new_blog_suffix += '?mention=' + mentioned_actor | 
					
						
							|  |  |  |         dropdown_unlisted_suffix += '?mention=' + mentioned_actor | 
					
						
							|  |  |  |         dropdown_followers_suffix += '?mention=' + mentioned_actor | 
					
						
							|  |  |  |         dropdown_dm_suffix += '?mention=' + mentioned_actor | 
					
						
							|  |  |  |         dropdown_report_suffix += '?mention=' + mentioned_actor | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |     if conversation_id and in_reply_to: | 
					
						
							| 
									
										
										
										
											2024-10-06 09:41:21 +00:00
										 |  |  |         if isinstance(conversation_id, str): | 
					
						
							|  |  |  |             dropdown_new_post_suffix += '?conversationId=' + conversation_id | 
					
						
							|  |  |  |             dropdown_new_blog_suffix += '?conversationId=' + conversation_id | 
					
						
							|  |  |  |             dropdown_unlisted_suffix += '?conversationId=' + conversation_id | 
					
						
							|  |  |  |             dropdown_followers_suffix += '?conversationId=' + conversation_id | 
					
						
							|  |  |  |             dropdown_dm_suffix += '?conversationId=' + conversation_id | 
					
						
							| 
									
										
										
										
											2024-10-06 16:22:13 +00:00
										 |  |  |     if convthread_id and in_reply_to: | 
					
						
							|  |  |  |         if isinstance(convthread_id, str): | 
					
						
							|  |  |  |             dropdown_new_post_suffix += '?convthreadId=' + convthread_id | 
					
						
							|  |  |  |             dropdown_new_blog_suffix += '?convthreadId=' + convthread_id | 
					
						
							|  |  |  |             dropdown_unlisted_suffix += '?convthreadId=' + convthread_id | 
					
						
							|  |  |  |             dropdown_followers_suffix += '?convthreadId=' + convthread_id | 
					
						
							|  |  |  |             dropdown_dm_suffix += '?convthreadId=' + convthread_id | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     drop_down_content = '' | 
					
						
							|  |  |  |     if not report_url and not share_description: | 
					
						
							| 
									
										
										
										
											2023-04-05 18:07:08 +00:00
										 |  |  |         account_dir = acct_dir(base_dir, nickname, domain) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         drop_down_content = \ | 
					
						
							|  |  |  |             _html_new_post_drop_down(scope_icon, scope_description, | 
					
						
							|  |  |  |                                      reply_str, | 
					
						
							| 
									
										
										
										
											2021-12-29 21:55:09 +00:00
										 |  |  |                                      translate, | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                                      show_public_on_dropdown, | 
					
						
							| 
									
										
										
										
											2021-12-31 23:50:29 +00:00
										 |  |  |                                      default_timeline, | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |                                      path_base, | 
					
						
							|  |  |  |                                      dropdown_new_post_suffix, | 
					
						
							|  |  |  |                                      dropdown_new_blog_suffix, | 
					
						
							|  |  |  |                                      dropdown_unlisted_suffix, | 
					
						
							|  |  |  |                                      dropdown_followers_suffix, | 
					
						
							|  |  |  |                                      dropdown_dm_suffix, | 
					
						
							|  |  |  |                                      dropdown_reminder_suffix, | 
					
						
							|  |  |  |                                      dropdown_report_suffix, | 
					
						
							| 
									
										
										
										
											2023-04-05 18:07:08 +00:00
										 |  |  |                                      no_drop_down, access_keys, | 
					
						
							| 
									
										
										
										
											2024-03-21 18:30:12 +00:00
										 |  |  |                                      account_dir, premium) | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         if not share_description: | 
					
						
							| 
									
										
										
										
											2020-12-07 10:39:45 +00:00
										 |  |  |             # reporting a post to moderator | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             mentions_str = 'Re: ' + report_url + '\n\n' + mentions_str | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     if edited_post_json: | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							|  |  |  |             '<form enctype="multipart/form-data" method="POST" ' + \ | 
					
						
							|  |  |  |             'accept-charset="UTF-8" action="' + \ | 
					
						
							|  |  |  |             path + '?' + endpoint + '?page=' + str(page_number) + \ | 
					
						
							| 
									
										
										
										
											2022-11-16 14:51:57 +00:00
										 |  |  |             '?editid=' + edit_post_params['post_url'] + \ | 
					
						
							|  |  |  |             '?editpub=' + edited_published + '">\n' | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     else: | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							|  |  |  |             '<form enctype="multipart/form-data" method="POST" ' + \ | 
					
						
							|  |  |  |             'accept-charset="UTF-8" action="' + \ | 
					
						
							|  |  |  |             path + '?' + endpoint + '?page=' + str(page_number) + '">\n' | 
					
						
							| 
									
										
										
										
											2022-02-08 12:08:20 +00:00
										 |  |  |     if reply_is_chat: | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							|  |  |  |             '    <input type="hidden" name="replychatmsg" value="yes">\n' | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |     if conversation_id: | 
					
						
							| 
									
										
										
										
											2024-10-06 09:41:21 +00:00
										 |  |  |         if isinstance(conversation_id, str): | 
					
						
							|  |  |  |             new_post_form += \ | 
					
						
							|  |  |  |                 '    <input type="hidden" name="conversationId" value="' + \ | 
					
						
							|  |  |  |                 conversation_id + '">\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += '  <div class="vertical-center">\n' | 
					
						
							|  |  |  |     new_post_form += \ | 
					
						
							|  |  |  |         '    <label for="nickname"><b>' + new_post_text + '</b></label>\n' | 
					
						
							|  |  |  |     new_post_form += '    <div class="containerNewPost">\n' | 
					
						
							|  |  |  |     new_post_form += '      <table style="width:100%" border="0">\n' | 
					
						
							|  |  |  |     new_post_form += '        <colgroup>\n' | 
					
						
							|  |  |  |     new_post_form += '          <col span="1" style="width:70%">\n' | 
					
						
							|  |  |  |     new_post_form += '          <col span="1" style="width:10%">\n' | 
					
						
							| 
									
										
										
										
											2020-12-21 14:55:24 +00:00
										 |  |  |     if newswire and path.endswith('/newblog'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         new_post_form += '          <col span="1" style="width:10%">\n' | 
					
						
							|  |  |  |         new_post_form += '          <col span="1" style="width:10%">\n' | 
					
						
							| 
									
										
										
										
											2020-12-21 14:55:24 +00:00
										 |  |  |     else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         new_post_form += '          <col span="1" style="width:20%">\n' | 
					
						
							|  |  |  |     new_post_form += '        </colgroup>\n' | 
					
						
							|  |  |  |     new_post_form += '<tr>\n' | 
					
						
							|  |  |  |     new_post_form += '<td>' + drop_down_content + '</td>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += \ | 
					
						
							|  |  |  |         '      <td><a href="' + path_base + \ | 
					
						
							| 
									
										
										
										
											2022-03-28 08:47:53 +00:00
										 |  |  |         '/searchemoji"><img loading="lazy" decoding="async" ' + \ | 
					
						
							|  |  |  |         'class="emojisearch" src="/emoji/1F601.png" title="' + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |         translate['Search for emoji'] + '" alt="' + \ | 
					
						
							|  |  |  |         translate['Search for emoji'] + '"/></a></td>\n' | 
					
						
							| 
									
										
										
										
											2020-12-21 14:44:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # for a new blog if newswire items exist then add a citations button | 
					
						
							|  |  |  |     if newswire and path.endswith('/newblog'): | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         new_post_form += \ | 
					
						
							| 
									
										
										
										
											2020-12-21 14:44:56 +00:00
										 |  |  |             '      <td><input type="submit" name="submitCitations" value="' + \ | 
					
						
							|  |  |  |             translate['Citations'] + '"></td>\n' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-08 20:20:36 +00:00
										 |  |  |     if not path.endswith('/newdm') and \ | 
					
						
							|  |  |  |        not path.endswith('/newreport'): | 
					
						
							| 
									
										
										
										
											2022-11-08 19:48:09 +00:00
										 |  |  |         submit_text = translate['Publish'] | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         submit_text = translate['Send'] | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     if custom_submit_text: | 
					
						
							|  |  |  |         submit_text = custom_submit_text | 
					
						
							|  |  |  |     new_post_form += \ | 
					
						
							| 
									
										
										
										
											2020-12-21 14:44:56 +00:00
										 |  |  |         '      <td><input type="submit" name="submitPost" value="' + \ | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         submit_text + '" ' + \ | 
					
						
							| 
									
										
										
										
											2021-12-31 21:18:12 +00:00
										 |  |  |         'accesskey="' + access_keys['submitButton'] + '"></td>\n' | 
					
						
							| 
									
										
										
										
											2020-12-21 14:44:56 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += '      </tr>\n</table>\n' | 
					
						
							|  |  |  |     new_post_form += '    </div>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += '    <div class="containerSubmitNewPost"><center>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += '    </center></div>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += reply_str | 
					
						
							|  |  |  |     if media_instance and not reply_str: | 
					
						
							|  |  |  |         new_post_form += new_post_image_section | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  |     # for reminders show the date and time at the top | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     if is_new_reminder: | 
					
						
							|  |  |  |         new_post_form += '<div class="containerNoOverflow">\n' | 
					
						
							|  |  |  |         new_post_form += date_and_time_str | 
					
						
							|  |  |  |         new_post_form += '</div>\n' | 
					
						
							| 
									
										
										
										
											2021-11-03 12:53:49 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-03 17:38:21 +00:00
										 |  |  |     if endpoint != 'newreadingstatus': | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							|  |  |  |             edit_text_field(placeholder_subject, 'subject', default_subject) | 
					
						
							|  |  |  |         new_post_form += '' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     selected_str = ' selected' | 
					
						
							| 
									
										
										
										
											2022-06-08 09:23:34 +00:00
										 |  |  |     if in_reply_to or endpoint == 'newdm': | 
					
						
							|  |  |  |         if in_reply_to: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             new_post_form += \ | 
					
						
							| 
									
										
										
										
											2022-07-11 09:41:25 +00:00
										 |  |  |                 '    <br><label class="labels">' + placeholder_mentions + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 '</label><br>\n' | 
					
						
							|  |  |  |         else: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             new_post_form += \ | 
					
						
							| 
									
										
										
										
											2022-07-11 09:41:25 +00:00
										 |  |  |                 '    <br><a href="/users/' + nickname + \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |                 '/followingaccounts" title="' + \ | 
					
						
							|  |  |  |                 translate['Show a list of addresses to send to'] + '">' \ | 
					
						
							|  |  |  |                 '<label class="labels">' + \ | 
					
						
							|  |  |  |                 translate['Send to'] + ':' + '</label> 📄</a><br>\n' | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         new_post_form += \ | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |             '    <input type="text" name="mentions" ' + \ | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |             'list="followingHandles" value="' + mentions_str + '" selected>\n' | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							| 
									
										
										
										
											2022-12-31 22:33:06 +00:00
										 |  |  |             html_following_data_list(base_dir, nickname, domain, domain_full, | 
					
						
							| 
									
										
										
										
											2022-12-31 23:04:18 +00:00
										 |  |  |                                      'following', True) | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         new_post_form += '' | 
					
						
							|  |  |  |         selected_str = '' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-03 17:47:49 +00:00
										 |  |  |     if endpoint != 'newreadingstatus': | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							|  |  |  |             '    <br><label class="labels">' + placeholder_message + '</label>' | 
					
						
							| 
									
										
										
										
											2021-12-25 20:25:07 +00:00
										 |  |  |     if media_instance: | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         message_box_height = 200 | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if endpoint == 'newquestion': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         message_box_height = 100 | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  |     elif endpoint == 'newblog': | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         message_box_height = 800 | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  |     # get the default message text | 
					
						
							|  |  |  |     default_message = '' | 
					
						
							|  |  |  |     if edited_post_json: | 
					
						
							|  |  |  |         content_str = \ | 
					
						
							|  |  |  |             get_content_from_post(edited_post_json, system_language, | 
					
						
							|  |  |  |                                   languages_understood, "content") | 
					
						
							|  |  |  |         if content_str: | 
					
						
							|  |  |  |             default_message = remove_html(content_str) | 
					
						
							| 
									
										
										
										
											2022-11-16 11:25:06 +00:00
										 |  |  |             default_message = \ | 
					
						
							|  |  |  |                 _remove_initial_mentions_from_content(default_message) | 
					
						
							| 
									
										
										
										
											2022-11-15 19:22:00 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-03 17:38:21 +00:00
										 |  |  |     if endpoint != 'newreadingstatus': | 
					
						
							|  |  |  |         new_post_form += \ | 
					
						
							|  |  |  |             '    <textarea id="message" name="message" style="height:' + \ | 
					
						
							|  |  |  |             str(message_box_height) + 'px"' + selected_str + \ | 
					
						
							|  |  |  |             ' spellcheck="true" autocomplete="on">' + \ | 
					
						
							|  |  |  |             default_message + '</textarea>\n' | 
					
						
							| 
									
										
										
										
											2022-04-15 13:04:16 +00:00
										 |  |  |     new_post_form += \ | 
					
						
							|  |  |  |         extra_fields + citations_str + replies_section + date_and_location | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     if not media_instance or reply_str: | 
					
						
							|  |  |  |         new_post_form += new_post_image_section | 
					
						
							| 
									
										
										
										
											2022-04-19 11:22:23 +00:00
										 |  |  |     new_post_form += new_post_emoji_section | 
					
						
							| 
									
										
										
										
											2021-05-30 14:06:28 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += \ | 
					
						
							| 
									
										
										
										
											2021-07-05 20:24:43 +00:00
										 |  |  |         '    <div class="container">\n' + \ | 
					
						
							| 
									
										
										
										
											2021-05-30 17:55:19 +00:00
										 |  |  |         '      <input type="submit" name="submitPost" value="' + \ | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |         submit_text + '">\n' + \ | 
					
						
							| 
									
										
										
										
											2021-07-05 20:24:43 +00:00
										 |  |  |         '    </div>\n' + \ | 
					
						
							|  |  |  |         '  </div>\n' + \ | 
					
						
							|  |  |  |         '</form>\n' | 
					
						
							| 
									
										
										
										
											2020-11-09 22:57:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-01-01 10:42:14 +00:00
										 |  |  |     new_post_form += html_footer() | 
					
						
							|  |  |  |     return new_post_form |