2021-04-16 01:00:00 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
use Illuminate\Support\Facades\Hash;
|
2022-11-08 16:11:59 +01:00
|
|
|
use Cohensive\OEmbed\Facades\OEmbed;
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
2022-11-10 18:21:59 +01:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2023-03-28 13:45:54 +02:00
|
|
|
use Illuminate\Support\Facades\Response;
|
2023-03-27 19:04:41 +02:00
|
|
|
use JeroenDesloovere\VCard\VCard;
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
use Auth;
|
|
|
|
use DB;
|
2022-05-18 21:08:58 +02:00
|
|
|
use ZipArchive;
|
2022-09-13 13:47:21 +02:00
|
|
|
use File;
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Models\Button;
|
|
|
|
use App\Models\Link;
|
2022-11-08 16:11:59 +01:00
|
|
|
use App\Models\LinkType;
|
2023-02-16 14:25:37 +01:00
|
|
|
use App\Models\UserData;
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2022-05-18 21:08:58 +02:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
//Function tests if string starts with certain string (used to test for illegal strings)
|
|
|
|
function stringStartsWith($haystack, $needle, $case = true)
|
|
|
|
{
|
|
|
|
if ($case) {
|
2022-03-31 22:43:01 +02:00
|
|
|
return strpos($haystack, $needle, 0) === 0;
|
|
|
|
}
|
|
|
|
return stripos($haystack, $needle, 0) === 0;
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
//Function tests if string ends with certain string (used to test for illegal strings)
|
|
|
|
function stringEndsWith($haystack, $needle, $case = true)
|
|
|
|
{
|
2022-03-31 22:43:01 +02:00
|
|
|
$expectedPosition = strlen($haystack) - strlen($needle);
|
2022-11-08 16:11:59 +01:00
|
|
|
if ($case) {
|
2022-03-31 22:43:01 +02:00
|
|
|
return strrpos($haystack, $needle, 0) === $expectedPosition;
|
|
|
|
}
|
|
|
|
return strripos($haystack, $needle, 0) === $expectedPosition;
|
|
|
|
}
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
class UserController extends Controller
|
|
|
|
{
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
//Statistics of the number of clicks and links
|
2021-04-16 01:00:00 +02:00
|
|
|
public function index()
|
|
|
|
{
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
|
2021-04-18 19:43:43 +02:00
|
|
|
$littlelink_name = Auth::user()->littlelink_name;
|
2022-11-08 16:11:59 +01:00
|
|
|
$userinfo = User::find($userId);
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
$links = Link::where('user_id', $userId)->select('link')->count();
|
|
|
|
$clicks = Link::where('user_id', $userId)->sum('click_number');
|
2022-11-08 16:11:59 +01:00
|
|
|
$topLinks = Link::where('user_id', $userId)->orderby('click_number', 'desc')
|
|
|
|
->whereNotNull('link')->where('link', '<>', '')
|
|
|
|
->take(5)->get();
|
|
|
|
|
|
|
|
$pageStats = [
|
|
|
|
'visitors' => [
|
|
|
|
'all' => visits('App\Models\User', $littlelink_name)->count(),
|
|
|
|
'day' => visits('App\Models\User', $littlelink_name)->period('day')->count(),
|
|
|
|
'week' => visits('App\Models\User', $littlelink_name)->period('week')->count(),
|
|
|
|
'month' => visits('App\Models\User', $littlelink_name)->period('month')->count(),
|
|
|
|
'year' => visits('App\Models\User', $littlelink_name)->period('year')->count(),
|
|
|
|
],
|
|
|
|
'os' => visits('App\Models\User', $littlelink_name)->operatingSystems(),
|
|
|
|
'referers' => visits('App\Models\User', $littlelink_name)->refs(),
|
|
|
|
'countries' => visits('App\Models\User', $littlelink_name)->countries(),
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return view('studio/index', ['greeting' => $userinfo->name, 'toplinks' => $topLinks, 'links' => $links, 'clicks' => $clicks, 'pageStats' => $pageStats]);
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Show littlelink page. example => http://127.0.0.1:8000/+admin
|
|
|
|
public function littlelink(request $request)
|
|
|
|
{
|
2023-03-21 20:24:23 +01:00
|
|
|
$littlelink_name = $request->littlelink;
|
|
|
|
$id = User::select('id')->where('littlelink_name', $littlelink_name)->value('id');
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2023-03-21 20:24:23 +01:00
|
|
|
if (empty($id)) {
|
|
|
|
return abort(404);
|
2022-03-24 14:44:33 +01:00
|
|
|
}
|
2023-03-21 20:24:23 +01:00
|
|
|
|
|
|
|
$userinfo = User::select('id', 'name', 'littlelink_name', 'littlelink_description', 'theme', 'role')->where('id', $id)->first();
|
|
|
|
$information = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->get();
|
|
|
|
|
|
|
|
$links = DB::table('links')->join('buttons', 'buttons.id', '=', 'links.button_id')->select('links.link', 'links.id', 'links.button_id', 'links.title', 'links.custom_css', 'links.custom_icon', 'buttons.name')->where('user_id', $id)->orderBy('up_link', 'asc')->orderBy('order', 'asc')->get();
|
|
|
|
|
|
|
|
return view('littlelink', ['userinfo' => $userinfo, 'information' => $information, 'links' => $links, 'littlelink_name' => $littlelink_name]);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Show littlelink page as home page if set in config
|
|
|
|
public function littlelinkhome(request $request)
|
|
|
|
{
|
|
|
|
$littlelink_name = env('HOME_URL');
|
|
|
|
$id = User::select('id')->where('littlelink_name', $littlelink_name)->value('id');
|
2022-03-24 14:44:33 +01:00
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
if (empty($id)) {
|
|
|
|
return abort(404);
|
|
|
|
}
|
2022-11-09 18:07:50 +01:00
|
|
|
|
2023-03-11 12:32:37 +01:00
|
|
|
$userinfo = User::select('id', 'name', 'littlelink_name', 'littlelink_description', 'theme', 'role')->where('id', $id)->first();
|
2022-11-09 18:07:50 +01:00
|
|
|
$information = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->get();
|
|
|
|
|
|
|
|
$links = DB::table('links')->join('buttons', 'buttons.id', '=', 'links.button_id')->select('links.link', 'links.id', 'links.button_id', 'links.title', 'links.custom_css', 'links.custom_icon', 'buttons.name')->where('user_id', $id)->orderBy('up_link', 'asc')->orderBy('order', 'asc')->get();
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2021-07-06 10:40:16 +02:00
|
|
|
return view('littlelink', ['userinfo' => $userinfo, 'information' => $information, 'links' => $links, 'littlelink_name' => $littlelink_name]);
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
//Show add/update form
|
|
|
|
public function AddUpdateLink($id = 0)
|
2021-04-16 01:00:00 +02:00
|
|
|
{
|
2022-11-08 16:11:59 +01:00
|
|
|
|
|
|
|
if ($id !== 0) {
|
|
|
|
$linkData = Link::find($id);
|
2023-03-05 20:02:42 +01:00
|
|
|
} elseif ($id == 0) {
|
|
|
|
$linkData = new Link(['typename' => 'link', 'id'=>'0']);
|
2022-11-08 16:11:59 +01:00
|
|
|
} else {
|
|
|
|
$linkData = new Link(['typename' => 'link', 'id'=>'0']);
|
|
|
|
}
|
|
|
|
$data['LinkTypes'] = LinkType::get();
|
|
|
|
$data['LinkData'] = $linkData;
|
|
|
|
$data['LinkID'] = $id;
|
2022-11-10 18:21:59 +01:00
|
|
|
$data['linkTypeID'] = "1";
|
2022-11-14 11:37:30 +01:00
|
|
|
$data['title'] = "Predefined Site";
|
2022-11-10 18:21:59 +01:00
|
|
|
|
|
|
|
if (Route::currentRouteName() != 'showButtons') {
|
|
|
|
$links = DB::table('links')->where('id', $id)->first();
|
|
|
|
|
|
|
|
$bid = $links->button_id;
|
2022-11-10 19:03:35 +01:00
|
|
|
|
2022-11-10 18:21:59 +01:00
|
|
|
if($bid == 1 or $bid == 2){
|
2022-11-16 16:33:00 +01:00
|
|
|
$data['linkTypeID'] = "2";
|
2022-11-10 18:21:59 +01:00
|
|
|
} elseif ($bid == 42) {
|
|
|
|
$data['linkTypeID'] = "3";
|
|
|
|
} elseif ($bid == 43) {
|
|
|
|
$data['linkTypeID'] = "4";
|
2022-12-01 12:51:16 +01:00
|
|
|
} elseif ($bid == 93) {
|
|
|
|
$data['linkTypeID'] = "5";
|
2023-03-05 20:02:42 +01:00
|
|
|
} elseif ($bid == 6 or $bid == 7) {
|
|
|
|
$data['linkTypeID'] = "6";
|
|
|
|
} elseif ($bid == 44) {
|
|
|
|
$data['linkTypeID'] = "7";
|
2023-03-27 19:04:41 +02:00
|
|
|
} elseif ($bid == 96) {
|
|
|
|
$data['linkTypeID'] = "8";
|
2022-11-10 18:21:59 +01:00
|
|
|
} else {
|
2022-11-16 16:33:00 +01:00
|
|
|
$data['linkTypeID'] = "1";
|
2022-11-10 18:21:59 +01:00
|
|
|
}
|
2022-11-10 19:03:35 +01:00
|
|
|
|
|
|
|
$data['title'] = LinkType::where('id', $data['linkTypeID'])->value('title');
|
2022-11-10 18:21:59 +01:00
|
|
|
}
|
2022-11-08 16:11:59 +01:00
|
|
|
|
|
|
|
foreach ($data['LinkTypes']->toArray() as $key => $val) {
|
|
|
|
if ($val['typename'] === $linkData['typename']) {
|
|
|
|
$data['SelectedLinkType'] = $val;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-11-14 09:33:21 +01:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
return view('studio/edit-link', $data);
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
//Save add link
|
2022-11-08 16:11:59 +01:00
|
|
|
public function saveLink(request $request)
|
2021-04-16 01:00:00 +02:00
|
|
|
{
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
$linkType = LinkType::find($request->linktype_id);
|
|
|
|
$LinkTitle = ($request->link_text ?? $request->link_title) ?? $request->title;
|
|
|
|
$LinkURL = $request->link_url ?? $request->link;
|
|
|
|
|
|
|
|
|
|
|
|
$OrigLink = Link::find($request->linkid);
|
|
|
|
|
|
|
|
$customParams = [];
|
|
|
|
foreach ($request->all() as $key => $param) {
|
|
|
|
//echo $key . " = " . $param . "<br />";
|
|
|
|
if (str_starts_with($key, "_") || in_array($key, ['linktype_id', 'linktype_title', 'link_text', 'link_url']))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
$customParams[$key] = $param;
|
|
|
|
}
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
$userId = Auth::user()->id;
|
2022-11-08 16:11:59 +01:00
|
|
|
$button = Button::where('name', $request->button)->first();
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
if ($button && empty($LinkTitle))
|
|
|
|
$LinkTitle = ucwords($button->name);
|
|
|
|
|
|
|
|
if ($linkType->typename == 'video' && empty($LinkTitle)) {
|
|
|
|
$embed = OEmbed::get($LinkURL);
|
|
|
|
if ($embed) {
|
|
|
|
$LinkTitle = $embed->data()['title'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$message = (ucwords($button?->name) ?? ucwords($linkType->typename)). " has been ";
|
|
|
|
|
|
|
|
if ($OrigLink) {
|
|
|
|
//EDITING EXISTING
|
2022-11-10 19:55:46 +01:00
|
|
|
|
|
|
|
$isCustomWebsite = $customParams['GetSiteIcon'] ?? null;
|
|
|
|
$SpacerHeight = $customParams['height'] ?? null;
|
|
|
|
|
|
|
|
if($linkType->typename == "link" and $isCustomWebsite == "1"){
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
'button_id' => "2",
|
|
|
|
]);
|
|
|
|
}elseif($linkType->typename == "link"){
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
'button_id' => "1",
|
|
|
|
]);
|
|
|
|
}elseif($linkType->typename == "spacer"){
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
2022-11-14 09:33:21 +01:00
|
|
|
'title' => $customParams['height'] ?? null,
|
2022-11-10 19:55:46 +01:00
|
|
|
'button_id' => "43",
|
|
|
|
]);
|
|
|
|
}elseif($linkType->typename == "heading"){
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
'button_id' => "42",
|
|
|
|
]);
|
2022-12-01 12:51:16 +01:00
|
|
|
}elseif($linkType->typename == "text"){
|
|
|
|
$OrigLink->update([
|
|
|
|
'button_id' => "93",
|
|
|
|
'title' => $request->text,
|
|
|
|
]);
|
2023-03-05 20:02:42 +01:00
|
|
|
}elseif($linkType->typename == "email"){
|
|
|
|
$LinkURL = "mailto:".$LinkURL;
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'button_id' => $button?->id,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
]);
|
|
|
|
}elseif($linkType->typename == "telephone"){
|
|
|
|
$LinkURL = "tel:".$LinkURL;
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'button_id' => $button?->id,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
]);
|
2023-03-27 19:04:41 +02:00
|
|
|
}elseif($linkType->typename == "vcard"){
|
|
|
|
|
|
|
|
$prefix = $request->input('prefix');
|
|
|
|
$firstName = $request->input('first_name');
|
|
|
|
$middleName = $request->input('middle_name');
|
|
|
|
$lastName = $request->input('last_name');
|
|
|
|
$suffix = $request->input('suffix');
|
|
|
|
$nickname = $request->input('nickname');
|
|
|
|
$organization = $request->input('organization');
|
|
|
|
$title = $request->input('title');
|
|
|
|
$role = $request->input('role');
|
|
|
|
$workUrl = $request->input('work_url');
|
|
|
|
$email = $request->input('email');
|
|
|
|
$workEmail = $request->input('work_email');
|
|
|
|
$homePhone = $request->input('home_phone');
|
|
|
|
$workPhone = $request->input('work_phone');
|
|
|
|
$cellPhone = $request->input('cell_phone');
|
|
|
|
$homeAddressLabel = $request->input('home_address_label');
|
|
|
|
$homeAddressStreet = $request->input('home_address_street');
|
|
|
|
$homeAddressCity = $request->input('home_address_city');
|
|
|
|
$homeAddressState = $request->input('home_address_state');
|
|
|
|
$homeAddressZip = $request->input('home_address_zip');
|
|
|
|
$homeAddressCountry = $request->input('home_address_country');
|
|
|
|
$workAddressLabel = $request->input('work_address_label');
|
|
|
|
$workAddressStreet = $request->input('work_address_street');
|
|
|
|
$workAddressCity = $request->input('work_address_city');
|
|
|
|
$workAddressState = $request->input('work_address_state');
|
|
|
|
$workAddressZip = $request->input('work_address_zip');
|
|
|
|
$workAddressCountry = $request->input('work_address_country');
|
|
|
|
|
|
|
|
// Create a new vCard instance
|
|
|
|
$vCard = new VCard();
|
|
|
|
|
|
|
|
// Set the personal information
|
|
|
|
$vCard->addName($lastName, $firstName, $middleName, $prefix, $suffix);
|
|
|
|
$vCard->addRole($role);
|
|
|
|
|
|
|
|
// Set the organization information
|
|
|
|
$vCard->addCompany($organization);
|
|
|
|
$vCard->addJobtitle($title);
|
|
|
|
$vCard->addUrl($workUrl);
|
|
|
|
|
|
|
|
// Set the phone numbers
|
|
|
|
$vCard->addPhoneNumber($homePhone, 'HOME');
|
|
|
|
$vCard->addPhoneNumber($workPhone, 'WORK');
|
|
|
|
$vCard->addPhoneNumber($cellPhone, 'CELL');
|
|
|
|
|
|
|
|
// Set the email addresses
|
|
|
|
$vCard->addEmail($email, 'HOME');
|
|
|
|
$vCard->addEmail($workEmail, 'WORK');
|
|
|
|
|
|
|
|
// Set the addresses
|
|
|
|
$vCard->addAddress($homeAddressStreet, null, null, $homeAddressCity, $homeAddressState, $homeAddressZip, $homeAddressCountry, 'HOME', $homeAddressLabel);
|
|
|
|
$vCard->addAddress($workAddressStreet, null, null, $workAddressCity, $workAddressState, $workAddressZip, $workAddressCountry, 'WORK', $workAddressLabel);
|
|
|
|
|
|
|
|
// Generate the vCard file content
|
|
|
|
$LinkURL = $vCard->getOutput();
|
|
|
|
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'button_id' => 96,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
]);
|
2022-11-10 19:55:46 +01:00
|
|
|
}else{
|
|
|
|
$OrigLink->update([
|
|
|
|
'link' => $LinkURL,
|
|
|
|
'title' => $LinkTitle,
|
|
|
|
'button_id' => $button?->id,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
$message .="updated";
|
2023-03-05 20:02:42 +01:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
} else {
|
|
|
|
// ADDING NEW
|
|
|
|
|
|
|
|
$isCustomWebsite = $customParams['GetSiteIcon'] ?? null;
|
|
|
|
$SpacerHeight = $customParams['height'] ?? null;
|
|
|
|
|
|
|
|
$links = new Link;
|
|
|
|
$links->link = $LinkURL;
|
|
|
|
$links->user_id = $userId;
|
|
|
|
if($linkType->typename == "spacer"){
|
|
|
|
$links->title = $SpacerHeight;
|
|
|
|
}else{
|
|
|
|
$links->title = $LinkTitle;
|
|
|
|
}
|
|
|
|
if($linkType->typename == "link" and $isCustomWebsite == "1"){
|
|
|
|
$links->button_id = "2";
|
|
|
|
}elseif($linkType->typename == "link"){
|
|
|
|
$links->button_id = "1";
|
|
|
|
}elseif($linkType->typename == "spacer"){
|
|
|
|
$links->button_id = "43";
|
|
|
|
}elseif($linkType->typename == "heading"){
|
|
|
|
$links->button_id = "42";
|
2022-12-01 12:51:16 +01:00
|
|
|
}elseif($linkType->typename == "text"){
|
|
|
|
$links->button_id = "93";
|
|
|
|
$links->title = $request->text;
|
2023-03-05 20:02:42 +01:00
|
|
|
}elseif($linkType->typename == "email"){
|
|
|
|
$links->link = "mailto:".$links->link;
|
|
|
|
$links->button_id = $button?->id;
|
|
|
|
}elseif($linkType->typename == "telephone"){
|
|
|
|
$links->link = "tel:".$links->link;
|
|
|
|
$links->button_id = $button?->id;
|
2023-03-27 19:04:41 +02:00
|
|
|
}elseif($linkType->typename == "vcard"){
|
|
|
|
|
|
|
|
$prefix = $request->input('prefix');
|
|
|
|
$firstName = $request->input('first_name');
|
|
|
|
$middleName = $request->input('middle_name');
|
|
|
|
$lastName = $request->input('last_name');
|
|
|
|
$suffix = $request->input('suffix');
|
|
|
|
$nickname = $request->input('nickname');
|
|
|
|
$organization = $request->input('organization');
|
|
|
|
$title = $request->input('title');
|
|
|
|
$role = $request->input('role');
|
|
|
|
$workUrl = $request->input('work_url');
|
|
|
|
$email = $request->input('email');
|
|
|
|
$workEmail = $request->input('work_email');
|
|
|
|
$homePhone = $request->input('home_phone');
|
|
|
|
$workPhone = $request->input('work_phone');
|
|
|
|
$cellPhone = $request->input('cell_phone');
|
|
|
|
$homeAddressLabel = $request->input('home_address_label');
|
|
|
|
$homeAddressStreet = $request->input('home_address_street');
|
|
|
|
$homeAddressCity = $request->input('home_address_city');
|
|
|
|
$homeAddressState = $request->input('home_address_state');
|
|
|
|
$homeAddressZip = $request->input('home_address_zip');
|
|
|
|
$homeAddressCountry = $request->input('home_address_country');
|
|
|
|
$workAddressLabel = $request->input('work_address_label');
|
|
|
|
$workAddressStreet = $request->input('work_address_street');
|
|
|
|
$workAddressCity = $request->input('work_address_city');
|
|
|
|
$workAddressState = $request->input('work_address_state');
|
|
|
|
$workAddressZip = $request->input('work_address_zip');
|
|
|
|
$workAddressCountry = $request->input('work_address_country');
|
|
|
|
|
|
|
|
// Create a new vCard instance
|
|
|
|
$vCard = new VCard();
|
|
|
|
|
|
|
|
// Set the personal information
|
|
|
|
$vCard->addName($lastName, $firstName, $middleName, $prefix, $suffix);
|
|
|
|
$vCard->addRole($role);
|
|
|
|
|
|
|
|
// Set the organization information
|
|
|
|
$vCard->addCompany($organization);
|
|
|
|
$vCard->addJobtitle($title);
|
|
|
|
$vCard->addUrl($workUrl);
|
|
|
|
|
|
|
|
// Set the phone numbers
|
|
|
|
$vCard->addPhoneNumber($homePhone, 'HOME');
|
|
|
|
$vCard->addPhoneNumber($workPhone, 'WORK');
|
|
|
|
$vCard->addPhoneNumber($cellPhone, 'CELL');
|
|
|
|
|
|
|
|
// Set the email addresses
|
|
|
|
$vCard->addEmail($email, 'HOME');
|
|
|
|
$vCard->addEmail($workEmail, 'WORK');
|
|
|
|
|
|
|
|
// Set the addresses
|
|
|
|
$vCard->addAddress($homeAddressStreet, null, null, $homeAddressCity, $homeAddressState, $homeAddressZip, $homeAddressCountry, 'HOME', $homeAddressLabel);
|
|
|
|
$vCard->addAddress($workAddressStreet, null, null, $workAddressCity, $workAddressState, $workAddressZip, $workAddressCountry, 'WORK', $workAddressLabel);
|
|
|
|
|
|
|
|
// Generate the vCard file content
|
|
|
|
$links->link = $vCard->getOutput();
|
|
|
|
|
|
|
|
$links->button_id = 96;
|
2022-11-08 16:11:59 +01:00
|
|
|
}else{
|
|
|
|
$links->button_id = $button?->id;
|
|
|
|
}
|
2023-03-05 20:02:42 +01:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
$links->save();
|
|
|
|
|
|
|
|
$links->order = ($links->id - 1);
|
|
|
|
$links->save();
|
|
|
|
$message .= "added";
|
|
|
|
}
|
|
|
|
|
|
|
|
return Redirect('studio/links')
|
|
|
|
->with('success', $message);
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
2022-08-14 21:05:26 +02:00
|
|
|
public function sortLinks(Request $request)
|
|
|
|
{
|
|
|
|
$linkOrders = $request->input("linkOrders", []);
|
|
|
|
$currentPage = $request->input("currentPage", 1);
|
|
|
|
$perPage = $request->input("perPage", 0);
|
|
|
|
|
|
|
|
if ($perPage == 0) {
|
|
|
|
$currentPage = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$linkOrders = array_unique(array_filter($linkOrders));
|
|
|
|
if (!$linkOrders || $currentPage < 1) {
|
|
|
|
return response()->json([
|
|
|
|
'status' => 'ERROR',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-08-14 21:42:40 +02:00
|
|
|
$newOrder = $perPage * ($currentPage - 1);
|
2022-08-14 21:05:26 +02:00
|
|
|
$linkNewOrders = [];
|
|
|
|
foreach ($linkOrders as $linkId) {
|
|
|
|
if ($linkId < 0) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$linkNewOrders[$linkId] = $newOrder;
|
|
|
|
Link::where("id", $linkId)
|
|
|
|
->update([
|
|
|
|
'order' => $newOrder
|
|
|
|
]);
|
|
|
|
$newOrder++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return response()->json([
|
|
|
|
'status' => 'OK',
|
|
|
|
'linkOrders' => $linkNewOrders,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Count the number of clicks and redirect to link
|
|
|
|
public function clickNumber(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
2022-11-25 16:50:11 +01:00
|
|
|
$link = Link::find($linkId);
|
|
|
|
$link = $link->link;
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
Link::where('id', $linkId)->increment('click_number', 1);
|
|
|
|
|
|
|
|
return redirect()->away($link);
|
|
|
|
}
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2023-03-27 19:04:41 +02:00
|
|
|
//Download Vcard
|
2023-03-28 13:45:54 +02:00
|
|
|
public function vcard(request $request)
|
2023-03-27 19:04:41 +02:00
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
|
|
|
|
2023-03-28 13:45:54 +02:00
|
|
|
// Find the link with the specified ID
|
|
|
|
$link = Link::findOrFail($linkId);
|
2023-03-27 19:04:41 +02:00
|
|
|
|
2023-03-28 13:45:54 +02:00
|
|
|
// Set the response headers to indicate that a VCard file should be downloaded
|
|
|
|
$headers = [
|
|
|
|
'Content-Type' => 'text/vcard',
|
|
|
|
'Content-Disposition' => 'attachment; filename="vcard.vcf"',
|
|
|
|
];
|
2023-03-27 19:04:41 +02:00
|
|
|
|
2023-03-28 13:45:54 +02:00
|
|
|
// Return the link's content as a downloadable file
|
|
|
|
return Response::make($link->link, 200, $headers);
|
2023-03-27 19:04:41 +02:00
|
|
|
}
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Show link, click number, up link in links page
|
|
|
|
public function showLinks()
|
|
|
|
{
|
|
|
|
$userId = Auth::user()->id;
|
2022-08-14 21:05:26 +02:00
|
|
|
$data['pagePage'] = 10;
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2022-12-05 21:22:06 +01:00
|
|
|
$data['links'] = Link::select('id', 'link', 'title', 'order', 'click_number', 'up_link', 'links.button_id')->where('user_id', $userId)->orderBy('up_link', 'asc')->orderBy('order', 'asc')->paginate(99999);
|
2022-08-05 17:29:49 +02:00
|
|
|
return view('studio/links', $data);
|
|
|
|
}
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Delete link
|
|
|
|
public function deleteLink(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
|
|
|
|
|
|
|
Link::where('id', $linkId)->delete();
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2022-11-28 19:44:02 +01:00
|
|
|
$directory = base_path("studio/favicon/icons");
|
|
|
|
$files = scandir($directory);
|
|
|
|
foreach($files as $file) {
|
|
|
|
if (strpos($file, $linkId.".") !== false) {
|
|
|
|
$pathinfo = pathinfo($file, PATHINFO_EXTENSION);}}
|
|
|
|
if (isset($pathinfo)) {
|
|
|
|
try{File::delete(base_path("studio/favicon/icons")."/".$linkId.".".$pathinfo);} catch (exception $e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect('/studio/links');
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
2022-11-28 20:20:43 +01:00
|
|
|
//Delete icon
|
|
|
|
public function clearIcon(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
|
|
|
|
|
|
|
$directory = base_path("studio/favicon/icons");
|
|
|
|
$files = scandir($directory);
|
|
|
|
foreach($files as $file) {
|
|
|
|
if (strpos($file, $linkId.".") !== false) {
|
|
|
|
$pathinfo = pathinfo($file, PATHINFO_EXTENSION);}}
|
|
|
|
if (isset($pathinfo)) {
|
|
|
|
try{File::delete(base_path("studio/favicon/icons")."/".$linkId.".".$pathinfo);} catch (exception $e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect('/studio/links');
|
|
|
|
}
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Raise link on the littlelink page
|
|
|
|
public function upLink(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
|
|
|
$upLink = $request->up;
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
if ($upLink == 'yes') {
|
2021-04-16 01:00:00 +02:00
|
|
|
$up = 'no';
|
2022-11-08 16:11:59 +01:00
|
|
|
} elseif ($upLink == 'no') {
|
2021-04-16 01:00:00 +02:00
|
|
|
$up = 'yes';
|
|
|
|
}
|
|
|
|
|
|
|
|
Link::where('id', $linkId)->update(['up_link' => $up]);
|
|
|
|
|
|
|
|
return back();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Show link to edit
|
|
|
|
public function showLink(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
|
|
|
|
|
|
|
$link = Link::where('id', $linkId)->value('link');
|
2021-07-06 10:40:16 +02:00
|
|
|
$title = Link::where('id', $linkId)->value('title');
|
|
|
|
$order = Link::where('id', $linkId)->value('order');
|
2022-04-07 16:30:26 +02:00
|
|
|
$custom_css = Link::where('id', $linkId)->value('custom_css');
|
2021-07-06 10:40:16 +02:00
|
|
|
$buttonId = Link::where('id', $linkId)->value('button_id');
|
2022-07-31 13:35:52 +02:00
|
|
|
$buttonName = Button::where('id', $buttonId)->value('name');
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2022-08-02 00:34:18 +02:00
|
|
|
$buttons = Button::select('id', 'name')->orderBy('name', 'asc')->get();
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
return view('studio/edit-link', ['custom_css' => $custom_css, 'buttonId' => $buttonId, 'buttons' => $buttons, 'link' => $link, 'title' => $title, 'order' => $order, 'id' => $linkId, 'buttonName' => $buttonName]);
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
2022-04-13 16:49:44 +02:00
|
|
|
//Show custom CSS + custom icon
|
2022-04-10 17:42:29 +02:00
|
|
|
public function showCSS(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
|
|
|
|
|
|
|
$link = Link::where('id', $linkId)->value('link');
|
|
|
|
$title = Link::where('id', $linkId)->value('title');
|
|
|
|
$order = Link::where('id', $linkId)->value('order');
|
|
|
|
$custom_css = Link::where('id', $linkId)->value('custom_css');
|
2022-04-13 15:37:54 +02:00
|
|
|
$custom_icon = Link::where('id', $linkId)->value('custom_icon');
|
2022-04-10 17:42:29 +02:00
|
|
|
$buttonId = Link::where('id', $linkId)->value('button_id');
|
|
|
|
|
|
|
|
$buttons = Button::select('id', 'name')->get();
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
return view('studio/button-editor', ['custom_icon' => $custom_icon, 'custom_css' => $custom_css, 'buttonId' => $buttonId, 'buttons' => $buttons, 'link' => $link, 'title' => $title, 'order' => $order, 'id' => $linkId]);
|
2022-04-10 17:42:29 +02:00
|
|
|
}
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Save edit link
|
|
|
|
public function editLink(request $request)
|
|
|
|
{
|
|
|
|
$request->validate([
|
|
|
|
'link' => 'required',
|
2021-07-06 10:40:16 +02:00
|
|
|
'title' => 'required',
|
2021-04-16 01:00:00 +02:00
|
|
|
'button' => 'required',
|
|
|
|
]);
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
if (stringStartsWith($request->link, 'http://') == 'true' or stringStartsWith($request->link, 'https://') == 'true' or stringStartsWith($request->link, 'mailto:') == 'true')
|
|
|
|
$link1 = $request->link;
|
|
|
|
else
|
|
|
|
$link1 = 'https://' . $request->link;
|
|
|
|
if (stringEndsWith($request->link, '/') == 'true')
|
|
|
|
$link = rtrim($link1, "/ ");
|
2022-03-31 22:43:01 +02:00
|
|
|
else
|
2023-03-05 20:02:42 +01:00
|
|
|
$link = $link1;
|
2021-07-06 10:40:16 +02:00
|
|
|
$title = $request->title;
|
|
|
|
$order = $request->order;
|
2021-04-16 01:00:00 +02:00
|
|
|
$button = $request->button;
|
|
|
|
$linkId = $request->id;
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
$buttonId = Button::select('id')->where('name', $button)->value('id');
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2022-04-08 18:27:43 +02:00
|
|
|
Link::where('id', $linkId)->update(['link' => $link, 'title' => $title, 'order' => $order, 'button_id' => $buttonId]);
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
return redirect('/studio/links');
|
|
|
|
}
|
|
|
|
|
2022-04-13 16:49:44 +02:00
|
|
|
//Save edit custom CSS + custom icon
|
2022-04-10 17:42:29 +02:00
|
|
|
public function editCSS(request $request)
|
|
|
|
{
|
|
|
|
$linkId = $request->id;
|
2022-04-13 16:49:44 +02:00
|
|
|
$custom_icon = $request->custom_icon;
|
2022-04-10 17:42:29 +02:00
|
|
|
$custom_css = $request->custom_css;
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
if ($request->custom_css == "" and $request->custom_icon = !"") {
|
|
|
|
Link::where('id', $linkId)->update(['custom_icon' => $custom_icon]);
|
|
|
|
} elseif ($request->custom_icon == "" and $request->custom_css = !"") {
|
|
|
|
Link::where('id', $linkId)->update(['custom_css' => $custom_css]);
|
|
|
|
} else {
|
|
|
|
Link::where('id', $linkId)->update([]);
|
|
|
|
}
|
2022-05-04 00:40:41 +02:00
|
|
|
return Redirect('#result');
|
2022-04-10 17:42:29 +02:00
|
|
|
}
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Show littlelinke page for edit
|
|
|
|
public function showPage(request $request)
|
|
|
|
{
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
$data['pages'] = User::where('id', $userId)->select('littlelink_name', 'littlelink_description', 'image', 'name')->get();
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
return view('/studio/page', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Save littlelink page (name, description, logo)
|
|
|
|
public function editPage(request $request)
|
|
|
|
{
|
2022-11-08 16:11:59 +01:00
|
|
|
$request->validate([
|
2023-01-23 16:30:29 +01:00
|
|
|
'littlelink_name' => 'sometimes|max:255|string|isunique:users,id,'.Auth::id(),
|
|
|
|
'name' => 'sometimes|max:255|string',
|
2022-11-08 16:11:59 +01:00
|
|
|
]);
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
$userId = Auth::user()->id;
|
2021-04-18 19:43:43 +02:00
|
|
|
$littlelink_name = Auth::user()->littlelink_name;
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
$profilePhoto = $request->file('image');
|
2023-01-23 16:06:07 +01:00
|
|
|
$pageName = $request->littlelink_name;
|
2022-11-10 21:48:48 +01:00
|
|
|
$pageDescription = strip_tags($request->pageDescription,'<a><p><strong><i><ul><ol><li><blockquote><h2><h3><h4>');
|
|
|
|
$pageDescription = preg_replace("/<a([^>]*)>/i", "<a $1 rel=\"noopener noreferrer nofollow\">", $pageDescription);
|
2023-01-23 16:06:07 +01:00
|
|
|
$name = $request->name;
|
2023-02-16 15:38:17 +01:00
|
|
|
$checkmark = $request->checkmark;
|
2021-04-16 01:00:00 +02:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
User::where('id', $userId)->update(['littlelink_name' => $pageName, 'littlelink_description' => $pageDescription, 'name' => $name]);
|
|
|
|
|
2023-01-23 16:30:29 +01:00
|
|
|
if ($request->hasFile('image')) {
|
2023-01-23 16:54:18 +01:00
|
|
|
$profilePhoto->move(base_path('/img'), $userId . ".png");
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
2023-02-16 15:38:17 +01:00
|
|
|
if($checkmark == "on"){
|
|
|
|
UserData::saveData($userId, 'checkmark', true);
|
|
|
|
} else {
|
|
|
|
UserData::saveData($userId, 'checkmark', false);
|
|
|
|
}
|
|
|
|
|
2022-05-13 16:09:00 +02:00
|
|
|
return Redirect('/studio/page');
|
2021-04-16 01:00:00 +02:00
|
|
|
}
|
|
|
|
|
2023-02-13 16:22:11 +01:00
|
|
|
//Upload custom theme background image
|
|
|
|
public function themeBackground(request $request)
|
|
|
|
{
|
|
|
|
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
$littlelink_name = Auth::user()->littlelink_name;
|
|
|
|
|
|
|
|
$customBackground = $request->file('image');
|
|
|
|
|
2023-02-13 17:18:32 +01:00
|
|
|
if (!empty($customBackground)) {
|
|
|
|
$directory = base_path('/img/background-img/');
|
|
|
|
$files = scandir($directory);
|
|
|
|
$pathinfo = "error.error";
|
|
|
|
foreach($files as $file) {
|
|
|
|
if (strpos($file, $userId.'.') !== false) {
|
|
|
|
$pathinfo = $userId. "." . pathinfo($file, PATHINFO_EXTENSION);
|
|
|
|
}}
|
|
|
|
if(file_exists(base_path('/img/background-img/').$pathinfo)){File::delete(base_path('/img/background-img/').$pathinfo);}
|
|
|
|
|
|
|
|
$customBackground->move(base_path('/img/background-img/'), $userId.".".$request->file('image')->extension());
|
2023-02-13 16:22:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return Redirect('/studio/theme');
|
|
|
|
}
|
|
|
|
|
2023-02-13 18:40:18 +01:00
|
|
|
//Delete custom background image
|
|
|
|
public function removeBackground()
|
|
|
|
{
|
|
|
|
|
|
|
|
function findBackground($name){
|
|
|
|
$directory = base_path('/img/background-img/');
|
|
|
|
$files = scandir($directory);
|
|
|
|
$pathinfo = "error.error";
|
|
|
|
foreach($files as $file) {
|
|
|
|
if (strpos($file, $name.'.') !== false) {
|
|
|
|
$pathinfo = $name. "." . pathinfo($file, PATHINFO_EXTENSION);
|
|
|
|
}}
|
|
|
|
return $pathinfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user_id = Auth::user()->id;
|
|
|
|
$path = findBackground($user_id);
|
|
|
|
$path = base_path('/img/background-img/'.$path);
|
|
|
|
|
|
|
|
if (File::exists($path)) {
|
|
|
|
File::delete($path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return back();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-05-18 21:08:58 +02:00
|
|
|
//Show custom theme
|
|
|
|
public function showTheme(request $request)
|
|
|
|
{
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
|
|
|
|
$data['pages'] = User::where('id', $userId)->select('littlelink_name', 'theme')->get();
|
|
|
|
|
|
|
|
return view('/studio/theme', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Save custom theme
|
|
|
|
public function editTheme(request $request)
|
|
|
|
{
|
|
|
|
$request->validate([
|
|
|
|
'zip' => 'sometimes|mimes:zip',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
|
|
|
|
$zipfile = $request->file('zip');
|
|
|
|
|
|
|
|
$theme = $request->theme;
|
2022-11-08 16:11:59 +01:00
|
|
|
$message = "";
|
|
|
|
|
2022-05-18 21:08:58 +02:00
|
|
|
User::where('id', $userId)->update(['theme' => $theme]);
|
|
|
|
|
|
|
|
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
if (!empty($zipfile)) {
|
2022-09-13 13:47:21 +02:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
$zipfile->move(base_path('/themes'), "temp.zip");
|
|
|
|
|
|
|
|
$zip = new ZipArchive;
|
|
|
|
$zip->open(base_path() . '/themes/temp.zip');
|
|
|
|
$zip->extractTo(base_path() . '/themes');
|
|
|
|
$zip->close();
|
|
|
|
unlink(base_path() . '/themes/temp.zip');
|
|
|
|
|
|
|
|
// Removes version numbers from folder.
|
|
|
|
|
|
|
|
$folder = base_path('themes');
|
|
|
|
$regex = '/[0-9.-]/';
|
|
|
|
$files = scandir($folder);
|
|
|
|
|
|
|
|
foreach ($files as $file) {
|
|
|
|
if ($file !== '.' && $file !== '..') {
|
|
|
|
if (preg_match($regex, $file)) {
|
|
|
|
$new_file = preg_replace($regex, '', $file);
|
|
|
|
File::copyDirectory($folder . '/' . $file, $folder . '/' . $new_file);
|
|
|
|
$dirname = $folder . '/' . $file;
|
|
|
|
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
|
|
|
|
system('rmdir ' . escapeshellarg($dirname) . ' /s /q');
|
|
|
|
} else {
|
|
|
|
system("rm -rf " . escapeshellarg($dirname));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-13 13:47:21 +02:00
|
|
|
}
|
2022-05-18 21:08:58 +02:00
|
|
|
}
|
|
|
|
|
2022-09-13 13:47:21 +02:00
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
return Redirect('/studio/theme')->with("success", $message);
|
2022-05-18 21:08:58 +02:00
|
|
|
}
|
|
|
|
|
2021-04-16 01:00:00 +02:00
|
|
|
//Show user (name, email, password)
|
2022-05-18 21:08:58 +02:00
|
|
|
public function showProfile(request $request)
|
2021-04-16 01:00:00 +02:00
|
|
|
{
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
|
2021-07-06 10:40:16 +02:00
|
|
|
$data['profile'] = User::where('id', $userId)->select('name', 'email', 'role')->get();
|
2021-04-16 01:00:00 +02:00
|
|
|
|
|
|
|
return view('/studio/profile', $data);
|
|
|
|
}
|
|
|
|
|
|
|
|
//Save user (name, email, password)
|
|
|
|
public function editProfile(request $request)
|
|
|
|
{
|
|
|
|
$request->validate([
|
2022-03-31 21:31:00 +02:00
|
|
|
'name' => 'sometimes|required|unique:users',
|
|
|
|
'email' => 'sometimes|required|email|unique:users',
|
|
|
|
'password' => 'sometimes|min:8',
|
2021-04-16 01:00:00 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
$userId = Auth::user()->id;
|
|
|
|
|
|
|
|
$name = $request->name;
|
|
|
|
$email = $request->email;
|
|
|
|
$password = Hash::make($request->password);
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
if ($request->name != '') {
|
|
|
|
User::where('id', $userId)->update(['name' => $name]);
|
|
|
|
} elseif ($request->email != '') {
|
|
|
|
User::where('id', $userId)->update(['email' => $email]);
|
|
|
|
} elseif ($request->password != '') {
|
|
|
|
User::where('id', $userId)->update(['password' => $password]);
|
2022-03-31 21:31:00 +02:00
|
|
|
}
|
2021-04-16 01:00:00 +02:00
|
|
|
return back();
|
|
|
|
}
|
2022-05-31 14:11:26 +02:00
|
|
|
|
|
|
|
//Show user theme credit page
|
|
|
|
public function theme(request $request)
|
|
|
|
{
|
|
|
|
$littlelink_name = $request->littlelink;
|
|
|
|
$id = User::select('id')->where('littlelink_name', $littlelink_name)->value('id');
|
|
|
|
|
|
|
|
if (empty($id)) {
|
|
|
|
return abort(404);
|
|
|
|
}
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2022-05-31 14:11:26 +02:00
|
|
|
$userinfo = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->first();
|
|
|
|
$information = User::select('name', 'littlelink_name', 'littlelink_description', 'theme')->where('id', $id)->get();
|
2022-11-08 16:11:59 +01:00
|
|
|
|
2022-05-31 14:11:26 +02:00
|
|
|
$links = DB::table('links')->join('buttons', 'buttons.id', '=', 'links.button_id')->select('links.link', 'links.id', 'links.button_id', 'links.title', 'links.custom_css', 'links.custom_icon', 'buttons.name')->where('user_id', $id)->orderBy('up_link', 'asc')->orderBy('order', 'asc')->get();
|
|
|
|
|
|
|
|
return view('components/theme', ['userinfo' => $userinfo, 'information' => $information, 'links' => $links, 'littlelink_name' => $littlelink_name]);
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:11:59 +01:00
|
|
|
//Delete existing user
|
|
|
|
public function deleteUser(request $request)
|
|
|
|
{
|
|
|
|
|
|
|
|
// echo $request->id;
|
|
|
|
// echo "<br>";
|
|
|
|
// echo Auth::id();
|
|
|
|
$id = $request->id;
|
|
|
|
|
|
|
|
if($id == Auth::id() and $id != "1") {
|
|
|
|
$user = User::find($id);
|
|
|
|
|
|
|
|
Schema::disableForeignKeyConstraints();
|
|
|
|
$user->forceDelete();
|
|
|
|
Schema::enableForeignKeyConstraints();
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect('/');
|
|
|
|
}
|
2022-12-05 20:02:23 +01:00
|
|
|
|
2023-01-23 17:19:09 +01:00
|
|
|
//Delete profile picture
|
|
|
|
public function delProfilePicture()
|
|
|
|
{
|
|
|
|
$user_id = Auth::user()->id;
|
|
|
|
$path = base_path('img/' . $user_id . '.png');
|
|
|
|
|
|
|
|
if (File::exists($path)) {
|
|
|
|
File::delete($path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return back();
|
|
|
|
}
|
|
|
|
|
2023-03-08 17:20:39 +01:00
|
|
|
//Export user links
|
|
|
|
public function exportLinks(request $request)
|
|
|
|
{
|
|
|
|
$userId = Auth::id();
|
|
|
|
$user = User::find($userId);
|
|
|
|
$links = Link::where('user_id', $userId)->get();
|
|
|
|
|
|
|
|
if (!$user) {
|
|
|
|
// handle the case where the user is null
|
|
|
|
return response()->json(['message' => 'User not found'], 404);
|
|
|
|
}
|
|
|
|
|
|
|
|
$userData['links'] = $links->toArray();
|
|
|
|
|
2023-03-08 18:01:23 +01:00
|
|
|
$domain = $_SERVER['HTTP_HOST'];
|
|
|
|
$date = date('Y-m-d_H-i-s');
|
|
|
|
$fileName = "links-$domain-$date.json";
|
2023-03-08 17:20:39 +01:00
|
|
|
$headers = [
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'Content-Disposition' => 'attachment; filename="'.$fileName.'"',
|
|
|
|
];
|
|
|
|
return response()->json($userData, 200, $headers);
|
|
|
|
|
|
|
|
return back();
|
|
|
|
}
|
|
|
|
|
|
|
|
//Export all user data
|
2023-03-09 00:59:52 +01:00
|
|
|
public function exportAll(Request $request)
|
2023-03-08 17:20:39 +01:00
|
|
|
{
|
|
|
|
$userId = Auth::id();
|
|
|
|
$user = User::find($userId);
|
|
|
|
$links = Link::where('user_id', $userId)->get();
|
2023-03-09 00:59:52 +01:00
|
|
|
|
2023-03-08 17:20:39 +01:00
|
|
|
if (!$user) {
|
|
|
|
// handle the case where the user is null
|
|
|
|
return response()->json(['message' => 'User not found'], 404);
|
|
|
|
}
|
2023-03-09 00:59:52 +01:00
|
|
|
|
2023-03-08 17:20:39 +01:00
|
|
|
$userData = $user->toArray();
|
|
|
|
$userData['links'] = $links->toArray();
|
2023-03-09 00:59:52 +01:00
|
|
|
|
|
|
|
function findAvatar($name){
|
|
|
|
$directory = base_path('/img');
|
|
|
|
$files = scandir($directory);
|
|
|
|
$pathinfo = "error.error";
|
|
|
|
foreach($files as $file) {
|
|
|
|
if (strpos($file, $name.'.') !== false) {
|
|
|
|
$pathinfo = "/img/" . $name. "." . pathinfo($file, PATHINFO_EXTENSION);
|
|
|
|
}}
|
|
|
|
return $pathinfo;
|
|
|
|
}
|
2023-03-08 17:20:39 +01:00
|
|
|
|
2023-03-09 00:59:52 +01:00
|
|
|
if (file_exists(base_path(findAvatar($userId)))){
|
|
|
|
$imagePath = base_path(findAvatar($userId));
|
|
|
|
$imageData = base64_encode(file_get_contents($imagePath));
|
|
|
|
$userData['image_data'] = $imageData;
|
|
|
|
|
|
|
|
$imageExtension = pathinfo($imagePath, PATHINFO_EXTENSION);
|
|
|
|
$userData['image_extension'] = $imageExtension;
|
|
|
|
}
|
|
|
|
|
2023-03-08 18:01:23 +01:00
|
|
|
$domain = $_SERVER['HTTP_HOST'];
|
|
|
|
$date = date('Y-m-d_H-i-s');
|
|
|
|
$fileName = "user_data-$domain-$date.json";
|
2023-03-08 17:20:39 +01:00
|
|
|
$headers = [
|
|
|
|
'Content-Type' => 'application/json',
|
|
|
|
'Content-Disposition' => 'attachment; filename="'.$fileName.'"',
|
|
|
|
];
|
|
|
|
return response()->json($userData, 200, $headers);
|
2023-03-09 00:59:52 +01:00
|
|
|
|
2023-03-08 17:20:39 +01:00
|
|
|
return back();
|
2023-03-09 00:59:52 +01:00
|
|
|
}
|
2023-03-08 17:20:39 +01:00
|
|
|
|
2023-03-09 00:59:52 +01:00
|
|
|
public function importData(Request $request)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
// Get the JSON data from the uploaded file
|
|
|
|
if (!$request->hasFile('import') || !$request->file('import')->isValid()) {
|
|
|
|
throw new \Exception('File not uploaded or is faulty');
|
|
|
|
}
|
|
|
|
$file = $request->file('import');
|
|
|
|
$jsonString = $file->get();
|
|
|
|
$userData = json_decode($jsonString, true);
|
|
|
|
|
|
|
|
// Update the authenticated user's profile data if defined in the JSON file
|
|
|
|
$user = auth()->user();
|
|
|
|
if (isset($userData['name'])) {
|
|
|
|
$user->name = $userData['name'];
|
|
|
|
}
|
|
|
|
if (isset($userData['littlelink_name'])) {
|
|
|
|
$user->littlelink_name = $userData['littlelink_name'];
|
|
|
|
}
|
|
|
|
if (isset($userData['littlelink_description'])) {
|
|
|
|
$user->littlelink_description = $userData['littlelink_description'];
|
|
|
|
}
|
|
|
|
if (isset($userData['image_data'])) {
|
|
|
|
// Decode the image data from Base64
|
|
|
|
$imageData = base64_decode($userData['image_data']);
|
|
|
|
|
|
|
|
// Save the image to the correct path with the correct file name and extension
|
|
|
|
$filename = $user->id . '.' . $userData['image_extension'];
|
|
|
|
file_put_contents(base_path('img/' . $filename), $imageData);
|
|
|
|
|
|
|
|
// Update the user's image field with the correct file name
|
|
|
|
$user->image = $filename;
|
|
|
|
}
|
|
|
|
$user->save();
|
|
|
|
|
|
|
|
// Delete all links for the authenticated user
|
|
|
|
Link::where('user_id', $user->id)->delete();
|
|
|
|
|
|
|
|
// Loop through each link in $userData and create a new link for the user
|
|
|
|
foreach ($userData['links'] as $linkData) {
|
|
|
|
$newLink = new Link();
|
|
|
|
|
|
|
|
// Copy over the link data from $linkData to $newLink
|
|
|
|
$newLink->button_id = $linkData['button_id'];
|
|
|
|
$newLink->link = $linkData['link'];
|
|
|
|
$newLink->title = $linkData['title'];
|
|
|
|
$newLink->order = $linkData['order'];
|
|
|
|
$newLink->click_number = $linkData['click_number'];
|
|
|
|
$newLink->up_link = $linkData['up_link'];
|
|
|
|
$newLink->custom_css = $linkData['custom_css'];
|
|
|
|
$newLink->custom_icon = $linkData['custom_icon'];
|
|
|
|
|
|
|
|
// Set the user ID to the current user's ID
|
|
|
|
$newLink->user_id = $user->id;
|
|
|
|
|
|
|
|
// Save the new link to the database
|
|
|
|
$newLink->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect('studio/profile')->with('success', 'Profile updated successfully!');
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
return redirect('studio/profile')->with('error', 'An error occurred while updating your profile.');
|
2023-03-08 17:20:39 +01:00
|
|
|
}
|
|
|
|
}
|
2023-03-09 00:59:52 +01:00
|
|
|
|
2023-03-08 17:20:39 +01:00
|
|
|
|
2022-12-05 20:02:23 +01:00
|
|
|
//Edit/save page icons
|
|
|
|
public function editIcons(request $request)
|
|
|
|
{
|
|
|
|
|
|
|
|
function searchIcon($icon)
|
|
|
|
{
|
|
|
|
$iconId = DB::table('links')
|
|
|
|
->where('user_id', Auth::id())
|
|
|
|
->where('title', $icon)
|
|
|
|
->where('button_id', 94)
|
|
|
|
->value('id');
|
|
|
|
|
|
|
|
if (is_null($iconId)){
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return $iconId;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function addIcon($icon, $link){
|
2022-12-05 22:58:06 +01:00
|
|
|
$userId = Auth::user()->id;
|
2022-12-05 20:02:23 +01:00
|
|
|
$links = new Link;
|
|
|
|
$links->link = $link;
|
2022-12-05 22:58:06 +01:00
|
|
|
$links->user_id = $userId;
|
2022-12-05 20:02:23 +01:00
|
|
|
$links->title = $icon;
|
2022-12-05 22:58:06 +01:00
|
|
|
$links->button_id = '94';
|
|
|
|
$links->save();
|
|
|
|
$links->order = ($links->id - 1);
|
2022-12-05 20:02:23 +01:00
|
|
|
$links->save();
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateIcon($icon, $link){
|
|
|
|
Link::where('id', searchIcon($icon))->update([
|
|
|
|
'button_id' => 94,
|
|
|
|
'link' => $link,
|
|
|
|
'title' => $icon
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function saveIcon($icon, $link){
|
|
|
|
if(isset($link)){
|
|
|
|
if(searchIcon($icon) != NULL){
|
|
|
|
updateIcon($icon, $link);
|
|
|
|
}else{
|
|
|
|
addIcon($icon, $link);}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
saveIcon('mastodon', $request->mastodon);
|
|
|
|
|
|
|
|
saveIcon('instagram', $request->instagram);
|
|
|
|
|
|
|
|
saveIcon('twitter', $request->twitter);
|
|
|
|
|
2023-01-11 21:59:06 +01:00
|
|
|
saveIcon('facebook', $request->facebook);
|
|
|
|
|
2022-12-05 20:02:23 +01:00
|
|
|
saveIcon('github', $request->github);
|
|
|
|
|
|
|
|
saveIcon('linkedin', $request->linkedin);
|
|
|
|
|
2022-12-05 21:22:06 +01:00
|
|
|
saveIcon('tiktok', $request->tiktok);
|
|
|
|
|
|
|
|
saveIcon('discord', $request->discord);
|
|
|
|
|
|
|
|
saveIcon('youtube', $request->youtube);
|
|
|
|
|
|
|
|
saveIcon('snapchat', $request->snapchat);
|
|
|
|
|
|
|
|
saveIcon('reddit', $request->reddit);
|
|
|
|
|
|
|
|
saveIcon('pinterest', $request->pinterest);
|
|
|
|
|
|
|
|
saveIcon('telegram', $request->telegram);
|
|
|
|
|
|
|
|
saveIcon('whatsapp', $request->whatsapp);
|
|
|
|
|
2023-02-09 20:32:19 +01:00
|
|
|
saveIcon('twitch', $request->twitch);
|
2023-02-09 20:30:23 +01:00
|
|
|
|
2022-12-05 20:02:23 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return Redirect('studio/links#icons');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-02-16 14:25:37 +01:00
|
|
|
}
|