drupal|December 30, 2021|1 min read

Drupal DB Query Code to Fetch Active Users and Accessed Website Within last One Year

TL;DR

Use Drupal entityQuery with a condition on the access timestamp to find active users who visited within the last year, then export results to JSON.

Drupal DB Query Code to Fetch Active Users and Accessed Website Within last One Year

Introduction

Here, we will see the drupal code to fetch all the active users (not blocked) and who accessed the website within last year.

We will also convert the output to JSON and save the JSON in a file.

This can be useful if you want to fetch users who are inactive. You may want to send them an email to login, or you may want to disable their accounts due to inactivity.

Drupal DB Code


//1 year seconds
$seconds = 3600 * 24 * 365;
$newtime = time() - $seconds;

$baseFolder = 'your_folder/';

$query = \Drupal::entityQuery('user')
    ->condition('status', '1')
    ->condition('access', '0', '!=')
    ->condition('access', $newtime, '<=');
$uids = $query->execute();

foreach ($uids as $uid) {
  $filename = $baseFolder.$uid.'.json';

  $user = user_load($uid);
  $data = \Drupal::service('serializer')->serialize($user, 'json', ['plugin_id' => 'entity']);
  
  print('<br/>Writing to file: '.$filename);
  file_put_contents($filename, $data); 
}

If your users are a lot, you can use pagination.


//1 year seconds
$seconds = 3600 * 24 * 365;
$newtime = time() - $seconds;

$baseFolder = 'your_folder/';

$query = \Drupal::entityQuery('user')
    ->condition('status', '1')
    ->condition('access', '0', '!=')
    ->condition('access', $newtime, '<=')
    ->range(0, 100);
$uids = $query->execute();

foreach ($uids as $uid) {
  $filename = $baseFolder.$uid.'.json';

  $user = user_load($uid);
  $data = \Drupal::service('serializer')->serialize($user, 'json', ['plugin_id' => 'entity']);
  
  print('<br/>Writing to file: '.$filename);
  file_put_contents($filename, $data); 
}

Mysql Query to fetch All users who accessed website within last 1 year

select uid, name, status, from_unixtime(created), from_unixtime(changed), 
from_unixtime(access), from_unixtime(login) 
from users_field_data 
where status=1 and access!=0 
and access >= DATE_SUB(NOW(), INTERVAL 1 YEAR) 
limit 1000, 10;

Earlier, I wrote about the Drupal Code to Fetch Active Users

Related Posts

Drupal Mysql Query to Fetch User Field Details and its Alias

Drupal Mysql Query to Fetch User Field Details and its Alias

Introduction In this posr, we will see how to prepare mysql query to fetch user…

How to Fix Drupal Mysql error - Communication link failure: 1153 Got a packet bigger than 'max_allowed_packet' bytes

How to Fix Drupal Mysql error - Communication link failure: 1153 Got a packet bigger than 'max_allowed_packet' bytes

Introduction While this topic may applicable to all mysql/mariadb users who…

Drupal Code to run Database Query to Fetch Active User Details, Count, Pagination

Drupal Code to run Database Query to Fetch Active User Details, Count, Pagination

Introduction This post shows code to run database query to fetch active user…

Drupal 8 - How to Theme Form and its Fields with reordering fields

Drupal 8 - How to Theme Form and its Fields with reordering fields

Introduction In this post, we will see how to theme form and its fields…

Drupal 8 - How to create a Page with admin access and create its menu entry in Reports (No Coding)

Drupal 8 - How to create a Page with admin access and create its menu entry in Reports (No Coding)

Introduction I needed a report page, where I wanted to have some information…

Drupal 7 - Code for Exporting all your content nodes in json files

Drupal 7 - Code for Exporting all your content nodes in json files

Introduction When I migrated all of my drupal-7 website to drupal-8, I wrote…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…