$notice = $stream->getNotices(($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
while ($notice->fetch()) {
- $fname = $dir . '/'. common_date_iso8601($notice->created) . '-notice-' . $notice->id . '.atom';
- $data = $notice->asAtomEntry(false, false, false, null);
- common_log(LOG_INFO, 'dumping notice ' . $notice->id . ' to file ' . $fname);
- file_put_contents($fname, $data);
- $data = null;
+ try {
+ $fname = $dir . '/'. common_date_iso8601($notice->created) . '-notice-' . $notice->id . '.atom';
+ $data = $notice->asAtomEntry(false, false, false, null);
+ common_log(LOG_INFO, 'dumping notice ' . $notice->id . ' to file ' . $fname);
+ file_put_contents($fname, $data);
+ $data = null;
+ } catch (Exception $e) {
+ common_log(LOG_ERR, "Error backing up notice " . $notice->id . ": " . $e->getMessage());
+ continue;
+ }
}
$page++;
$fave = Fave::byProfile($user->id, ($page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
while ($fave->fetch()) {
- $fname = $dir . '/'. common_date_iso8601($fave->modified) . '-fave-' . $fave->notice_id . '.atom';
- $act = $fave->asActivity();
- $data = $act->asString(false, false, false);
- common_log(LOG_INFO, 'dumping fave of ' . $fave->notice_id . ' to file ' . $fname);
- file_put_contents($fname, $data);
- $data = null;
+ try {
+ $fname = $dir . '/'. common_date_iso8601($fave->modified) . '-fave-' . $fave->notice_id . '.atom';
+ $act = $fave->asActivity();
+ $data = $act->asString(false, false, false);
+ common_log(LOG_INFO, 'dumping fave of ' . $fave->notice_id . ' to file ' . $fname);
+ file_put_contents($fname, $data);
+ $data = null;
+ } catch (Exception $e) {
+ common_log(LOG_ERR, "Error backing up fave of " . $fave->notice_id . ": " . $e->getMessage());
+ continue;
+ }
}
$page++;
$sub = Subscription::bySubscriber($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
while ($sub->fetch()) {
- if ($sub->subscribed == $user->id) {
+ try {
+ if ($sub->subscribed == $user->id) {
+ continue;
+ }
+ $fname = $dir . '/'. common_date_iso8601($sub->created) . '-subscription-' . $sub->subscribed . '.atom';
+ $act = $sub->asActivity();
+ $data = $act->asString(false, false, false);
+ common_log(LOG_INFO, 'dumping sub of ' . $sub->subscribed . ' to file ' . $fname);
+ file_put_contents($fname, $data);
+ $data = null;
+ } catch (Exception $e) {
+ common_log(LOG_ERR, "Error backing up subscription to " . $sub->subscribed . ": " . $e->getMessage());
continue;
}
- $fname = $dir . '/'. common_date_iso8601($sub->created) . '-subscription-' . $sub->subscribed . '.atom';
- $act = $sub->asActivity();
- $data = $act->asString(false, false, false);
- common_log(LOG_INFO, 'dumping sub of ' . $sub->subscribed . ' to file ' . $fname);
- file_put_contents($fname, $data);
- $data = null;
}
$page++;
$sub = Subscription::bySubscribed($user->id, ($page-1)*PROFILES_PER_PAGE, PROFILES_PER_PAGE + 1);
while ($sub->fetch()) {
- if ($sub->subscriber == $user->id) {
+ try {
+ if ($sub->subscriber == $user->id) {
+ continue;
+ }
+ $fname = $dir . '/'. common_date_iso8601($sub->created) . '-subscriber-' . $sub->subscriber . '.atom';
+ $act = $sub->asActivity();
+ $data = $act->asString(false, true, false);
+ common_log(LOG_INFO, 'dumping sub by ' . $sub->subscriber . ' to file ' . $fname);
+ file_put_contents($fname, $data);
+ $data = null;
+ } catch (Exception $e) {
+ common_log(LOG_ERR, "Error backing up subscription from " . $sub->subscriber . ": " . $e->getMessage());
continue;
}
- $fname = $dir . '/'. common_date_iso8601($sub->created) . '-subscriber-' . $sub->subscriber . '.atom';
- $act = $sub->asActivity();
- $data = $act->asString(false, true, false);
- common_log(LOG_INFO, 'dumping sub by ' . $sub->subscriber . ' to file ' . $fname);
- file_put_contents($fname, $data);
- $data = null;
}
$page++;
$mem = Group_member::byMember($user->id, ($page-1)*GROUPS_PER_PAGE, GROUPS_PER_PAGE + 1);
while ($mem->fetch()) {
- $fname = $dir . '/'. common_date_iso8601($mem->created) . '-membership-' . $mem->group_id . '.atom';
- $act = $mem->asActivity();
- $data = $act->asString(false, false, false);
- common_log(LOG_INFO, 'dumping membership in ' . $mem->group_id . ' to file ' . $fname);
- file_put_contents($fname, $data);
- $data = null;
+ try {
+ $fname = $dir . '/'. common_date_iso8601($mem->created) . '-membership-' . $mem->group_id . '.atom';
+ $act = $mem->asActivity();
+ $data = $act->asString(false, false, false);
+ common_log(LOG_INFO, 'dumping membership in ' . $mem->group_id . ' to file ' . $fname);
+ file_put_contents($fname, $data);
+ $data = null;
+ } catch (Exception $e) {
+ common_log(LOG_ERR, "Error backing up membership in " . $mem->group_id . ": " . $e->getMessage());
+ continue;
+ }
}
$page++;
- common_debug("Got " . $mem->N . " results on search for groups.");
-
} while ($mem->N > GROUPS_PER_PAGE);
}