2017 © Pedro Peláez
 

library swotphp

Identify email addresses or domains names that belong to colleges or universities.

image

mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

  • Friday, April 13, 2018
  • by mdwheele
  • Repository
  • 5 Watchers
  • 52 Stars
  • 5,508 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 9 Forks
  • 0 Open issues
  • 9 Versions
  • 37 % Grown

The README.md

Swot PHP :apple:

Build Status Latest Stable Version Total Downloads License, (*1)

This is a port of the popular Ruby Gem, "Swot". As such, please do NOT make data contributions to this repository. Contribute any new academic domain names to the Ruby version of this package at https://github.com/leereilly/swot. Please follow the contribution guidelines noted on Lee's repository., (*2)

I will be pulling changes to upstream domain data., (*3)

If you have a product or service and offer academic discounts, there's a good chance there's some manual component to the approval process. Perhaps .edu email addresses are automatically approved because, for the most part at least, they're associated with American post-secondary educational institutions. Perhaps .ac.uk email addresses are automatically approved because they're guaranteed to belong to British universities and colleges. Unfortunately, not every country has an education-specific TLD (Top Level Domain) and plenty of schools use .com or .net., (*4)

Swot is a community-driven or crowdsourced library for verifying that domain names and email addresses are tied to a legitimate university of college - more specifically, an academic institution providing higher education in tertiary, quaternary or any other kind of post-secondary education in any country in the world., (*5)

Installation

Install through Composer., (*6)

"require": {
    "mdwheele/swotphp": "dev-master"
}

Usage

The easiest way to get started with SwotPHP is to use a facade to access functionality. However, the base implementation is present as a plain ol' PHP object in case developers want control over the construction themselves. The implementation has an injected dependency on PHP Domain Parser, an implementation of a URL parser backed by the Public Suffix List., (*7)

Framework-specific facades / service providers may be added later. The native facade is a good example of how the object should be instantiated., (*8)

Native, (*9)

require_once('vendor/autoload.php');

use SwotPHP\Facades\Native\Swot;

Verify Email Addresses

Swot::isAcademic('lreilly@stanford.edu')           # true
Swot::isAcademic('lreilly@strath.ac.uk')           # true
Swot::isAcademic('lreilly@soft-eng.strath.ac.uk')  # true
Swot::isAcademic('pedro@ugr.es')                   # true
Swot::isAcademic('lee@uottawa.ca')                 # true
Swot::isAcademic('lee@leerilly.net')               # false

Verify Domain Names

Swot::isAcademic('harvard.edu')              # true
Swot::isAcademic('www.harvard.edu')          # true
Swot::isAcademic('http://www.harvard.edu')   # true
Swot::isAcademic('http://www.github.com')    # false
Swot::isAcademic('http://www.rangers.co.uk') # false

Find School Names

Swot::schoolName('lreilly@cs.strath.ac.uk') -> "University of Strathclyde"
Swot::schoolName('http://www.stanford.edu') -> "Stanford University"

Known Issues

  • Lack of automated data import from Ruby gem's domain list.
  • There are architectural issues with the package resultant from differences in PHP and Ruby-isms. When I get time, there are two areas I'd like to focus on:
    1. Consolidate some of how the internal API flows while maintaining public interface.
    2. Implement a different mode of accessing the public suffix registry. Currently, the package is possibly abusing an excellent URL parser and I'd like to investigate the possibility of a separate component dedicated to modeling the Public Suffix registry's ruleset and algorithms.

The Versions

13/04 2018

dev-master

9999999-dev https://github.com/mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

  Sources   Download

MIT

The Requires

 

url

02/08 2017

1.0.1

1.0.1.0 https://github.com/mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

  Sources   Download

MIT

The Requires

 

url

18/11 2015

1.0.0

1.0.0.0 https://github.com/mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

  Sources   Download

MIT

The Requires

 

url

16/07 2014

0.5.1

0.5.1.0 https://github.com/mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

  Sources   Download

MIT

The Requires

 

url

15/07 2014

0.5

0.5.0.0 https://github.com/mdwheele/swotphp

Identify email addresses or domains names that belong to colleges or universities.

  Sources   Download

MIT

The Requires

 

url

15/07 2014
15/07 2014
14/07 2014
14/07 2014