Socket
Book a DemoInstallSign in
Socket

seetemap-client

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seetemap-client

bundlerRubygems
Version
0.0.16
Version published
Maintainers
1
Created
Source

How to use

  • Add the gem 'seetemap-client' line to your Gemfile
  • bundle install
  • Create a config/seetemap.yml file

Sinatra

  • In application file add require 'seetemap\_client'
  • For sinatra, use middleware in rackup file (config.ru), like this: use SeetemapClient::Application

Rails

  • In application.rb add config.middleware.use "SeetemapClient::Application"

API

The application provides some entries points for the seetemap.com website and the /sitemap.xml for search engines.

GET '/sitemap(.xml)'

When there is a hit on the server at this URL, we ask seetemap.com for informations about the last audits.

  • If seetemap.com does not respond with a code 200, then the response will be this code.
  • If there is no audit for the website, the response will be 204.
  • If there is no previous cached file, cache and serve a copy of the last sitemap found on seetemap.com.
  • If the cached copy is locally fresh (see the keep_delay configuration variable), serve it.
  • If the cached copy have been fetched after the last audit, serve and touch it.
  • Otherwise cache and serve a copy of the last sitemap found on seetemap.com.

With the version 0.0.13 (see /seetemap/ping), the step 4 and 5 will be the most used.

Parameters:

  • add force_reload option to ignore the caching and fetch the last audit available from seetemap.com.

GET '/seetemap/'

This is the namespace for any other API calls.

GET '/seetemap/version'

Return 200 with the Content-type header set to application/json.

The response contains an single object containing one property: version and it is a string.

{'version':'0.0.13'}

GET '/seetemap/purge'

Return 200 with an empty body. When this request is received, the cached-copy of the sitemap is removed on the client side.

GET '/seetemap/ping'

It tells the client that seetemap.com have a new audit ready for being fetched. The client purge its cached copy and ask immediatly for another one.

Parameters:

  • the fwd_google option is added to the request if the user selected the associated option in the website administration, the option ping Google Webmaster Tools.

Appendix

The config/seetemap.yml config file

development:
  mount_point: "http://url.of.your.website.com"
  auth_token: "account token"
  site_token: "api_key"
  keep_delay: 3600

FAQs

Package last updated on 15 Jan 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts