2019-07-28 18:46:29 +00:00
< ? php
2024-08-24 12:31:41 +00:00
// Copyright (C) 2010-2024, the Friendica project
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
//
// SPDX-License-Identifier: AGPL-3.0-or-later
2019-07-28 18:46:29 +00:00
2021-02-05 05:53:44 +00:00
use Friendica\Core\Protocol ;
use Friendica\Model\Contact ;
use Friendica\Model\Item ;
2021-01-23 09:53:44 +00:00
use Friendica\Model\Notification ;
2020-11-25 19:56:39 +00:00
2019-07-28 18:46:29 +00:00
return [
2023-05-13 20:04:51 +00:00
'gserver' => [
[
'url' => 'https://friendica.local' ,
'nurl' => 'http://friendica.local' ,
'register_policy' => 0 ,
'registered-users' => 0 ,
'network' => 'unkn' ,
],
],
2019-07-28 18:46:29 +00:00
// Base test config to avoid notice messages
2021-12-04 21:34:51 +00:00
'user' => [
2019-07-28 18:46:29 +00:00
[
'uid' => 42 ,
'username' => 'Test user' ,
'nickname' => 'selfcontact' ,
'verified' => 1 ,
2021-12-09 21:30:35 +00:00
'prvkey' => " -----BEGIN RSA PRIVATE KEY----- \n MIICXgIBAAKBgQDVqxF9kIgtgRL0+q+jTi578FA1r1+crEmlYc0pdxcbmmrhjuRc \n rK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/KHVks7eQ4yr4MxTRlsxo5qf2o \n nbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjsQPX240vGNXIkfLiAWwIDAQAB \n AoGBAIwuiPIdggqAtWQ+mD8HCx5LQwSFw6/xpPu5F7ZNqL52aAsGCbL3o2QoIG4c \n a1qf9Ot16BNgNBqxQF3hzRTkBMrKYlmNTUkwJXun/zjQJq2JvOlcrSuXlIucUjs4 \n XekVN25aYPHrX9m2FEIUwZTb4UYXbR80KbIDI53BkQ6EwSbpAkEA7aO49CR2Hf1Y \n 1d2GaUI/Z0wvbj//+t0Kg0bPt16ca8KVjEQQA5ylsDaiw510jDz9NBQxSOk6If23 \n UeRixc1RDQJBAOYtN4YnPM1Zfp6IxXlqMCc+xUWRTPEPFt+WpG+v79koNamAeA6o \n ZzTl92hl58IqSdbgojeE2zXWQRvlimFMLQcCQQCV6jND0byyLqFcSeQBg0l8YROK \n +dUC7W80YfeoNod3c8nkMwvnO2tLPyxvO2XLEq6prBNra7bAus5rWyj0oBIBAkEA \n 1EvUMFm0TLpEfLgtWuTD8Q6GKLnxO0ztjd+FXrXpBGN/ywyArxRHzJRmctW6wmz6 \n mcOqGobhIHCysKYv0bnOtQJAc2M5RwlASHH4jGJzXgt3nboyiJfufM0RV9iry3ho \n CXQRWAONKoLqnsfC6qNP8OzY8FMJcwmPWj7Q/6z6yLBFTA== \n -----END RSA PRIVATE KEY----- " ,
'pubkey' => " -----BEGIN PUBLIC KEY----- \n MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVqxF9kIgtgRL0+q+jTi578FA1 \n r1+crEmlYc0pdxcbmmrhjuRcrK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/K \n HVks7eQ4yr4MxTRlsxo5qf2onbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjs \n QPX240vGNXIkfLiAWwIDAQAB \n -----END PUBLIC KEY----- " , 'password' => '$2y$10$DLRNTRmJgKe1cSrFJ5Jb0edCqvXlA9sh/RHdSnfxjbR.04yZRm4Qm' ,
2019-07-28 18:46:29 +00:00
'theme' => 'frio' ,
],
],
2021-12-04 21:34:51 +00:00
'item-uri' => [
2021-07-09 17:13:54 +00:00
[
'id' => 1 ,
'uri' => '1' ,
'guid' => '1' ,
],
[
'id' => 2 ,
'uri' => '2' ,
'guid' => '2' ,
],
[
'id' => 3 ,
'uri' => '3' ,
'guid' => '3' ,
],
[
'id' => 4 ,
'uri' => '4' ,
'guid' => '4' ,
],
[
'id' => 5 ,
'uri' => '5' ,
'guid' => '5' ,
],
[
'id' => 6 ,
'uri' => '6' ,
'guid' => '6' ,
],
2021-12-30 20:52:18 +00:00
[
'id' => 7 ,
'uri' => '7' ,
'guid' => '7' ,
],
2021-07-09 17:13:54 +00:00
[
'id' => 42 ,
2024-02-25 04:46:54 +00:00
'uri' => 'https://friendica.local/profile/selfcontact' ,
2021-07-09 17:13:54 +00:00
'guid' => '42' ,
],
[
'id' => 43 ,
2024-02-25 04:46:54 +00:00
'uri' => 'https://friendica.local/profile/othercontact' ,
2021-07-09 17:13:54 +00:00
'guid' => '43' ,
],
[
'id' => 44 ,
2024-02-25 04:46:54 +00:00
'uri' => 'https://friendica.local/profile/friendcontact' ,
2021-07-09 17:13:54 +00:00
'guid' => '44' ,
],
[
'id' => 46 ,
2024-02-25 04:46:54 +00:00
'uri' => 'https://friendica.local/profile/mutualcontact' ,
2021-07-09 17:13:54 +00:00
'guid' => '46' ,
],
2023-11-15 15:53:38 +00:00
[
'id' => 100 ,
'uri' => 'https://friendica.local/posts/100' ,
'guid' => '100' ,
],
2021-07-09 17:13:54 +00:00
],
2019-07-28 18:46:29 +00:00
'contact' => [
[
2021-12-04 21:34:51 +00:00
'id' => 42 ,
'uid' => 42 ,
'uri-id' => 42 ,
'name' => 'Self contact' ,
'nick' => 'selfcontact' ,
'self' => 1 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/selfcontact' ,
'url' => 'https://friendica.local/profile/selfcontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'about' => 'User used in tests' ,
2021-12-09 21:30:35 +00:00
'prvkey' => " -----BEGIN RSA PRIVATE KEY----- \n MIICXgIBAAKBgQDVqxF9kIgtgRL0+q+jTi578FA1r1+crEmlYc0pdxcbmmrhjuRc \n rK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/KHVks7eQ4yr4MxTRlsxo5qf2o \n nbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjsQPX240vGNXIkfLiAWwIDAQAB \n AoGBAIwuiPIdggqAtWQ+mD8HCx5LQwSFw6/xpPu5F7ZNqL52aAsGCbL3o2QoIG4c \n a1qf9Ot16BNgNBqxQF3hzRTkBMrKYlmNTUkwJXun/zjQJq2JvOlcrSuXlIucUjs4 \n XekVN25aYPHrX9m2FEIUwZTb4UYXbR80KbIDI53BkQ6EwSbpAkEA7aO49CR2Hf1Y \n 1d2GaUI/Z0wvbj//+t0Kg0bPt16ca8KVjEQQA5ylsDaiw510jDz9NBQxSOk6If23 \n UeRixc1RDQJBAOYtN4YnPM1Zfp6IxXlqMCc+xUWRTPEPFt+WpG+v79koNamAeA6o \n ZzTl92hl58IqSdbgojeE2zXWQRvlimFMLQcCQQCV6jND0byyLqFcSeQBg0l8YROK \n +dUC7W80YfeoNod3c8nkMwvnO2tLPyxvO2XLEq6prBNra7bAus5rWyj0oBIBAkEA \n 1EvUMFm0TLpEfLgtWuTD8Q6GKLnxO0ztjd+FXrXpBGN/ywyArxRHzJRmctW6wmz6 \n mcOqGobhIHCysKYv0bnOtQJAc2M5RwlASHH4jGJzXgt3nboyiJfufM0RV9iry3ho \n CXQRWAONKoLqnsfC6qNP8OzY8FMJcwmPWj7Q/6z6yLBFTA== \n -----END RSA PRIVATE KEY----- " ,
'pubkey' => " -----BEGIN PUBLIC KEY----- \n MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVqxF9kIgtgRL0+q+jTi578FA1 \n r1+crEmlYc0pdxcbmmrhjuRcrK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/K \n HVks7eQ4yr4MxTRlsxo5qf2onbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjs \n QPX240vGNXIkfLiAWwIDAQAB \n -----END PUBLIC KEY----- " ,
2021-12-04 21:34:51 +00:00
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: FOLLOWER ,
'network' => Protocol :: DFRN ,
2020-08-19 20:29:04 +00:00
'location' => 'DFRN' ,
2024-02-25 04:46:54 +00:00
'baseurl' => 'https://friendica.local' ,
2019-07-28 18:46:29 +00:00
],
// Having the same name and nick allows us to test
// the fallback to api_get_nick() in api_get_user()
[
2021-12-04 21:34:51 +00:00
'id' => 43 ,
'uid' => 0 ,
'uri-id' => 43 ,
'name' => 'othercontact' ,
'nick' => 'othercontact' ,
'self' => 0 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/othercontact' ,
'url' => 'https://friendica.local/profile/othercontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: NOTHING ,
'network' => Protocol :: DFRN ,
2020-08-19 20:29:04 +00:00
'location' => 'DFRN' ,
2019-07-28 18:46:29 +00:00
],
[
2021-12-04 21:34:51 +00:00
'id' => 44 ,
'uid' => 42 ,
'uri-id' => 44 ,
'name' => 'Friend contact' ,
'nick' => 'friendcontact' ,
'self' => 0 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/friendcontact' ,
'url' => 'https://friendica.local/profile/friendcontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: SHARING ,
'network' => Protocol :: DFRN ,
2020-08-19 20:29:04 +00:00
'location' => 'DFRN' ,
2019-07-28 18:46:29 +00:00
],
2020-06-09 12:39:37 +00:00
[
2021-12-04 21:34:51 +00:00
'id' => 45 ,
'uid' => 0 ,
'uri-id' => 44 ,
'name' => 'Friend contact' ,
'nick' => 'friendcontact' ,
'self' => 0 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/friendcontact' ,
'url' => 'https://friendica.local/profile/friendcontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: SHARING ,
'network' => Protocol :: DFRN ,
2020-08-19 20:29:04 +00:00
'location' => 'DFRN' ,
2020-06-09 12:39:37 +00:00
],
[
2021-12-04 21:34:51 +00:00
'id' => 46 ,
'uid' => 42 ,
'uri-id' => 46 ,
'name' => 'Mutual contact' ,
'nick' => 'mutualcontact' ,
'self' => 0 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/mutualcontact' ,
'url' => 'https://friendica.local/profile/mutualcontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: FRIEND ,
'network' => Protocol :: DFRN ,
2020-08-19 20:29:04 +00:00
'location' => 'DFRN' ,
2020-06-09 12:39:37 +00:00
],
[
2021-12-04 21:34:51 +00:00
'id' => 47 ,
'uid' => 0 ,
'uri-id' => 46 ,
'name' => 'Mutual contact' ,
'nick' => 'mutualcontact' ,
'self' => 0 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/mutualcontact' ,
'url' => 'https://friendica.local/profile/mutualcontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: SHARING ,
'network' => Protocol :: DFRN ,
2020-08-19 20:29:04 +00:00
'location' => 'DFRN' ,
2020-06-09 12:39:37 +00:00
],
2021-12-04 21:34:51 +00:00
[
2021-12-04 23:19:24 +00:00
'id' => 48 ,
2021-12-04 21:34:51 +00:00
'uid' => 0 ,
'uri-id' => 42 ,
2024-03-05 15:10:15 +00:00
'name' => 'Test user' ,
2021-12-04 21:34:51 +00:00
'nick' => 'selfcontact' ,
2021-12-04 23:19:24 +00:00
'self' => 0 ,
2024-02-25 04:46:54 +00:00
'nurl' => 'http://friendica.local/profile/selfcontact' ,
'url' => 'https://friendica.local/profile/selfcontact' ,
'notify' => 'https://friendica.local/friendica/inbox' ,
2021-12-04 21:34:51 +00:00
'about' => 'User used in tests' ,
'pending' => 0 ,
'blocked' => 0 ,
'rel' => Contact :: FOLLOWER ,
'network' => Protocol :: DFRN ,
'location' => 'DFRN' ,
],
],
'apcontact' => [
[
2024-02-25 04:46:54 +00:00
" url " => " https://friendica.local/profile/selfcontact " ,
2021-12-04 21:34:51 +00:00
" uri-id " => 1 ,
" uuid " => " 42 " ,
" type " => " Person " ,
2024-02-25 04:46:54 +00:00
" following " => " https://friendica.local/following/selfcontact " ,
" followers " => " https://friendica.local/followers/selfcontact " ,
" inbox " => " https://friendica.local/inbox/selfcontact " ,
" outbox " => " https://friendica.local/outbox/selfcontact " ,
" sharedinbox " => " https://friendica.local/inbox " ,
2021-12-04 21:34:51 +00:00
" manually-approve " => 1 ,
" discoverable " => 0 ,
" nick " => " selfcontact " ,
" name " => " Self contact " ,
" about " => " User used in tests " ,
" xmpp " => null ,
" matrix " => null ,
2024-02-25 04:46:54 +00:00
" photo " => " https://friendica.local/photo/profile/admin.jpeg " ,
2021-12-04 21:34:51 +00:00
" header " => null ,
" addr " => " selfcontact@localhost " ,
" alias " => null ,
2021-12-09 21:30:35 +00:00
" pubkey " => " -----BEGIN PUBLIC KEY----- \n MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDVqxF9kIgtgRL0+q+jTi578FA1 \n r1+crEmlYc0pdxcbmmrhjuRcrK1gX3r0mnP25fkHzG+6CAjgbDBRFM1/RXBCyp/K \n HVks7eQ4yr4MxTRlsxo5qf2onbyNzM7Q+LZhFhe/yIoGN/fuEjlqBE98IfPOrUjs \n QPX240vGNXIkfLiAWwIDAQAB \n -----END PUBLIC KEY----- " ,
2021-12-04 21:34:51 +00:00
" subscribe " => " /follow?url= { uri} " ,
" baseurl " => null ,
" gsid " => null ,
" generator " => " Friendica 'Siberian Iris' 2021.12-dev-1443 " ,
" following_count " => 0 ,
" followers_count " => 0 ,
" statuses_count " => 0 ,
" updated " => " 2021-11-19 19:17:59 " ,
],
2019-07-28 18:46:29 +00:00
],
2021-12-04 21:34:51 +00:00
'verb' => [
2021-02-15 05:59:45 +00:00
[
'id' => 0 ,
'name' => '' ,
],
[
'id' => 1 ,
'name' => 'http://activitystrea.ms/schema/1.0/like' ,
],
[
'id' => 2 ,
'name' => 'http://purl.org/macgirvin/dfrn/1.0/dislike' ,
],
[
'id' => 3 ,
'name' => 'http://purl.org/zot/activity/attendyes' ,
],
[
'id' => 4 ,
'name' => 'http://purl.org/zot/activity/attendno' ,
],
[
'id' => 5 ,
'name' => 'http://purl.org/zot/activity/attendmaybe' ,
],
[
'id' => 6 ,
'name' => 'http://activitystrea.ms/schema/1.0/follow' ,
],
[
'id' => 7 ,
'name' => 'https://www.w3.org/ns/activitystreams#Announce' ,
],
[
'id' => 8 ,
'name' => 'http://activitystrea.ms/schema/1.0/post' ,
],
],
2021-01-30 22:03:53 +00:00
'post-content' => [
2021-01-17 22:20:46 +00:00
[
2021-01-30 22:03:53 +00:00
'uri-id' => 1 ,
'body' => 'Parent status' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/1' ,
2021-01-17 22:20:46 +00:00
],
[
2021-01-30 22:03:53 +00:00
'uri-id' => 2 ,
'body' => 'Reply' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/2' ,
2021-01-17 22:20:46 +00:00
],
[
2021-01-30 22:03:53 +00:00
'uri-id' => 3 ,
'body' => 'Other user status' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/3' ,
2021-01-17 22:20:46 +00:00
],
[
2021-01-30 22:03:53 +00:00
'uri-id' => 4 ,
'body' => 'Friend user reply' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/4' ,
2021-01-17 22:20:46 +00:00
],
[
2021-01-30 22:03:53 +00:00
'uri-id' => 5 ,
'body' => '[share]Shared status[/share]' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/5' ,
2021-01-17 22:20:46 +00:00
],
[
2021-01-30 22:03:53 +00:00
'uri-id' => 6 ,
'body' => 'Friend user status' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/6' ,
2021-01-17 22:20:46 +00:00
],
2021-12-30 20:52:18 +00:00
[
'uri-id' => 7 ,
'title' => 'item_title' ,
'body' => 'perspiciatis impedit voluptatem quis molestiae ea qui ' .
'reiciendis dolorum aut ducimus sunt consequatur inventore dolor ' .
'officiis pariatur doloremque nemo culpa aut quidem qui dolore ' .
'laudantium atque commodi alias voluptatem non possimus aperiam ' .
'ipsum rerum consequuntur aut amet fugit quia aliquid praesentium ' .
'repellendus quibusdam et et inventore mollitia rerum sit autem ' .
'pariatur maiores ipsum accusantium perferendis vel sit possimus ' .
'veritatis nihil distinctio qui eum repellat officia illum quos ' .
'impedit quam iste esse unde qui suscipit aut facilis ut inventore ' .
'omnis exercitationem quo magnam consequatur maxime aut illum ' .
'soluta quaerat natus unde aspernatur et sed beatae nihil ullam ' .
'temporibus corporis ratione blanditiis perspiciatis impedit ' .
'voluptatem quis molestiae ea qui reiciendis dolorum aut ducimus ' .
'sunt consequatur inventore dolor officiis pariatur doloremque ' .
'nemo culpa aut quidem qui dolore laudantium atque commodi alias ' .
'voluptatem non possimus aperiam ipsum rerum consequuntur aut ' .
'amet fugit quia aliquid praesentium repellendus quibusdam et et ' .
'inventore mollitia rerum sit autem pariatur maiores ipsum accusantium ' .
'perferendis vel sit possimus veritatis nihil distinctio qui eum ' .
'repellat officia illum quos impedit quam iste esse unde qui ' .
'suscipit aut facilis ut inventore omnis exercitationem quo magnam ' .
'consequatur maxime aut illum soluta quaerat natus unde aspernatur ' .
'et sed beatae nihil ullam temporibus corporis ratione blanditiis' ,
2024-02-25 04:46:54 +00:00
'plink' => 'https://friendica.local/display/6' ,
2021-12-30 20:52:18 +00:00
],
2023-11-15 15:53:38 +00:00
[
'uri-id' => 100 ,
'title' => 'item_title' ,
2023-11-25 15:29:39 +00:00
'body' => ':like ~friendica no [code]:dislike[/code] :-p :-[ :hugging face: <3 :smiley heart 333: ⽕' ,
2023-11-15 15:53:38 +00:00
'plink' => 'https://friendica.local/post/100' ,
],
2021-01-28 23:17:58 +00:00
],
2021-12-04 21:34:51 +00:00
'post' => [
2021-02-13 19:56:03 +00:00
[
'uri-id' => 1 ,
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-13 19:56:03 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-13 19:56:03 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-13 19:56:03 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-13 19:56:03 +00:00
],
[
'uri-id' => 2 ,
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-13 19:56:03 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-13 19:56:03 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-13 19:56:03 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-13 19:56:03 +00:00
],
[
'uri-id' => 3 ,
'parent-uri-id' => 3 ,
'thr-parent-id' => 3 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-13 19:56:03 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
2021-02-13 19:56:03 +00:00
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-13 19:56:03 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-13 19:56:03 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-13 19:56:03 +00:00
],
[
'uri-id' => 4 ,
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-13 19:56:03 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 45 ,
'causer-id' => 45 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-13 19:56:03 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-13 19:56:03 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-13 19:56:03 +00:00
],
[
'uri-id' => 5 ,
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-13 19:56:03 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-13 19:56:03 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-13 19:56:03 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-13 19:56:03 +00:00
],
[
'uri-id' => 6 ,
'parent-uri-id' => 6 ,
'thr-parent-id' => 6 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-13 19:56:03 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 45 ,
'causer-id' => 45 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-13 19:56:03 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-13 19:56:03 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-13 19:56:03 +00:00
],
2021-12-30 20:52:18 +00:00
[
'uri-id' => 7 ,
'parent-uri-id' => 7 ,
'thr-parent-id' => 7 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-12-30 20:52:18 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 45 ,
'causer-id' => 45 ,
2021-12-30 20:52:18 +00:00
'vid' => 8 ,
'private' => Item :: PUBLIC ,
'global' => true ,
'visible' => 1 ,
'deleted' => 0 ,
],
2021-02-13 19:56:03 +00:00
],
2021-02-14 20:27:31 +00:00
'post-user' => [
[
'id' => 1 ,
'uri-id' => 1 ,
2021-02-15 12:40:05 +00:00
'visible' => 1 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 12:40:05 +00:00
'uid' => 42 ,
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'unseen' => 1 ,
2021-01-17 12:12:26 +00:00
'parent-uri-id' => 1 ,
2021-01-17 14:57:55 +00:00
'thr-parent-id' => 1 ,
2021-02-15 12:40:05 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2021-02-15 12:43:23 +00:00
'wall' => 1 ,
2021-02-15 12:40:05 +00:00
'origin' => 1 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 2 ,
'uri-id' => 2 ,
'uid' => 42 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 1 ,
2021-01-17 12:12:26 +00:00
'parent-uri-id' => 1 ,
2021-01-17 14:57:55 +00:00
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 3 ,
'uri-id' => 3 ,
'uid' => 42 ,
'contact-id' => 43 ,
'unseen' => 0 ,
'origin' => 1 ,
2021-01-17 12:12:26 +00:00
'parent-uri-id' => 3 ,
2021-01-17 14:57:55 +00:00
'thr-parent-id' => 3 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
2021-02-14 20:27:31 +00:00
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 4 ,
'uri-id' => 4 ,
'uid' => 42 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 45 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 1 ,
2021-01-17 12:12:26 +00:00
'parent-uri-id' => 1 ,
2021-01-17 14:57:55 +00:00
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 45 ,
'causer-id' => 45 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 1 ,
2019-07-28 18:46:29 +00:00
],
[
2021-02-14 20:27:31 +00:00
'id' => 5 ,
'uri-id' => 5 ,
'uid' => 42 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 1 ,
2021-01-17 12:12:26 +00:00
'parent-uri-id' => 1 ,
2021-01-17 14:57:55 +00:00
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 6 ,
'uri-id' => 6 ,
'uid' => 42 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 45 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 1 ,
2021-01-17 12:12:26 +00:00
'parent-uri-id' => 6 ,
2021-01-17 14:57:55 +00:00
'thr-parent-id' => 6 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 45 ,
'causer-id' => 45 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 7 ,
'uri-id' => 1 ,
'uid' => 0 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-02-14 20:27:31 +00:00
'unseen' => 1 ,
'origin' => 0 ,
2021-02-05 07:27:15 +00:00
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 8 ,
'uri-id' => 2 ,
'uid' => 0 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 0 ,
2021-02-05 07:27:15 +00:00
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 9 ,
'uri-id' => 3 ,
'uid' => 0 ,
'contact-id' => 43 ,
'unseen' => 0 ,
'origin' => 0 ,
2021-02-05 07:27:15 +00:00
'parent-uri-id' => 3 ,
'thr-parent-id' => 3 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
2021-02-14 20:27:31 +00:00
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 10 ,
'uri-id' => 4 ,
'uid' => 0 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 45 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 0 ,
2021-02-05 07:27:15 +00:00
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 45 ,
'causer-id' => 45 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 0 ,
2021-02-05 07:27:15 +00:00
],
[
2021-02-14 20:27:31 +00:00
'id' => 11 ,
'uri-id' => 5 ,
'uid' => 0 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
'origin' => 0 ,
2021-02-05 07:27:15 +00:00
'parent-uri-id' => 1 ,
'thr-parent-id' => 1 ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_COMMENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2024-02-25 06:30:23 +00:00
'owner-id' => 43 ,
'author-id' => 43 ,
'causer-id' => 43 ,
2021-02-15 05:59:45 +00:00
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2021-02-14 20:27:31 +00:00
'visible' => 1 ,
2021-02-15 12:40:05 +00:00
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
],
[
'id' => 12 ,
'uri-id' => 6 ,
2021-02-15 12:40:05 +00:00
'visible' => 1 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 45 ,
'author-id' => 45 ,
'owner-id' => 43 ,
'causer-id' => 45 ,
2021-02-15 12:40:05 +00:00
'uid' => 0 ,
'vid' => 8 ,
2021-02-14 20:27:31 +00:00
'unseen' => 0 ,
2021-02-05 07:27:15 +00:00
'parent-uri-id' => 6 ,
'thr-parent-id' => 6 ,
2021-02-15 12:40:05 +00:00
'private' => Item :: PUBLIC ,
2021-11-21 06:31:04 +00:00
'global' => true ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-02-14 20:27:31 +00:00
'network' => Protocol :: DFRN ,
2021-02-15 12:40:05 +00:00
'origin' => 0 ,
'deleted' => 0 ,
2021-02-15 12:43:23 +00:00
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
],
2021-12-30 20:52:18 +00:00
[
'id' => 13 ,
'uri-id' => 7 ,
'visible' => 1 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 45 ,
'author-id' => 45 ,
'owner-id' => 43 ,
'causer-id' => 45 ,
2021-12-30 20:52:18 +00:00
'uid' => 0 ,
'vid' => 8 ,
'unseen' => 0 ,
'parent-uri-id' => 7 ,
'thr-parent-id' => 7 ,
'private' => Item :: PUBLIC ,
'global' => true ,
2022-09-12 21:12:11 +00:00
'gravity' => Item :: GRAVITY_PARENT ,
2021-12-30 20:52:18 +00:00
'network' => Protocol :: DFRN ,
'origin' => 0 ,
'deleted' => 0 ,
'wall' => 0 ,
2023-11-15 15:53:38 +00:00
],
// An emoji post
[
'id' => 14 ,
'uri-id' => 100 ,
'visible' => 1 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 45 ,
'author-id' => 45 ,
'owner-id' => 43 ,
'causer-id' => 45 ,
2023-11-15 15:53:38 +00:00
'uid' => 0 ,
'vid' => 8 ,
'unseen' => 0 ,
'parent-uri-id' => 7 ,
'thr-parent-id' => 7 ,
'private' => Item :: PUBLIC ,
'global' => true ,
'gravity' => Item :: GRAVITY_PARENT ,
'network' => Protocol :: DFRN ,
'origin' => 0 ,
'deleted' => 0 ,
'wall' => 0 ,
2021-12-30 20:52:18 +00:00
],
2021-02-14 20:27:31 +00:00
],
2021-12-04 21:34:51 +00:00
'post-thread' => [
2021-02-14 20:27:31 +00:00
[
2021-12-04 21:34:51 +00:00
'uri-id' => 1 ,
2024-02-25 06:30:23 +00:00
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
2021-12-04 21:34:51 +00:00
'network' => Protocol :: DFRN ,
2021-02-14 20:27:31 +00:00
],
[
2021-12-04 21:34:51 +00:00
'uri-id' => 3 ,
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
'network' => Protocol :: DFRN ,
2021-02-14 20:27:31 +00:00
],
[
2021-12-04 21:34:51 +00:00
'uri-id' => 6 ,
2024-02-25 06:30:23 +00:00
'author-id' => 45 ,
'owner-id' => 45 ,
'causer-id' => 45 ,
2021-12-04 21:34:51 +00:00
'network' => Protocol :: DFRN ,
2021-02-14 20:27:31 +00:00
],
2021-12-30 20:52:18 +00:00
[
'uri-id' => 7 ,
2024-02-25 06:30:23 +00:00
'author-id' => 45 ,
'owner-id' => 45 ,
'causer-id' => 45 ,
2021-12-30 20:52:18 +00:00
'network' => Protocol :: DFRN ,
],
2021-02-14 20:27:31 +00:00
],
2021-12-04 21:34:51 +00:00
'post-thread-user' => [
2021-02-14 20:27:31 +00:00
[
2021-12-04 21:34:51 +00:00
'uri-id' => 1 ,
'uid' => 42 ,
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
'post-user-id' => 1 ,
2024-02-25 06:30:23 +00:00
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
'contact-id' => 43 ,
2021-12-04 21:34:51 +00:00
'network' => Protocol :: DFRN ,
'starred' => 1 ,
'origin' => 1 ,
],
[
'uri-id' => 3 ,
'uid' => 42 ,
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
'post-user-id' => 3 ,
2021-12-04 21:34:51 +00:00
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
'contact-id' => 43 ,
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 1 ,
],
[
'uri-id' => 6 ,
'uid' => 42 ,
'wall' => 1 ,
2021-02-14 20:27:31 +00:00
'post-user-id' => 6 ,
2024-02-25 06:30:23 +00:00
'author-id' => 45 ,
'owner-id' => 45 ,
'causer-id' => 45 ,
'contact-id' => 45 ,
2021-12-04 21:34:51 +00:00
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 1 ,
],
[
'uri-id' => 1 ,
'uid' => 0 ,
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
'post-user-id' => 7 ,
2024-02-25 06:30:23 +00:00
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
'contact-id' => 43 ,
2021-12-04 21:34:51 +00:00
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 0 ,
],
[
'uri-id' => 3 ,
'uid' => 0 ,
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
'post-user-id' => 9 ,
2021-12-04 21:34:51 +00:00
'author-id' => 43 ,
'owner-id' => 43 ,
'causer-id' => 43 ,
'contact-id' => 43 ,
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 0 ,
],
[
'uri-id' => 6 ,
'uid' => 0 ,
'wall' => 0 ,
2021-02-14 20:27:31 +00:00
'post-user-id' => 12 ,
2024-02-25 06:30:23 +00:00
'author-id' => 45 ,
'owner-id' => 45 ,
'causer-id' => 45 ,
'contact-id' => 45 ,
2021-12-04 21:34:51 +00:00
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 0 ,
2021-02-05 07:27:15 +00:00
],
2021-12-30 20:52:18 +00:00
[
'uri-id' => 7 ,
'uid' => 42 ,
'wall' => 1 ,
'post-user-id' => 7 ,
2024-02-25 06:30:23 +00:00
'author-id' => 45 ,
'owner-id' => 45 ,
'causer-id' => 45 ,
'contact-id' => 45 ,
2021-12-30 20:52:18 +00:00
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 1 ,
],
[
'uri-id' => 7 ,
'uid' => 0 ,
'wall' => 0 ,
'post-user-id' => 12 ,
2024-02-25 06:30:23 +00:00
'author-id' => 45 ,
'owner-id' => 45 ,
'causer-id' => 45 ,
'contact-id' => 45 ,
2021-12-30 20:52:18 +00:00
'network' => Protocol :: DFRN ,
'starred' => 0 ,
'origin' => 0 ,
],
2019-07-28 18:46:29 +00:00
],
2020-01-28 21:00:21 +00:00
'notify' => [
[
2021-12-04 21:34:51 +00:00
'id' => 1 ,
'type' => 8 ,
2022-03-03 14:07:37 +00:00
'name' => 'Friend contact' ,
2024-02-25 04:46:54 +00:00
'url' => 'https://friendica.local/profile/friendcontact' ,
'photo' => 'https://friendica.local/' ,
2021-12-04 21:34:51 +00:00
'date' => '2020-01-01 12:12:02' ,
'msg' => 'A test reply from an item' ,
'uid' => 42 ,
2024-02-25 04:46:54 +00:00
'link' => 'https://friendica.local/display/1' ,
2021-12-04 21:34:51 +00:00
'iid' => 4 ,
'seen' => 0 ,
'verb' => \Friendica\Protocol\Activity :: POST ,
'otype' => Notification\ObjectType :: ITEM ,
2022-03-03 14:07:37 +00:00
'name_cache' => 'Friend contact' ,
2021-12-04 21:34:51 +00:00
'msg_cache' => 'A test reply from an item' ,
2020-01-28 21:00:21 +00:00
],
],
2020-04-26 16:25:46 +00:00
'profile' => [
[
2021-12-04 21:34:51 +00:00
'id' => 1 ,
2020-04-26 16:25:46 +00:00
'uid' => 42 ,
2024-03-05 15:10:15 +00:00
'locality' => 'DFRN' ,
2020-04-26 16:25:46 +00:00
],
],
2021-12-04 21:34:51 +00:00
'group' => [
2019-07-28 18:46:29 +00:00
[
'id' => 1 ,
'uid' => 42 ,
'visible' => 1 ,
'name' => 'Visible list' ,
],
[
'id' => 2 ,
'uid' => 42 ,
'visible' => 0 ,
'name' => 'Private list' ,
],
],
2021-12-04 22:57:52 +00:00
'group_member' => [
[
'id' => 1 ,
'gid' => 1 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-12-04 22:57:52 +00:00
],
2021-12-09 21:55:15 +00:00
[
'id' => 2 ,
'gid' => 1 ,
2024-02-25 06:30:23 +00:00
'contact-id' => 43 ,
2021-12-09 21:55:15 +00:00
],
[
'id' => 3 ,
'gid' => 2 ,
'contact-id' => 43 ,
],
2021-12-04 22:57:52 +00:00
],
2021-12-04 21:34:51 +00:00
'search' => [
2019-07-28 18:46:29 +00:00
[
'id' => 1 ,
'term' => 'Saved search' ,
'uid' => 42 ,
],
],
2021-05-16 21:22:44 +00:00
];