Thanks to visit codestin.com
Credit goes to github.com

Skip to content

jorgediaz-lr/oaw

 
 

Repository files navigation

OAW

Rastreador Observatorio de Accesibilidad Web

This repository contains 3 applications:

OAW (Observatorio de Accesibilidad Web)

The application code is distributed in several maven projects:

  • common: library with common functions
  • crawler: web crawler
  • intavcore: analyzer core code
  • oaw: "father" project to generate all the libraries and dependencies
  • portal: web project of the accessibility observatory

To compile the application, we will use maven (version 3.0.0 or higher). It will be necessary to download a number of dependencies from the central repositories so it needs to be properly frozen. It may be necessary to configure the proxy or a mirror:

To do this, inside the oaw directory we will execute the following command so that it builds us the complete project:

mvn clean install -P development -DskipTests

If everything goes well, a war will be generated in the portal/target folder which will be the one we should display this war in the webapps folder of the tomcat server.

Requirements

Currently OAW is deployment under this configuration:

This is a Maven projet that requieres version 3.0.0 or high

Quick Deployment (Linux & Docker)

You can deploy all application running deploy.sh script.

But first, you need the following requirements:

*Note: The quick Deployment was built with all of these specific versions. We do not guarantee that it will work with other versions. Especially lower versions.

Run this command in your terminal at the root path:

./deploy.sh

This script performs the following tasks:

  1. Set JAVA_HOME environment variable
  2. Generate Nginx certificates, if it doesn't already exist
  3. War generation
  4. Build and run docker containers

Instalation

You can find full documentacion (in Spanish) at https://administracionelectronica.gob.es/ctt/oaw/descargas in Rastreador OAW WCAG 2.1 section. At this moment, the last documentation avalaible can be downloaded here

MySQL Database

To fresh install execute the scripts locates in folder /portal/scripts from version 4.0.0 to higher version.

Tomcat

Create a context configuration like this in server.xml:

<Context path="/oaw" reloadable="true">
    <Resource auth="Container" driverClassName="com.mysql.jdbc.Driver" type="javax.sql.DataSource" name="jdbc/oaw" url="jdbc:mysql://<server>:<port>/<schema>"
    maxActive="100"  maxIdle="10"  maxWait="-1" validationQuery="SELECT 1 as dbcp_connection_test"
    removeAbandoned="true" testOnBorrow="true"
    timeBetweenEvictionRunsMillis="60000" testWhileIdle="true"                                         
    defaultTransactionIsolation="READ_UNCOMMITTED" username="<username>" password="<password>"/>
</Context>

Note to change url, port, user and password values. In folder profiles exists an example of this configuracion. Adapt to your environment.

Profiles

There are several parameters that are configurable by environment, as well as configuration files that depend on the environment. In the current project there are two default compilation profiles: development and integration.

In the oaw project's pom.xml is reflected the configuration for each profile, being possible to create new ones or take advantage of the existing ones. There are also profiles in the portal project folder.

It is necessary to review and adapt the configuration of the profiles if necessary.

External properties

In the file /portal/profiles//propertiesmanager.properties a series of properties files and their location are indicated. You should configure the files paths according to the information of this file.

  • context.xml: Database connection parameters
  • mail.properties: Mailing parameters
  • basic.service.properties: Parameters of the mail sent by the diagnostic service
  • check.descriptions.properties: Explanatory texts for problem solving included in the reports
  • check.patterns.properties: Regural expressions and validation patterns

Unsatisfied dependencies in Maven Central

Some of the links are not available in Maven's central repository. They can be downloaded at the following links:1

They need to be installed manually: https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html

Motor JS

Into folder motor-js contains this tool has 3 packages:

  • proxy: entrypoint of tool. Listen for petitions http/s.
  • nginx: recivies proxy petitions and handle http and https to renderer.
  • renderer: executes https://github.com/prerender/prerender ths listen to http/s requests, renderer the page and return result html

This project is configuring to execute as docker solution

WCAG EM Tool

Into folder wcagemtool is an customitation of https://github.com/w3c/wcag-em-report-tool that can export result in ODS custom format.

Templates

From version 5.6.0 new versions of templates are available that must be incorporated into the application.

These templates can be found in the following path -> /portal/scripts/5.6.0

  • hallazgos.odt -> Must be saved as "hallazgos" in the system
  • generica_accesible_v1.odt
  • segmentos_accesible_v1.odt
  • complejidades_accesible_v1.odt
  • evolucion_segmentos_accesible_v1.odt

About

Rastreador Observatorio de Accesibilidad Web

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 63.4%
  • JavaScript 28.9%
  • HTML 6.6%
  • CSS 1.1%
  • Less 0.0%
  • PHP 0.0%