(This article is a work in progress. Keeping it here for now as reference)
This was done using Flutter version 3.27. But will probably work fine with little adjustments in later versions. I’m focusing on Android, but many steps apply for iOS too. I will update the article in the future to cover more platforms.
Add the google services and firebase plugins to Android.
For this you can’t really follow the instructions on Firebase. The documentation for doing Android level stuff in Flutter is sometimes a bit off (even in Flutters own docs).
So if you’re following the guide on Firebase, you’ll probably be looking for the plugins section in your build.gradle. It’s not there… It’s in settings.gradle
Add google services plugin to android/settings.gradle
// android/settings.gradleplugins {... id 'com.google.gms.google-services' version '4.4.2' apply false id "com.google.firebase.crashlytics" version "2.8.1" apply false}
Kotlin
Add plugins to android/app/build.gradle
// android/app/build.gradleplugins {... id 'com.google.gms.google-services' id 'com.google.firebase.crashlytics'}
Go to the Firebase console and check for Crashlytics. If it doesn’t show up directly in the left menu, you can go to All Products and scroll down. Under Run, almost at the bottom, you’ll find Crashlytics. Klick it and it will shopw up in the left menu and stay there.
Formatting Time in Flutter/Dart: A Simple Helper Class
When working on Flutter projects, you might need to format durations into readable time strings. This could be for timers, media players, or activity trackers. To make this task a bit easier, here’s a lightweight helper class, TimeStringHelper, that handles common formatting needs.
What TimeStringHelper Does
Converts milliseconds into readable time strings.
Formats durations into HH:mm:ss or mm:ss formats.
Provides methods to extract minutes and seconds from a total duration in seconds.
minutesFromTotalSeconds This one returns an int. It’s useful if you want to create a duration time picker and need to set it to an initial value. So in my case I have a duration in total seconds and I want to get the minute wheel value from it.
This is my duration picker, where the user can pick a duration in minutes and seconds. I set the initial values using the two last functions.
Why Use This?
This class keeps time formatting simple and reusable. It’s not overly complex, but it can save time when working with durations in different parts of your app.
I needed to make an Eloquent query that could take search terms. The search terms are optional – no search term and the whole dataset is returned. In our particular data model the Users have one or many Associations.
So the search term should check for user name, phone, email and association name. In the sub queries you simply foreach through the search terms and check if there is a match in any column.
After the when-clause you can add any where-clauses that applies to every query, no matter the result of the search. In this case we only wanted users that are admins.
$search=$request->get('search');$searchTerms=null;// Split search string at spaces if there is oneif($search){$searchTerms=explode('',$search);}$users=User::orderBy($'created_at','DESC')->with('associations')->when($searchTerms,function($q)use($searchTerms){foreach($searchTermsas$searchTerm){$q->orWhereHas('associations',function($qa)use($searchTerm){$qa->where('name','LIKE',"%{$searchTerm}%");});$q->orWhere('first_name','LIKE',"%{$searchTerm}%");$q->orWhere('last_name','LIKE',"%{$searchTerm}%");$q->orWhere('phone','LIKE',"%{$searchTerm}%");$q->orWhere('email','LIKE',"%{$searchTerm}%");}})->where('is_admin',1)->get();
I needed to write a somewhat clean solution to let an admin impersonate other users. Which basically means that one user can appear as another user – without having to get access that users credentials to log in.
The most obvious use case for this would be when an admin needs access to a user’s account. The app I did this for relies heavily on user created data, so this is very useful when customer service needs to look into any problems the users may have.
Earlier we were using Tymon JWT for authentication and it was quite easy to implement impersonation it with Rickycezar/laravel-jwt-impersonate
But after migrating to Sanctum for authentication I needed to come up with something else. Here’s my solution (I posted this first in a stackoverflow thread).
How it works
In front end admins can view a list of all users, where they can klick a button to triggers the impersonate endpoint for any user. After doing this the admin will appear to the system as the impersonated user.
When getting the response from the endpoint, front end sets a switch to keep track of that the current user is an impersonation – and to shows a button to leave impersonation. In essence what happens in front end is just that the access token is replaced when starting and ending an impersonation.
In backend what what happens is: Impersonate 1. Create a new access token for the impersonated user 2. Save a connection between this impersonation and the admin user 3. Delete the admin’s access token 4. Send the new access token back
Leave impersonation 1. Create a new access token for the admin connected to the impersonation token 2. Delete the impersonation token 3. Send the new access token back
It’s quite simple. So here we go:
1. Migration
First we write a migration that will create a new table called impersonations. This table will store the connection between a personal access token and the impersonating user.
Add three function to your USER model. These functions are used to determine if a user can impersonate others, can be impersonated by others and if the user is currently impersonating. You can make up your own rules for who can impersonate or get impersonated – just add whatever logic you want to the canImpersonate and canBeImpersonated functions.
I chose to only let admins impersonate and only non admins to be impersonated.
Add two functions. One to start impersonation (take the persona of another user), and one function to leave impersonation (go back to your own user).
In my case i have an AdminController. But you can put these functions wherever it makes sense to you. Maybe you want a dedicated ImpersonationController.
In these function there are two users – the impersonator and the persona. The impersonator is the admin who wants to access the system as another user, and the persona is the user that’s being impersonated.
Also you can modify the responses to however you prefer it for your frontend app. You most likely want to keep track of whether the user is actually impersonating another user, so you can add button for the admin to go back to its own account. I used the same structure as Rickycezar/laravel-jwt-impersonate so the we didn’t have to make any changes in front end from our old solution.
// START IMPERSONATIONpublicfunctionimpersonate($userId){ $impersonator =auth()->user(); $persona =User::find($userId);// Check if persona user exists, can be impersonated and if the impersonator has the right to do so.if (!$persona ||!$persona->canBeImpersonated() ||!$impersonator->canImpersonate()) {returnfalse; }// Create new token for persona $personaToken = $persona->createToken('IMPERSONATION token');// Save impersonator and persona token references $impersonation =newImpersonation(); $impersonation->user_id = $impersonator->id; $impersonation->personal_access_token_id = $personaToken->accessToken->id; $impersonation->save();// Log out impersonator $impersonator->currentAccessToken()->delete(); $response = ["requested_id"=> $userId,"persona"=> $persona,"impersonator"=> $impersonator,"token"=> $personaToken->plainTextToken ];returnresponse()->json(['data'=> $response], 200);}// LEAVE IMPERSONATIONpublicfunctionleaveImpersonate(){// Get impersonated user $impersonatedUser =auth()->user();// Find the impersonating user $currentAccessToken = $impersonatedUser->currentAccessToken(); $impersonation =Impersonation::where('personal_access_token_id', $currentAccessToken->id)->first(); $impersonator =User::find($impersonation->user_id); $impersonatorToken = $impersonator->createToken('API token')->plainTextToken;// Logout impersonated user $impersonatedUser->currentAccessToken()->delete(); $response = ["requested_id"=> $impersonator->id,"persona"=> $impersonator,"token"=> $impersonatorToken, ];returnresponse()->json(['data'=> $response], 200);}
4. Routes
Last and least, the routes. Remember that if you’re using a middleware to protect the impersonate route, so only admins can access it, you need to put the leave impersonation route outside that middleware. Since the persona taken by the admin most likely wont be a admin
If you need to shave off the last few digits of a big int, you can use this simple solution. Came in handy for me when working with milliseconds in timers. Basically you cast the integer to a double and divide it by the number of 0’s you want at the end. Then round, ceil or floor it and turn it back into an int.
For type safety you might have to do some more meticulous work, depending on the language you’re working in. Here’s an example in Dart.
var integerToRound =31555;var roundedInteger = (integerToRound /10).floor() *10;print(roundedInteger);//output: 31560
Dart
Change the divider and multiplier to the number of zeros you need.
var integerToRound =31555;var roundedInteger = (integerToRound /100).floor() *100;print(roundedInteger);//output: 31600
Sometimes you need to calculate the price of a product excluding VAT, and the only details you have is the amount including vat and the vat percent. This might be a bit tricky in some applications when there are mixed VAT percentages.
For example, you paid 1000 space credits and in that sum there is a 12% VAT included. If you need to find out how much of the 1000 is actual VAT you can use this simple function:
A simple JS function to validate that a date string in the format YYYY-MM-DD is a valid date. Will validate that the day is correct for the given month, including leap years
/*** Validate that a date string in the format YYYY-MM-DD is a valid date* @paramdateString (YYYY-MM-DD)* @returns{boolean}*/functionisValidDate(dateString) {// Date format: YYYY-MM-DDvar datePattern =/^([12]\d{3}-(0[1-9]|1[0-2])-(0[1-9]|[12]\d|3[01]))/;// Check if the date string format is a matchvar matchArray = dateString.match(datePattern);if (matchArray ==null) {returnfalse;}// Remove any non digit charactersvar cleanDateString = dateString.replace(/\D/g, '');// Parse integer values from date stringvar year =parseInt(cleanDateString.substr(0, 4));var month =parseInt(cleanDateString.substr(4, 2));var day =parseInt(cleanDateString.substr(6, 2));// Define number of days per monthvar daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];// Adjust for leap yearsif (year %400==0|| (year %100!=0&& year %4==0)) {daysInMonth[1] =29;}// check month and day rangeif (month <1|| month >12|| day <1|| day > daysInMonth[month -1]) {returnfalse;}// You made it through!returntrue;}
JavaScript functions for validating Swedish personal identity numbers (personnummer), and organisation numbers (organisationsnummer). The functions for personal identity number will also validate co-ordination number (samordningsnummer).
/** * Validate a 10 digit swedish personnummer * @parampnr * @returns{boolean|boolean} */functionvalidatePersonnummer(pnr) {let personummer =cleanDigitString(pnr);if (personummer.length >10) {returnfalse; }returnisValidLuhn(personummer) &&isPersonnummerDate(personummer);}functionvalidateOrganisationNumber(orgnr) {let orgnumber =cleanDigitString(orgnr);if (orgnumber.length <10|| orgnumber.length >12|| orgnumber.length ===11) { console.log(orgnumber.length); }returnisValidLuhn(orgnumber);}/** * Remove any non digit characters * @paramdigitString * @returns{*} */functioncleanDigitString(digitString) {return digitString.replace(/\D/g, '');}/** * Check if date is valid for personnummer * @parampnr * @returns{boolean} */functionisPersonnummerDate(pnr) {let year =parseInt(pnr.substring(0, 2));let month =parseInt(pnr.substring(2, 4));let day =parseInt(pnr.substring(4, 6));// Check year and month valuesif (year <0|| year >99|| month <0|| month >12) {returnfalse; }let daysInMonth = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31];// Adjust for leap yearsif (year %400===0|| (year %100!==0&& year %4===0)) { daysInMonth[1] =29; }// Check that day is within rangelet dayIsValid = day >0&& day <= daysInMonth[month -1];// If day is outside range, check if it's +60 for samordningsnummerif (!dayIsValid) { dayIsValid = day >60&& day <= daysInMonth[month -1] +60; }return dayIsValid;}/** * Check if last digit of number is vald Luhn control digit * @parampnr * @returns{boolean} */functionisValidLuhn(pnr) {let number;let checksum =0;for (let i = pnr.length -1; i >=0; i--) { number =parseInt(pnr.charAt(i));if (i %2===1) { checksum += number; } else { checksum += (number *2) >9? (number *2) -9: number *2; } }return checksum %10===0;}