mirror of
https://github.com/v2board/v2board.git
synced 2024-11-10 17:49:11 +08:00
71 lines
2.9 KiB
PHP
71 lines
2.9 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\User;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\User;
|
|
use App\Services\UserService;
|
|
use App\Utils\Helper;
|
|
use Illuminate\Http\Request;
|
|
use App\Models\Knowledge;
|
|
|
|
class KnowledgeController extends Controller
|
|
{
|
|
public function fetch(Request $request)
|
|
{
|
|
if ($request->input('id')) {
|
|
$knowledge = Knowledge::where('id', $request->input('id'))
|
|
->where('show', 1)
|
|
->first()
|
|
->toArray();
|
|
if (!$knowledge) abort(500, __('Article does not exist'));
|
|
$user = User::find($request->session()->get('id'));
|
|
$userService = new UserService();
|
|
if ($userService->isAvailable($user)) {
|
|
$appleId = config('v2board.apple_id');
|
|
$appleIdPassword = config('v2board.apple_id_password');
|
|
} else {
|
|
$appleId = __('No active subscription. Unable to use our provided Apple ID');
|
|
$appleIdPassword = __('No active subscription. Unable to use our provided Apple ID');
|
|
$this->formatAccessData($knowledge['body']);
|
|
}
|
|
$subscribeUrl = Helper::getSubscribeUrl("/api/v1/client/subscribe?token={$user['token']}");
|
|
$knowledge['body'] = str_replace('{{siteName}}', config('v2board.app_name', 'V2Board'), $knowledge['body']);
|
|
$knowledge['body'] = str_replace('{{subscribeUrl}}', $subscribeUrl, $knowledge['body']);
|
|
$knowledge['body'] = str_replace('{{urlEncodeSubscribeUrl}}', urlencode($subscribeUrl), $knowledge['body']);
|
|
$knowledge['body'] = str_replace(
|
|
'{{safeBase64SubscribeUrl}}',
|
|
str_replace(
|
|
array('+', '/', '='),
|
|
array('-', '_', ''),
|
|
base64_encode($subscribeUrl)
|
|
),
|
|
$knowledge['body']
|
|
);
|
|
return response([
|
|
'data' => $knowledge
|
|
]);
|
|
}
|
|
$knowledges = Knowledge::select(['id', 'category', 'title', 'updated_at'])
|
|
->where('language', $request->input('language'))
|
|
->where('show', 1)
|
|
->orderBy('sort', 'ASC')
|
|
->get()
|
|
->groupBy('category');
|
|
return response([
|
|
'data' => $knowledges
|
|
]);
|
|
}
|
|
|
|
private function formatAccessData(&$body)
|
|
{
|
|
function getBetween($input, $start, $end){$substr = substr($input, strlen($start)+strpos($input, $start),(strlen($input) - strpos($input, $end))*(-1));return $start . $substr . $end;}
|
|
while (strpos($body, '<!--access start-->') !== false) {
|
|
$accessData = getBetween($body, '<!--access start-->', '<!--access end-->');
|
|
if ($accessData) {
|
|
$body = str_replace($accessData, '<div class="v2board-no-access">'. __('You must have a valid subscription to view content in this area') .'</div>', $body);
|
|
}
|
|
}
|
|
}
|
|
}
|