BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
app
/
Http
/
Controllers
/
Api
📤 Upload
📝 New File
📁 New Folder
Close
Editing: EntityController.php
<?php namespace App\Http\Controllers\Api; use App\Domains\Entity\Models\Entity; use App\Http\Controllers\Controller; use App\Models\Token; use Illuminate\Http\Request; class EntityController extends Controller { /** * Get all entities * * @OA\Get( * path="/api/entity/list", * operationId="getAllEntities", * tags={"Entities"}, * summary="Get all entities", * description="Get all entities with their tokens.", * security={{ "bearerAuth": {} }}, * * @OA\Response( * response=200, * description="Successful operation", * * @OA\JsonContent( * type="object", * example=[ * { * "id": 1, * "key": "whisper-1", * "title": "The latest text to speech model, optimized for speed.", * "engine": "openai", * "created_at": "2024-06-13T14:17:40.000000Z", * "updated_at": "2024-11-19T15:12:04.000000Z", * "selected_title": "The latest text to speech model, optimized for speed.", * "is_selected": 0, * "status": "enabled", * "tokens": * { * "id": 1, * "type": "word", * "entity_id": 1, * "cost_per_token": "1.00", * "created_at": "2024-06-13T14:17:40.000000Z", * "updated_at": "2024-06-13T14:17:40.000000Z" * } * }, * ], * ), * ), * * @OA\Response( * response=401, * description="Unauthenticated", * ), * ) */ public function getAllEntities(Request $request) { $entities = Entity::all(); $tokens = Token::all(); foreach ($entities as $entity) { $entity->token_type = $entity->key->tokenType(); $entity->tokens = $tokens->where('entity_id', $entity->id)->first(); $entity->key_name = $entity->key->keyAsString(); $entity->key_value = $entity->key->valueAsString(); } return response()->json($entities); } }
Save
Cancel