Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

path do json não encontrado #38

Open
diowmac opened this issue Sep 11, 2024 · 2 comments
Open

path do json não encontrado #38

diowmac opened this issue Sep 11, 2024 · 2 comments

Comments

@diowmac
Copy link

diowmac commented Sep 11, 2024

fiz a compilação da api para cgi linux quando bato a rota da o erro da imagem a baixo. não achei um metodo que trocasse o pathjson
meu swagger esta assim
Swagger
.BasePath('Fiscal.cgi/api/v1')
Capturar

@diowmac
Copy link
Author

diowmac commented Sep 11, 2024

encontrei a solução fazendo a seguinte alteração no Horse.GBSWagger
var
LPathJSON: string;
LBasePath: string;
begin
if HTMLSwagger.IsEmpty then
begin
LBasePath := EmptyStr;
LPathJSON := JSONPath;

if not LPathJSON.StartsWith('/') then
  LPathJSON := '/' + LPathJSON;

{$IF Defined(HORSE_ISAPI) or Defined(HORSE_APACHE)}
// Compatibilidade com ISAPI e Apache
LBasePath := '/' + Swagger.Config.ModuleName;
{$ELSEIF Defined(HORSE_CGI)}
// Adicionando compatibilidade com CGI
LBasePath := '/cgi-bin/Fiscal.cgi/'+Swagger.Config.ModuleName; // Supondo que tenha uma configuração para o caminho base do CGI
{$ENDIF}

LPathJSON := LBasePath + LPathJSON;
HTMLSwagger := SwaggerDocument(LPathJSON);

end;

AResponse.ContentType(Swagger.Config.HTMLContentType)
.Send(HTMLSwagger);
end;

porem precisamos criar uma parametro que receba esse valor da interface estou estudando os fontes para implementar.

@diowmac
Copy link
Author

diowmac commented Sep 11, 2024

pessoa fiz a alterção na interface agora so chamar assim
Swagger
.BasePath('api/v1/')
.Config.PathCGI('/cgi-bin/Fiscal.cgi/')

o codigo todo ficou assim 
var

LPathJSON: string;
LBasePath: string;
begin
if HTMLSwagger.IsEmpty then
begin
LBasePath := EmptyStr;
LPathJSON := JSONPath;

if not LPathJSON.StartsWith('/') then
  LPathJSON := '/' + LPathJSON;

{$IF Defined(HORSE_ISAPI) or Defined(HORSE_APACHE)}
// Compatibilidade com ISAPI e Apache
LBasePath := '/' + Swagger.Config.ModuleName;
{$ELSEIF Defined(HORSE_CGI)}
// Adicionando compatibilidade com CGI
LBasePath :=  Swagger.Config.PathCGI+Swagger.Config.ModuleName; // Supondo que tenha uma configuração para o caminho base do CGI
{$ENDIF}

LPathJSON := LBasePath + LPathJSON;
HTMLSwagger := SwaggerDocument(LPathJSON);

end;

AResponse.ContentType(Swagger.Config.HTMLContentType)
.Send(HTMLSwagger);
end;

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant