Fixed indenting
This commit is contained in:
parent
b6fa022a73
commit
95f9eb34ac
|
@ -2041,13 +2041,15 @@ class Transmitter
|
||||||
$id = DI::baseUrl() . '/activity/' . System::createGUID();
|
$id = DI::baseUrl() . '/activity/' . System::createGUID();
|
||||||
}
|
}
|
||||||
|
|
||||||
$data = ['@context' => ActivityPub::CONTEXT,
|
$data = [
|
||||||
|
'@context' => ActivityPub::CONTEXT,
|
||||||
'id' => $id,
|
'id' => $id,
|
||||||
'type' => $activity,
|
'type' => $activity,
|
||||||
'actor' => $owner['url'],
|
'actor' => $owner['url'],
|
||||||
'object' => $profile['url'],
|
'object' => $profile['url'],
|
||||||
'instrument' => self::getService(),
|
'instrument' => self::getService(),
|
||||||
'to' => [$profile['url']]];
|
'to' => [$profile['url']],
|
||||||
|
];
|
||||||
|
|
||||||
Logger::info('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid);
|
Logger::info('Sending activity ' . $activity . ' to ' . $target . ' for user ' . $uid);
|
||||||
|
|
||||||
|
@ -2094,13 +2096,15 @@ class Transmitter
|
||||||
|
|
||||||
$owner = User::getOwnerDataById($uid);
|
$owner = User::getOwnerDataById($uid);
|
||||||
|
|
||||||
$data = ['@context' => ActivityPub::CONTEXT,
|
$data = [
|
||||||
|
'@context' => ActivityPub::CONTEXT,
|
||||||
'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
|
'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
|
||||||
'type' => 'Follow',
|
'type' => 'Follow',
|
||||||
'actor' => $owner['url'],
|
'actor' => $owner['url'],
|
||||||
'object' => $object,
|
'object' => $object,
|
||||||
'instrument' => self::getService(),
|
'instrument' => self::getService(),
|
||||||
'to' => [$profile['url']]];
|
'to' => [$profile['url']],
|
||||||
|
];
|
||||||
|
|
||||||
Logger::info('Sending follow ' . $object . ' to ' . $target . ' for user ' . $uid);
|
Logger::info('Sending follow ' . $object . ' to ' . $target . ' for user ' . $uid);
|
||||||
|
|
||||||
|
@ -2127,7 +2131,8 @@ class Transmitter
|
||||||
}
|
}
|
||||||
|
|
||||||
$owner = User::getOwnerDataById($uid);
|
$owner = User::getOwnerDataById($uid);
|
||||||
$data = ['@context' => ActivityPub::CONTEXT,
|
$data = [
|
||||||
|
'@context' => ActivityPub::CONTEXT,
|
||||||
'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
|
'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
|
||||||
'type' => 'Accept',
|
'type' => 'Accept',
|
||||||
'actor' => $owner['url'],
|
'actor' => $owner['url'],
|
||||||
|
@ -2138,7 +2143,8 @@ class Transmitter
|
||||||
'object' => $owner['url']
|
'object' => $owner['url']
|
||||||
],
|
],
|
||||||
'instrument' => self::getService(),
|
'instrument' => self::getService(),
|
||||||
'to' => [$profile['url']]];
|
'to' => [$profile['url']],
|
||||||
|
];
|
||||||
|
|
||||||
Logger::debug('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id);
|
Logger::debug('Sending accept to ' . $target . ' for user ' . $uid . ' with id ' . $id);
|
||||||
|
|
||||||
|
@ -2165,7 +2171,8 @@ class Transmitter
|
||||||
}
|
}
|
||||||
|
|
||||||
$owner = User::getOwnerDataById($uid);
|
$owner = User::getOwnerDataById($uid);
|
||||||
$data = ['@context' => ActivityPub::CONTEXT,
|
$data = [
|
||||||
|
'@context' => ActivityPub::CONTEXT,
|
||||||
'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
|
'id' => DI::baseUrl() . '/activity/' . System::createGUID(),
|
||||||
'type' => 'Reject',
|
'type' => 'Reject',
|
||||||
'actor' => $owner['url'],
|
'actor' => $owner['url'],
|
||||||
|
@ -2176,7 +2183,8 @@ class Transmitter
|
||||||
'object' => $owner['url']
|
'object' => $owner['url']
|
||||||
],
|
],
|
||||||
'instrument' => self::getService(),
|
'instrument' => self::getService(),
|
||||||
'to' => [$profile['url']]];
|
'to' => [$profile['url']],
|
||||||
|
];
|
||||||
|
|
||||||
Logger::debug('Sending reject to ' . $target . ' for user ' . $uid . ' with id ' . $id);
|
Logger::debug('Sending reject to ' . $target . ' for user ' . $uid . ' with id ' . $id);
|
||||||
|
|
||||||
|
@ -2223,7 +2231,7 @@ class Transmitter
|
||||||
'object' => $profile['url']
|
'object' => $profile['url']
|
||||||
],
|
],
|
||||||
'instrument' => self::getService(),
|
'instrument' => self::getService(),
|
||||||
'to' => [$profile['url']]
|
'to' => [$profile['url']],
|
||||||
];
|
];
|
||||||
|
|
||||||
Logger::info('Sending undo to ' . $target . ' for user ' . $uid . ' with id ' . $id);
|
Logger::info('Sending undo to ' . $target . ' for user ' . $uid . ' with id ' . $id);
|
||||||
|
|
Loading…
Reference in a new issue