Giter Site home page Giter Site logo

sky-uk / api-explorer Goto Github PK

View Code? Open in Web Editor NEW
45.0 45.0 7.0 18.97 MB

API Explorer is a live documentation client for Swagger/OpenAPI Specification

Home Page: http://sky-uk.github.io/api-explorer

License: BSD 3-Clause "New" or "Revised" License

JavaScript 100.00% CSS 0.01%
api documentation-tool interactive rest sky-pt swagger

api-explorer's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

api-explorer's Issues

Allow .configPlugins() to be optional

This method creates the APIExplorer.plugins prop. If we miss this .configPlugins() call the prop is undefined.

Set default value in APIExplorer constructor or elsewhere. ;-)

Improvements

  • Add default accepts to the Executer
  • Preserve the original query string in all the requests
  • Add color change according to the result of the request
  • Add request and response headers to the Try out view

Swagger Spec in the url

The idea is to load a diferent spec. We can use a url in the query string or a settings page to add new apis to the current app (of course this will not be persisted in any way)

In a first phase we could make only the query string aproach

Fetching a Swagger specification over HTTP is being blocked

Fetching resources, more specifically, swagger specifications over HTTP is causing an error related with Mixed Content rule. This rule states that websites over HTTPS should not request content over an insure protocol such as HTTP, due to the vulnerabilities that such act may led.

Sample error using Pet Store over HTTP:

Mixed Content: The page at 'https://apiexplorer-app.herokuapp.com/?swaggerSpec=http%3A%2F%2Fpetstore.sw…waggerLoader=swagger1API&swaggerUseProxy=true&swaggerLoader=Swagger2Loader' was loaded over HTTPS, but requested an insecure resource 'http://petstore.swagger.io/v2/swagger.json'. This request has been blocked; the content must be served over HTTPS.

Reproducing this error:

We should discuss what should be the behaviour of the UI when faced with such scenario.

For requests to spec's being server HTTP, I think the check "use proxy because of CORS" should be checked and grayed out. Since in this case we want always to bypass the validation in the server side, and also make sure the received content is in fact what we expect to receive, i.e, a proper swagger specification.

Remove support for url spec in querystring

When passing a swagger specification to the API Explorer the preceding request URI is malformed.

Reproducing this scenario:

  • browser: chrome
  • swagger spec: petstore
  • version: 2
  • use proxy: yes

Output URI

https://apiexplorer-app.herokuapp.com/?swaggerSpec=http%3A%2F%2Fpetstore.swagger.io%2Fv2%2Fswagger.json&swaggerLoader%5B%5D=swagger1API&swaggerLoader%5B%5D=Swagger2Loader&swaggerUseProxy%5B%5D=true&swaggerUseProxy%5B%5D=on

As we can see the swaggerSpec parameter contains the encoded URI bellow:

http%3A%2F%2Fpetstore.swagger.io%2Fv2%2Fswagger.json&swaggerLoader%5B%5D=swagger1API&swaggerLoader%5B%5D=Swagger2Loader&swaggerUseProxy%5B%5D=true&swaggerUseProxy%5B%5D=on

If we decode this URI we will get:

http://petstore.swagger.io/v2/swagger.json&swaggerLoader[]=swagger1API&swaggerLoader[]=Swagger2Loader&swaggerUseProxy[]=true&swaggerUseProxy[]=on

The parameters &swaggerUseProxy[]=on and swaggerLoader[]=swagger1API should not being sent, and also the construct above [URI][&param=value&param=value] is invalid according to the URI RFC specification querystring part is not being preceded by an question mark (?).

On the screenshot of the API Explorer README containing the use case GIF, we can see that this bug was already present by then:

screen shot 2015-12-11 at 21 06 27

Fix tests

Tests are failing because global APIExplorer requirement for plugin reducers.

Change APIExplore.config to APIExplorer.configApiSpec

This will better express the intent of this configuration element in the APIExplorer configuration API.

APIExplorer
  .config(c => {
    c.swagger2API('petstore', 'http://localhost:3000/samples/petstore.json', true)
  })

Create a more complex sample (multiple APIs, plugins, etc)

We should create a more complex sample in order to test other functionalities of API explorer.
Petshop should remain a very basic example (hello world style) and this new sample should be richer in features.

Some goals:

  • Multiple APIs
  • Samples for all plugin types
  • Several (advanced) configuration samples

A pre-requirement of this is to get hold of some swagger samples that align with our target license.

Change the register of samples to a more automatic way

The register of samples is very explicit because we are defining the paths of the where to read the samples from.

We should read the sample directories and, by convention, call the api.js file and register the endpoints of the samples.

recursive(__dirname + '/sampleapp', function (err, files) { var apiFiles = Enumerable.from(files).where(f => f.indexOf('api.js') > 1).toArray() for(i in apiFiles){ console.log(apiFiles[i]) var api = require(apiFiles[i]) api(app,basePath) } })

see server.js

Split the operations ui into components

The idea is to split the Try out, spec and Response Schema into different components, maintaining the current logic.

In the context of this issue we should also give support for the additions of new operations

We should be using import for fetching images inside Components

When using images in our components, we should call require to include those images. That will enable Webpack to export them as dependencies automatically, making the code cleaner.

So instead of this:

<img src='data:image/png;base64,iVBOR....' />

We will have something like this:

<img src={ import `${ASSETS_DIR}/my-image.png` />

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.