Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/
Upload File :
Current File : /home/users/unlimited/www/facebook.codeskitter.site/api/v2/endpoints/albums.php

<?php
// +------------------------------------------------------------------------+
// | @author Deen Doughouz (DoughouzForest)
// | @author_url 1: http://www.wowonder.com
// | @author_url 2: http://codecanyon.net/user/doughouzforest
// | @author_email: wowondersocial@gmail.com
// +------------------------------------------------------------------------+
// | WoWonder - The Ultimate Social Networking Platform
// | Copyright (c) 2018 WoWonder. All rights reserved.
// +------------------------------------------------------------------------+
$response_data = array(
    'api_status' => 400
);

$required_fields = array(
    'create',
    'fetch',
    'add',
    'delete_album_image'
);

if (!empty($_POST['type']) && in_array($_POST['type'], $required_fields))
{

    if ($_POST['type'] == 'create')
    {
        if (!empty($_POST['album_name']) && !empty($_FILES['postPhotos']['name']))
        {

            if (isset($_FILES['postPhotos']['name']))
            {
                $allowed = array(
                    'gif',
                    'png',
                    'jpg',
                    'jpeg'
                );
                for ($i = 0;$i < count($_FILES['postPhotos']['name']);$i++)
                {
                    $new_string = pathinfo($_FILES['postPhotos']['name'][$i]);
                    if (!in_array(strtolower($new_string['extension']) , $allowed))
                    {
                        $error_code = 6;
                        $error_message = 'Image format is not supported, (jpg, png, gif, jpeg) are supported';
                    }
                }
            }
            if (empty($error_code))
            {
                $post_data = array(
                    'user_id' => Wo_Secure($wo['user']['user_id']) ,
                    'album_name' => Wo_Secure($_POST['album_name']) ,
                    'postPrivacy' => Wo_Secure(0) ,
                    'time' => time()
                );
                $id = Wo_RegisterPost($post_data);
                if (count($_FILES['postPhotos']['name']) > 0)
                {
                    for ($i = 0;$i < count($_FILES['postPhotos']['name']);$i++)
                    {
                        $fileInfo = array(
                            'file' => $_FILES["postPhotos"]["tmp_name"][$i],
                            'name' => $_FILES['postPhotos']['name'][$i],
                            'size' => $_FILES["postPhotos"]["size"][$i],
                            'type' => $_FILES["postPhotos"]["type"][$i],
                            'types' => 'jpg,png,jpeg,gif'
                        );
                        $file = Wo_ShareFile($fileInfo, 1);
                        if (!empty($file))
                        {
                            $media_album = Wo_RegisterAlbumMedia($id, $file['filename']);
                        }
                    }
                }

                $new_post = Wo_PostData($id);
                if (!empty($new_post['publisher']))
                {
                    foreach ($non_allowed as $key4 => $value4)
                    {
                        unset($new_post['publisher'][$value4]);
                    }
                }

                $response_data = array(
                    'api_status' => 200,
                    'data' => $new_post
                );
            }
        }
        else
        {
            $error_code = 5;
            $error_message = 'album_name and postPhotos can not be empty';
        }
    }
    if ($_POST['type'] == 'fetch')
    {
        if (!empty($_POST['user_id']))
        {
            $offset = (!empty($_POST['offset']) && is_numeric($_POST['offset']) && $_POST['offset'] > 0 ? Wo_Secure($_POST['offset']) : 0);
            $limit = (!empty($_POST['limit']) && is_numeric($_POST['limit']) && $_POST['limit'] > 0 && $_POST['limit'] <= 50 ? Wo_Secure($_POST['limit']) : 20);

            $user_id = Wo_Secure($_POST['user_id']);
            $albums = Wo_GetUserAlbums($user_id, '', $limit, $offset);
            foreach ($albums as $key => $album)
            {
                foreach ($non_allowed as $key1 => $value)
                {
                    unset($albums[$key]['publisher'][$value]);
                }
                if (!empty($album['get_post_comments']))
                {
                    foreach ($album['get_post_comments'] as $key3 => $comment)
                    {

                        foreach ($non_allowed as $key5 => $value5)
                        {
                            unset($albums[$key]['get_post_comments'][$key3]['publisher'][$value5]);
                        }
                    }
                }
            }
            $response_data = array(
                'api_status' => 200,
                'data' => $albums
            );
        }
        else
        {
            $error_code = 4;
            $error_message = 'user_id (POST) is missing';
        }
        //$albums = Wo_GetUserAlbums($wo['user_id']);
        
    }
    if ($_POST['type'] == 'add')
    {
        if (!empty($_POST['id']) && !empty($_FILES['postPhotos']['name']))
        {
            $id = Wo_Secure($_POST['id']);
            if (count($_FILES['postPhotos']['name']) > 0)
            {
                for ($i = 0;$i < count($_FILES['postPhotos']['name']);$i++)
                {
                    $fileInfo = array(
                        'file' => $_FILES["postPhotos"]["tmp_name"][$i],
                        'name' => $_FILES['postPhotos']['name'][$i],
                        'size' => $_FILES["postPhotos"]["size"][$i],
                        'type' => $_FILES["postPhotos"]["type"][$i],
                        'types' => 'jpg,png,jpeg,gif'
                    );
                    $file = Wo_ShareFile($fileInfo, 1);
                    if (!empty($file))
                    {
                        $media_album = Wo_RegisterAlbumMedia($id, $file['filename']);
                    }
                }
            }
            $new_post = Wo_PostData($id);
            if (!empty($new_post['publisher']))
            {
                foreach ($non_allowed as $key4 => $value4)
                {
                    unset($new_post['publisher'][$value4]);
                }
            }

            $response_data = array(
                'api_status' => 200,
                'data' => $new_post
            );
        }
        else
        {
            $error_code = 5;
            $error_message = 'id and postPhotos can not be empty';
        }

    }
    if ($_POST['type'] == 'delete_album_image')
    {
        if (!empty($_POST['post_id']) && !empty($_POST['id']))
        {
            if (Wo_DeleteImageFromAlbum($_POST['post_id'], $_POST['id']) === true)
            {
                $response_data = array(
                    'api_status' => 200,
                    'message' => 'image deleted'
                );
            }
            else
            {
                $error_code = 6;
                $error_message = 'you can not delete image';
            }
        }
        else
        {
            $error_code = 5;
            $error_message = 'post_id and id can not be empty';
        }
    }
}
else
{
    $error_code = 4;
    $error_message = 'type can not be empty';
}