315 lines
9.3 KiB
PHP
315 lines
9.3 KiB
PHP
<?php
|
|
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
namespace FacebookPixelPlugin\FacebookAds\Object;
|
|
|
|
use FacebookPixelPlugin\FacebookAds\ApiRequest;
|
|
use FacebookPixelPlugin\FacebookAds\Cursor;
|
|
use FacebookPixelPlugin\FacebookAds\Http\RequestInterface;
|
|
use FacebookPixelPlugin\FacebookAds\TypeChecker;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Fields\AlbumFields;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\CommentCommentPrivacyValueValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\CommentFilterValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\CommentLiveFilterValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\CommentOrderValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\PhotoBackdatedTimeGranularityValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\PhotoUnpublishedContentTypeValues;
|
|
use FacebookPixelPlugin\FacebookAds\Object\Values\ProfilePictureSourceTypeValues;
|
|
|
|
/**
|
|
* This class is auto-generated.
|
|
*
|
|
* For any issues or feature requests related to this class, please let us know
|
|
* on github and we'll fix in our codegen framework. We'll not be able to accept
|
|
* pull request for this class.
|
|
*
|
|
*/
|
|
|
|
class Album extends AbstractCrudObject {
|
|
|
|
/**
|
|
* @return AlbumFields
|
|
*/
|
|
public static function getFieldsEnum() {
|
|
return AlbumFields::getInstance();
|
|
}
|
|
|
|
protected static function getReferencedEnums() {
|
|
$ref_enums = array();
|
|
return $ref_enums;
|
|
}
|
|
|
|
|
|
public function getComments(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
'filter' => 'filter_enum',
|
|
'live_filter' => 'live_filter_enum',
|
|
'order' => 'order_enum',
|
|
'since' => 'datetime',
|
|
);
|
|
$enums = array(
|
|
'filter_enum' => CommentFilterValues::getInstance()->getValues(),
|
|
'live_filter_enum' => CommentLiveFilterValues::getInstance()->getValues(),
|
|
'order_enum' => CommentOrderValues::getInstance()->getValues(),
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/comments',
|
|
new Comment(),
|
|
'EDGE',
|
|
Comment::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function createComment(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
'attachment_id' => 'string',
|
|
'attachment_share_url' => 'string',
|
|
'attachment_url' => 'string',
|
|
'comment_privacy_value' => 'comment_privacy_value_enum',
|
|
'facepile_mentioned_ids' => 'list<string>',
|
|
'feedback_source' => 'string',
|
|
'is_offline' => 'bool',
|
|
'message' => 'string',
|
|
'nectar_module' => 'string',
|
|
'object_id' => 'string',
|
|
'parent_comment_id' => 'Object',
|
|
'text' => 'string',
|
|
'tracking' => 'string',
|
|
);
|
|
$enums = array(
|
|
'comment_privacy_value_enum' => CommentCommentPrivacyValueValues::getInstance()->getValues(),
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_POST,
|
|
'/comments',
|
|
new Comment(),
|
|
'EDGE',
|
|
Comment::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function getLikes(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
);
|
|
$enums = array(
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/likes',
|
|
new Profile(),
|
|
'EDGE',
|
|
Profile::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function createLike(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
'feedback_source' => 'string',
|
|
'nectar_module' => 'string',
|
|
'notify' => 'bool',
|
|
'tracking' => 'string',
|
|
);
|
|
$enums = array(
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_POST,
|
|
'/likes',
|
|
new Album(),
|
|
'EDGE',
|
|
Album::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function getPhotos(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
);
|
|
$enums = array(
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/photos',
|
|
new Photo(),
|
|
'EDGE',
|
|
Photo::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function createPhoto(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
'aid' => 'string',
|
|
'allow_spherical_photo' => 'bool',
|
|
'alt_text_custom' => 'string',
|
|
'android_key_hash' => 'string',
|
|
'application_id' => 'string',
|
|
'attempt' => 'unsigned int',
|
|
'audience_exp' => 'bool',
|
|
'backdated_time' => 'datetime',
|
|
'backdated_time_granularity' => 'backdated_time_granularity_enum',
|
|
'caption' => 'string',
|
|
'composer_session_id' => 'string',
|
|
'direct_share_status' => 'unsigned int',
|
|
'feed_targeting' => 'Object',
|
|
'filter_type' => 'unsigned int',
|
|
'full_res_is_coming_later' => 'bool',
|
|
'initial_view_heading_override_degrees' => 'unsigned int',
|
|
'initial_view_pitch_override_degrees' => 'unsigned int',
|
|
'initial_view_vertical_fov_override_degrees' => 'unsigned int',
|
|
'ios_bundle_id' => 'string',
|
|
'is_explicit_location' => 'bool',
|
|
'is_explicit_place' => 'bool',
|
|
'manual_privacy' => 'bool',
|
|
'message' => 'string',
|
|
'name' => 'string',
|
|
'no_story' => 'bool',
|
|
'offline_id' => 'unsigned int',
|
|
'og_action_type_id' => 'string',
|
|
'og_icon_id' => 'string',
|
|
'og_object_id' => 'string',
|
|
'og_phrase' => 'string',
|
|
'og_set_profile_badge' => 'bool',
|
|
'og_suggestion_mechanism' => 'string',
|
|
'place' => 'Object',
|
|
'privacy' => 'string',
|
|
'profile_id' => 'int',
|
|
'provenance_info' => 'map',
|
|
'proxied_app_id' => 'string',
|
|
'published' => 'bool',
|
|
'qn' => 'string',
|
|
'spherical_metadata' => 'map',
|
|
'sponsor_id' => 'string',
|
|
'sponsor_relationship' => 'unsigned int',
|
|
'tags' => 'list<Object>',
|
|
'target_id' => 'int',
|
|
'targeting' => 'Object',
|
|
'time_since_original_post' => 'unsigned int',
|
|
'uid' => 'int',
|
|
'unpublished_content_type' => 'unpublished_content_type_enum',
|
|
'url' => 'string',
|
|
'user_selected_tags' => 'bool',
|
|
'vault_image_id' => 'string',
|
|
);
|
|
$enums = array(
|
|
'backdated_time_granularity_enum' => PhotoBackdatedTimeGranularityValues::getInstance()->getValues(),
|
|
'unpublished_content_type_enum' => PhotoUnpublishedContentTypeValues::getInstance()->getValues(),
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_POST,
|
|
'/photos',
|
|
new Photo(),
|
|
'EDGE',
|
|
Photo::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function getPicture(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
'redirect' => 'bool',
|
|
'type' => 'type_enum',
|
|
);
|
|
$enums = array(
|
|
'type_enum' => ProfilePictureSourceTypeValues::getInstance()->getValues(),
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/picture',
|
|
new ProfilePictureSource(),
|
|
'EDGE',
|
|
ProfilePictureSource::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
public function getSelf(array $fields = array(), array $params = array(), $pending = false) {
|
|
$this->assureId();
|
|
|
|
$param_types = array(
|
|
);
|
|
$enums = array(
|
|
);
|
|
|
|
$request = new ApiRequest(
|
|
$this->api,
|
|
$this->data['id'],
|
|
RequestInterface::METHOD_GET,
|
|
'/',
|
|
new Album(),
|
|
'NODE',
|
|
Album::getFieldsEnum()->getValues(),
|
|
new TypeChecker($param_types, $enums)
|
|
);
|
|
$request->addParams($params);
|
|
$request->addFields($fields);
|
|
return $pending ? $request : $request->execute();
|
|
}
|
|
|
|
}
|