-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Criação das classes BrandController, BrandDAO e ImagemDAO [Issue #788]
- Loading branch information
1 parent
3411bcd
commit 24ad0a5
Showing
3 changed files
with
89 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,33 @@ | ||
<?php | ||
require_once '../dao/ConexaoDAO.php'; | ||
require_once '../dao/BrandDAO.php'; | ||
require_once '../model/Brand.php'; | ||
|
||
class BrandController{ | ||
|
||
} | ||
class BrandController | ||
{ | ||
|
||
private $pdo; | ||
|
||
public function __construct() | ||
{ | ||
try { | ||
$this->pdo = ConexaoDAO::conectar(); | ||
} catch (PDOException $e) { | ||
//implementar tratamento de erro | ||
exit(); | ||
} | ||
} | ||
|
||
public function getBrand(): ?Brand | ||
{ | ||
try { | ||
$brandDao = new BrandDAO($this->pdo); | ||
$brand = $brandDao->getBrand(); | ||
|
||
return $brand; | ||
} catch (PDOException $e) { | ||
//implementar tratamento de erro | ||
exit("erro: {$e->getMessage()}"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
<?php | ||
require_once '../dao/ImagemDAO.php'; | ||
|
||
class BrandDAO{ | ||
private $pdo; | ||
|
||
public function __construct(PDO $pdo) | ||
{ | ||
$this->pdo = $pdo; | ||
} | ||
|
||
public function getBrand(){ | ||
$sql = "SELECT paragrafo FROM selecao_paragrafo WHERE nome_campo = 'ContribuiçãoMSG'"; | ||
$resultado = $this->pdo->query($sql); | ||
|
||
if($resultado->rowCount() < 1){ | ||
return null; | ||
} | ||
|
||
$mensagem = $resultado->fetch(PDO::FETCH_ASSOC)['paragrafo']; | ||
|
||
$imagemDao = new ImagemDAO($this->pdo); | ||
$imagem = $imagemDao->getImagem(); | ||
|
||
if(is_null($imagem)){ | ||
return null; | ||
} | ||
|
||
$brand = new Brand($imagem, $mensagem); | ||
return $brand; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
require_once '../model/Imagem.php'; | ||
|
||
class ImagemDAO{ | ||
private $pdo; | ||
|
||
public function __construct(PDO $pdo) | ||
{ | ||
$this->pdo = $pdo; | ||
} | ||
|
||
public function getImagem(){ | ||
$sql = "SELECT imagem.imagem, imagem.tipo FROM imagem, campo_imagem, tabela_imagem_campo WHERE campo_imagem.id_campo=tabela_imagem_campo.id_campo AND imagem.id_imagem=tabela_imagem_campo.id_imagem AND campo_imagem.nome_campo='Logo'"; | ||
|
||
$resultado = $this->pdo->query($sql); | ||
|
||
if($resultado->rowCount() < 1){ | ||
return null; | ||
} | ||
|
||
$imagemData = $resultado->fetch(PDO::FETCH_ASSOC); | ||
|
||
$imagem = new Imagem($imagemData['imagem'], $imagemData['tipo']); | ||
return $imagem; | ||
} | ||
} |