Objetivo.SOME.SGA.Cliente 3.4.0

dotnet add package Objetivo.SOME.SGA.Cliente --version 3.4.0
NuGet\Install-Package Objetivo.SOME.SGA.Cliente -Version 3.4.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Objetivo.SOME.SGA.Cliente" Version="3.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Objetivo.SOME.SGA.Cliente --version 3.4.0
#r "nuget: Objetivo.SOME.SGA.Cliente, 3.4.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Objetivo.SOME.SGA.Cliente as a Cake Addin
#addin nuget:?package=Objetivo.SOME.SGA.Cliente&version=3.4.0

// Install Objetivo.SOME.SGA.Cliente as a Cake Tool
#tool nuget:?package=Objetivo.SOME.SGA.Cliente&version=3.4.0

Objetivo SOME - Cliente SGA (Sistema de Gestão Acadêmica)

Pacote para facilitar o uso da API para acessar dados e arquivos, referentes aos dados de acordo com seu nível de acesso.

Último release

Release 3.4.0 (2022-11-11)

Features
  • Tratando entrada de dados de configuração.
  • Incluindo serviço para obter os dados da API.
  • Incluindo parâmetros de origem e data de expiração para a geração do token.
  • Atualizando projeto de teste para .net 5.0.
  • Complementando a documentação.

Configuração

Para pode usar os recursos do pacote, são necessárias 3 (três) configurações:

  • URL: (OBRIGATÓRIO) Informar a URL da API que irá ser carregada.
  • Chave Pública: (OBRIGATÓRIO) Informar a chave pública de acesso a API.
  • Autorização: (OBRIGATÓRIO) Informar a autorização de acesso a API que vai influênciar os recursos que você terá acesso.

É um Singleton, então só precisa ser atribuído um única vez dependendo da sua aplicação:

Objetivo.SOME.SGA.Cliente.Config.Url = "https://api.site.com.br/pasta/";
Objetivo.SOME.SGA.Cliente.Config.ChavePublica = "160MYEAto65UhwwrJsTtCBgVpwpj499CML4rK7y1bFpZLMudMk";
Objetivo.SOME.SGA.Cliente.Config.Autorizacao = "73oo41d94iPEQmeyScA5ApnthwH77b88pidsvxsHOKpMEtZGpz";

Chamando API

Um exemplo de teste de obter os dados da API.

using Xunit;
using System.Threading.Tasks;
using Objetivo.SOME.SGA.Cliente.Servicos;
using Objetivo.SOME.SGA.Cliente.ObjetosDeValor;

namespace Seu.Projeto.Csharp.Teste
{
    public class SobreServTeste
    {
        [Fact]
        public async Task Obter()
        {
            SobreServ serv = new();
            Sobre dados = await serv.ObterAsync();

            Assert.True(serv.EhValido());
            Assert.NotNull(dados);
        }
    }
}

Algumas chamadas precisam de parâmetros, e neste caso, há classes para mandar esses valores. Nesse exemplo, vou usar o serviço de filtro de séries.

using Xunit;
using System.Linq;
using System.Threading.Tasks;
using System.Collections.Generic;
using Objetivo.SOME.SGA.Cliente.Servicos;
using Objetivo.SOME.SGA.Cliente.Entidades;
using Objetivo.SOME.SGA.Cliente.Comandos.SerieCmds;

namespace Seu.Projeto.Csharp.Teste
{
    public class SerieServTeste
    {
        [Fact]
        public async Task Filtrar_serie_valido()
        {
            SerieServ serv = new();
            FiltrarCmd cmd = new()
            {
                Maximo = 1,
                Pagina = 1
            };
            Serie[] dados = await serv.FiltrarAsync(cmd);
            
            Assert.True(dados.Any());
            Assert.True(serv.EhValido());
        }

        [Fact]
        public async Task Filtrar_serie_invalido()
        {
            SerieServ serv = new();
            FiltrarCmd cmd = new()
            {
                Series = new List<string>() { "-1" },
                Maximo = 1,
                Pagina = 1
            };

            Serie[] dados = await serv.FiltrarAsync(cmd);
            Assert.False(dados.Any());
            Assert.False(serv.EhValido());
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.4.0 331 11/11/2022
3.3.0 347 9/21/2021
3.2.0 282 6/18/2021
3.0.0 411 4/27/2020
2.0.0 464 1/28/2020
1.0.0 439 1/14/2020