internet_connection_checker_plus 1.0.1 copy "internet_connection_checker_plus: ^1.0.1" to clipboard
internet_connection_checker_plus: ^1.0.1 copied to clipboard

A pure Dart library that checks for internet by opening a socket to a list of specified addresses, each with individual port and timeout.

🌍 Internet Connection Checker Plus #

License: MIT

A Pure Dart Utility library that checks for an Active Internet connection by opening a socket to a list of specified addresses, each with individual port and timeout. Defaults are provided for convenience.

Note that this plugin is in beta and may still have a few issues. Feedback is welcome.

Table of contents #

Description #

Checks for an internet (data) connection, by opening a socket to a list of addresses.

The defaults of the plugin should be sufficient to reliably determine if the device is currently connected to the global network, e.i. has access to the Internet.

Note that you should not be using the current network status for deciding whether you can reliably make a network connection. Always guard your app code against timeouts and errors that might come from the network layer.

Quick start #

Add to Dependencies

internet_connection_checker_plus: ^1.0.1

Import the package

import 'package:internet_connection_checker_plus/internet_connection_checker_plus.dart';

InternetConnectionCheckerPlus() is actually a Singleton. Calling InternetConnectionCheckerPlus() is guaranteed to always return the same instance.

You can supply a new list to InternetConnectionCheckerPlus().addresses if you need to check different destinations, ports and timeouts. Also, each address can have its own port and timeout. See InternetAddressCheckOptions in the docs for more info.

First you need to [install it][install] (this is the preferred way)

Then you can start using the library:

bool result = await InternetConnectionCheckerPlus().hasConnection;
if(result == true) {
  print('YAY! Free cute dog pics!');
} else {
  print('No internet :( Reason:');
  print(InternetConnectionCheckerPlus().lastTryResults);
}

Purpose #

The reason this package exists is that connectivity_plus package cannot reliably determine if a data connection is actually available. More info on its page here: https://pub.dev/packages/connectivity_plus

More info on the issue in general:

You can use this package in combination with connectivity_plus in the following way:

var isDeviceConnected = false;

var subscription = Connectivity().onConnectivityChanged.listen((ConnectivityResult result) async {
  if(result != ConnectivityResult.none) {
    isDeviceConnected = await InternetConnectionCheckerPlus().hasConnection;
  }
});

Note: remember to properly cancel the subscription when it's no longer needed. See connectivity_plus package docs for more info.

How it works #

All addresses are pinged simultaneously. On successful result (socket connection to address/port succeeds) a true boolean is pushed to a list, on failure (usually on timeout, default 4 sec) a false boolean is pushed to the same list.

When all the requests complete with either success or failure, a check is made to see if the list contains at least one true boolean. If it does, then an external address is available, so we have data connection. If all the values in this list are false, then we have no connection to the outside world of cute cat and dog pictures, so hasConnection also returns false too.

This all happens at the same time for all addresses, so the maximum waiting time is the address with the highest specified timeout, in case it's unreachable.

I believe this is a reliable and fast method to check if a data connection is available to a device, but I may be wrong. I suggest you open an issue on the Github repository page if you have a better way of.

Defaults #

defaultAddresses

... includes the top 1 globally available free DNS over HTTPS resolver.

Address API
1.1.1.1 https://cloudflare-dns.com/dns-query
1.0.0.1 https://mozilla.cloudflare-dns.com/dns-query
static final List<AddressCheckOptions> _defaultAddresses = [
  AddressCheckOptions(
    Uri.parse('https://cloudflare-dns.com/dns-query').replace(
      queryParameters: dnsParameters,
    ),
    headers: dnsHeaders,
  ),
  AddressCheckOptions(
    Uri.parse('https://mozilla.cloudflare-dns.com/dns-query').replace(
      queryParameters: dnsParameters,
    ),
    headers: dnsHeaders,
  ),
];

defaultTimeout

... is 4 seconds.

static const Duration defaultTimeout = Duration(seconds: 4);

defaultInterval

... is 5 seconds. Interval is the time between automatic checks. Automatic checks start if there's a listener attached to onStatusChange, thus remember to cancel unneeded subscriptions.

checkInterval (which controls how often a check is made) defaults to this value. You can change it if you need to perform checks more often or otherwise.

static const Duration defaultInterval = const Duration(seconds: 5);
...
Duration checkInterval = defaultInterval;

Usage #

The InternetConnectionCheckerPlus can be used as a singleton or can be instantiated with custom values.

Singleton example #

import 'package:internet_connection_checker/internet_connection_checker.dart';

main() async {
  // Simple check to see if we have internet
  print("The statement 'this machine is connected to the Internet' is: ");
  print(await InternetConnectionCheckerPlus().hasConnection);
  // returns a bool

  // We can also get an enum value instead of a bool
  print("Current status: ${await InternetConnectionCheckerPlus().connectionStatus}");
  // prints either InternetConnectionStatus.connected
  // or InternetConnectionStatus.disconnected

  // actively listen for status updates
  // this will cause InternetConnectionCheckerPlus to check periodically
  // with the interval specified in InternetConnectionCheckerPlus().checkInterval
  // until listener.cancel() is called
  var listener = InternetConnectionCheckerPlus().onStatusChange.listen((status) {
    switch (status) {
      case InternetConnectionStatus.connected:
        print('Data connection is available.');
        break;
      case InternetConnectionStatus.disconnected:
        print('You are disconnected from the internet.');
        break;
    }
  });

  // close listener after 30 seconds, so the program doesn't run forever
  await Future.delayed(Duration(seconds: 30));
  await listener.cancel();
}

Note: Remember to dispose of any listeners, when they're not needed to prevent memory leaks, e.g. in a StatefulWidget's dispose() method:

...
@override
void dispose() {
  listener.cancel();
  super.dispose();
}
...

See example folder for more examples.

Create instance example #

import 'package:internet_connection_checker/internet_connection_checker.dart';

main() async {
  final customInstance = InternetConnectionCheckerPlus.createInstance(
    checkTimeout: const Duration(seconds: 1), // Custom check timeout
    checkInterval: const Duration(seconds: 1), // Custom check interval
    addresses: [
      ... // Custom addresses
    ],
  );

  // Register it with any dependency injection framework. For example GetIt.
  GetIt.registerSingleton<InternetConnectionCheckerPlus>(
    customInstance,
  );
}

Note: Remember to dispose of any listeners, when they're not needed to prevent memory leaks, e.g. in a StatefulWidget's dispose() method:

...
@override
void dispose() {
  listener.cancel();
  super.dispose();
}
...

See example folder for more examples.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

162
likes
120
pub points
98%
popularity

Publisher

verified publisheroutdatedguy.rocks

A pure Dart library that checks for internet by opening a socket to a list of specified addresses, each with individual port and timeout.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter, http

More

Packages that depend on internet_connection_checker_plus