aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2018-03-21 15:44:56 -0700
committerzotlabs <mike@macgirvin.com>2018-03-21 15:44:56 -0700
commitdc066d4c9b84267bd551ecb122cf3708b6f1472b (patch)
treef40096db43cfcaad495789501941968526e11b0c /Zotlabs/Module
parent3d6b606792171870becbc587ed6812cee4b94b9a (diff)
downloadvolse-hubzilla-dc066d4c9b84267bd551ecb122cf3708b6f1472b.tar.gz
volse-hubzilla-dc066d4c9b84267bd551ecb122cf3708b6f1472b.tar.bz2
volse-hubzilla-dc066d4c9b84267bd551ecb122cf3708b6f1472b.zip
Add Ochannel module for testing OStatus bad behaviour
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r--Zotlabs/Module/Ochannel.php66
1 files changed, 66 insertions, 0 deletions
diff --git a/Zotlabs/Module/Ochannel.php b/Zotlabs/Module/Ochannel.php
new file mode 100644
index 000000000..3b187d2a6
--- /dev/null
+++ b/Zotlabs/Module/Ochannel.php
@@ -0,0 +1,66 @@
+<?php
+
+namespace Zotlabs\Module;
+
+require_once('include/contact_widgets.php');
+require_once('include/items.php');
+require_once("include/bbcode.php");
+require_once('include/security.php');
+require_once('include/conversation.php');
+require_once('include/acl_selectors.php');
+require_once('include/permissions.php');
+
+/**
+ * @brief Channel Controller for broken OStatus implementations
+ *
+ */
+class Ochannel extends \Zotlabs\Web\Controller {
+
+ function init() {
+
+ $which = null;
+ if(argc() > 1)
+ $which = argv(1);
+ if(! $which) {
+ if(local_channel()) {
+ $channel = \App::get_channel();
+ if($channel && $channel['channel_address'])
+ $which = $channel['channel_address'];
+ }
+ }
+ if(! $which) {
+ notice( t('You must be logged in to see this page.') . EOL );
+ return;
+ }
+
+ $profile = 0;
+ $channel = \App::get_channel();
+
+ if((local_channel()) && (argc() > 2) && (argv(2) === 'view')) {
+ $which = $channel['channel_address'];
+ $profile = argv(1);
+ }
+
+ head_add_link( [
+ 'rel' => 'alternate',
+ 'type' => 'application/atom+xml',
+ 'href' => z_root() . '/ofeed/' . $which
+ ]);
+
+
+ // Run profile_load() here to make sure the theme is set before
+ // we start loading content
+
+ profile_load($which,$profile);
+ }
+
+ function get($update = 0, $load = false) {
+
+ if($load)
+ $_SESSION['loadtime'] = datetime_convert();
+
+ return '<script>window.location.href = "' . z_root() . '/' . str_replace('ochannel/','channel/',\App::$query_string) . '";</script>';
+
+ }
+
+}