All Projects → matriphe → larinfo

matriphe / larinfo

Licence: MIT license
Display system information (IP address, OS, versions) for Laravel.

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to larinfo

rails
Official Rails Library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 16 (-50%)
Mutual labels:  ipinfo
go
Go library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 76 (+137.5%)
Mutual labels:  ipinfo
cli
Official Command Line Interface for the IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 1,279 (+3896.88%)
Mutual labels:  ipinfo
Z0172CK-Tools
Hacking Tools Z0172CK
Stars: ✭ 31 (-3.12%)
Mutual labels:  ipinfo
ipinfo
A wrapper around the ipinfo.io services
Stars: ✭ 51 (+59.38%)
Mutual labels:  ipinfo
ruby
Official Ruby client library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 42 (+31.25%)
Mutual labels:  ipinfo
osint-combiner
Combining OSINT sources in Elastic Stack
Stars: ✭ 77 (+140.63%)
Mutual labels:  ipinfo
laravel
Official Laravel client library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 80 (+150%)
Mutual labels:  ipinfo
django
Official Django Library for IPinfo API (IP geolocation and other types of IP data)
Stars: ✭ 36 (+12.5%)
Mutual labels:  ipinfo
termux-snippets
An integrated tool and a collection of snippets which helps in the various aspects of the terminal.
Stars: ✭ 28 (-12.5%)
Mutual labels:  ipinfo
android-sysinfo
No description or website provided.
Stars: ✭ 13 (-59.37%)
Mutual labels:  sysinfo
hi
host info for your shell
Stars: ✭ 13 (-59.37%)
Mutual labels:  sysinfo

Larinfo

Larinfo Total Download Latest Stable Version

Larinfo provide system information for Laravel.

It wraps Linfo to show IP address information on the server and client side, server software versions, and hardware information.

Requirements

  • PHP version: ^8.0.2.
  • Laravel version: ^9.0.

For Windows User

It is recommended to enable com_dotnet extension to get more accurate information.

In your php.ini file, add this line, and make sure you have php_com_dotnet.dll in your PHP ext directory.

extension=com_dotnet

Installation

To install using Composer, just run this command below.

composer require matriphe/larinfo

Older Version

  • Laravel 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, and 5.6, please use version 2.2 by running composer require matriphe/larinfo:2.2.
  • Laravel 5.7.*, 5.8.*, ^6.0, ^7.0, and ^8.0, please use version 3.0.0 by running composer require matriphe/larinfo:3.0.0.

Configuration

To publish the config (optional) run this command below.

php artisan vendor:publish

Then select the number that points to Matriphe\Larinfo\LarinfoServiceProvider provider.

The new config will be placed in config/larinfo.php.

Service Configuration

IP address information is taken using ipinfo.io service. If you've registered and has access token, put your token in the config/services.php inside the ipinfo variable.

'ipinfo' => [
    'token'  => 'your_ipinfo_token',
]

If you don't want to hit ipinfo.io rate limit, it is recommended to cache it using Laravel built-in cache.

Usage

To get all info, use facade Larinfo and call the getInfo() method. It will return this array example.

use Larinfo;

$larinfo = Larinfo::getInfo();

The result of that command is shown below.

$larinfo = [
   'host'=> [
       'city'=> 'San Francisco',
       'country'=> 'US',
       'hostname'=> '',
       'ip'=> '104.20.8.94',
       'loc'=> '37.7697,-122.3933',
       'org'=> 'AS13335 Cloudflare, Inc.',
       'phone'=> '',
       'postal'=> '94107',
       'region'=> 'California',
       'timezone' => 'America/Los_Angeles',
   ],
   'client'=> [
       'city'=> 'Bekasi',
       'country'=> 'ID',
       'hostname'=> '',
       'ip'=> '180.252.202.108',
       'loc'=> '-6.2349,106.9896',
       'org'=> 'AS17974 PT Telekomunikasi Indonesia',
       'phone'=> '',
       'postal'=> '',
       'region'=> ''
   ],
   'server'=> [
       'software'=> [
           'os'=> 'MacOS',
           'distro'=> 'MacOS 10.15.7',
           'kernel'=> '19.6.0',
           'arc'=> 'x86_64',
           'webserver'=> 'nginx/1.19.8',
           'php'=> '8.0.3'
       ],
       'hardware'=> [
           'cpu'=> 'Intel® Core™ i5-3210M CPU @ 2.50GHz',
           'cpu_count'=> 4,
           'model'=> 'Apple device',
           'virtualization'=> '',
           'ram'=> [
               'total'=> 8589934592,
               'free'=> 8578883584,
               'human_total' => '8.0 GiB',
               'human_free' => '15.0 MiB',
           ],
           'swap'=> [
               'total'=> 2147483648,
               'free'=> 426246144,
               'human_total' => '2.0 GiB',
               'human_free' => '406.5 MiB',
           ],
           'disk'=> [
               'total'=> 2999590176768,
               'free'=> 1879852326912,
               'human_total' => '2.7 TiB',
               'human_free' => '1.7 TiB',
           ]
       ],
       'uptime'=> [
           'uptime'=> '2 days, 12 hours, 13 minutes, 43 seconds',
           'booted_at'=> '2021-04-02 15:27:54'
       ]
   ],
   'database'=> [
       'driver'=> 'MySQL',
       'version'=> '8.0.22'
   ]
];

Other method you can use are:

  • getHostIpinfo to get host IP info (Larinfo::getHostIpinfo())
  • getClientIpinfo to get client IP info (Larinfo::getClientIpinfo())
  • getServerInfoSoftware to get server software info (Larinfo::getServerInfoSoftware())
  • getServerInfoHardware to get server hardware info (Larinfo::getServerInfoHardware())
  • getUptime to get server uptime (Larinfo::getUptime())
  • getServerInfo to get server info (Larinfo::getServerInfo())
  • getDatabaseInfo to get database info (Larinfo::getDatabaseInfo())

Artisan Command

You also can check using larinfo artisan command, by running this command below.

php artisan larinfo

The example of the result is shown below.

Larinfo
=======

+--------------------+------------------------------------------+
| Application                                                   |
+--------------------+------------------------------------------+
| PHP version        | 8.0.3                                    |
| Laravel version    | 8.35.1                                   |
+--------------------+------------------------------------------+
| Database                                                      |
+--------------------+------------------------------------------+
| Engine             | MySQL                                    |
| Version            | 8.0.22                                   |
+--------------------+------------------------------------------+
| Operating System                                              |
+--------------------+------------------------------------------+
| Type               | MacOS                                    |
| Name               | MacOS 10.15.7                            |
| Architecture       | x86_64                                   |
| Kernel Version     | 19.6.0                                   |
+--------------------+------------------------------------------+
| Uptime                                                        |
+--------------------+------------------------------------------+
| Uptime             | 2 days, 12 hours, 13 minutes, 43 seconds |
| First Boot         | 2021-04-02 15:27:54                      |
+--------------------+------------------------------------------+
| Server                                                        |
+--------------------+------------------------------------------+
| IP Address         | 104.20.8.94                              |
| Private IP Address |                                          |
| Hostname           | mue-88-130-49-204.dsl.cloudflare.com     |
| Provider           | AS13335 Cloudflare, Inc.                 |
| City               | San Francisco                            |
| Region             | California                               |
| Country            | US                                       |
+--------------------+------------------------------------------+
| Timezone                                                      |
+--------------------+------------------------------------------+
| Application        | Asia/Jakarta                             |
| Server Location    | America/Los_Angeles                      |
+--------------------+------------------------------------------+
| Hardware                                                      |
+--------------------+------------------------------------------+
| Model              | Apple device                             |
| CPU count          | 4                                        |
| CPU                | Intel® Core™ i5-3210M CPU @ 2.50GHz      |
+--------------------+------------------------------------------+
| RAM                                                           |
+--------------------+------------------------------------------+
| Total              | 8.0 GiB                                  |
| Free               | 15.0 MiB                                 |
+--------------------+------------------------------------------+
| SWAP                                                          |
+--------------------+------------------------------------------+
| Total              | 2.0 GiB                                  |
| Free               | 406.5 MiB                                |
+--------------------+------------------------------------------+
| Disk Space                                                    |
+--------------------+------------------------------------------+
| Total              | 2.7 TiB                                  |
| Free               | 1.7 TiB                                  |
+--------------------+------------------------------------------+

License

Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].