Codebase Analyzer

Global Concept

At Flagship, our mission is to help you focus on your code and do your magic.

To help you focus on that purpose, we have created a tool that can analyze your codebase and detect the usage of Flagship flags so that they can be synchronized in our platform.

Distribution

Our Codebase analyzer can be used by downloading our docker image or with the help of our CLI

Prerequisites

The Codebase Analyzer requires the setup of a Client ID and Client Secret for the Remote Control API. You can find more information here: Remote Control API.

Install

From docker

docker pull flagshipio/code-analyzer

Binary

Download the binary here for your specific system architecture:

https://github.com/flagship-io/codebase-analyzer/releases/latest

Run

With CLI

With Docker

With Homebrew

Supported file languages

  • .cs .fs (SDK V4 supported)

  • .dart (SDK V4 supported)

  • .go

  • .java

  • .js .jsx (SDK V4 supported)

  • .kt (Android SDK V4 supported)

  • .m

  • .php (SDK V4 supported)

  • .py

  • .swift (SDK V4 supported)

  • .ts .tsx (SDK V4 supported)

  • .vb

How it Works for V4 SDK

The codebase analyzer scans your codebase for potential usage of Flagship's feature flags, using presets of regexes or custom regexes that match your declarative variable, flag key, and default value with groups, where the first group matches the variable and the second group matches either flag or default value.

Here is an example of how the codebase analyzer scans a codebase where the Flagship JS SDK v4 is used.

  • One regex to match the flag's key and default value

Demonstration of use in the codebase that contains JS SDK v4
  • Two regexes to match the flag's key and default value when they are split

Match declarative variable and flag's default value
Match declarative variable and flag's key

Flagship preset of regexes

The codebase analyzer has a built-in set of regexes that match any feature flags used by Flagship with our SDK. Check supported files.

Custom regexes

The Codebase analyzer allows you to put custom regexes using the variable SearchCustomRegex.

The input data for SearchCustomRegex should follow this structure when the flag's key and default can be matched with one regex

When the flag's key and default value can't be matched with one regex you can use the property split, seach_flag and search_default_value.

For example for JS SDK v4:

  • When the flag's key and default value can be matched with one regex:

This JSON should be transformed to this string.

When the flag's key and default value are split

  • To match the declarative variable and the flag's key

  • To match the declarative variable and the flag's default value

How it Works for V3 SDK

The codebase analyzer scans your codebase for potential usage of Flagship's feature flags, using presets of regexes or custom regexes that match the flag key and default value with groups, where the first group matches the key and the second group matches the default value.

Here an example on how the codebase analyzer scans a codebase where the Flagship JS SDK v3 is used.

Demonstration of use in codebase that contains JS SDK v3

Flagship preset of regexes

The codebase analyzer has a built-in set of regexes that match any feature flags used by Flagship with our SDK. Check supported files.

Custom regexes

The Codebase analyzer allows you to put custom regexes using the variable SearchCustomRegex.

The input data for SearchCustomRegex should follow this structure

For example:

This JSON should be transformed to this string.

\

Environment variables

Flagship client ID (required)

This environment variable contains the Flagship client id necessary to authenticate requests and send flag infos to the Flagship Platform

  • example: FLAGSHIP_CLIENT_ID=FLAGSHIP_MANAGEMENT_API_CLIENT_ID

Flagship client secret (required)

This environment variable contains the Flagship client secret necessary to authenticate requests and send flag infos to the Flagship Platform

  • example: FLAGSHIP_CLIENT_SECRET=FLAGSHIP_MANAGEMENT_API_CLIENT_SECRET

You can retrieve these data from the platform or follow these instructions

Account ID (required)

This environment variable contains the Flagship account ID to synchronize flag usage for the matching environment

example: ACCOUNT_ID=your_flagship_account_id

Environment ID (required)

This environment variable contains the Flagship environment ID to synchronize flag usage for the matching environment

  • example: ENVIRONMENT_ID=your_flagship_env_id

Repository URL (required)

This environment variable should be set to the root URL of your repository and is used to track the links of the files where your flags are used

  • example: REPOSITORY_URL=https://gitlab.com/org/repo

  • default value: ""

Repository branch (required)

This environment variable should be set to the branch of the code you want to analyze and is used to track the links of the files where your flags are used

  • example: REPOSITORY_BRANCH=master

  • default value: ""

Files to exclude (optional)

This environment variable should contain a comma-separated list of globs to exclude

  • example: FILES_TO_EXCLUDE=".git/*,go.mod,go.sum,main.go,internal/*,example/*"

  • default value: ""

Directory to analyze (optional)

This environment variable should contain the directory you want to analyze

  • example: DIRECTORY="."

  • default value: "."

Custom regex to apply (optional)

This environment variable should contain the regex for the pattern you want to analyze

  • example: CUSTOM_REGEX_JSON="[{\"file_extension\":\".go?\",\"regexes\":[\"(?:Bool|String|Float64)Variation[(](?:\\\\s*[\\\"\\\\'](.*)[\\\"\\\\']\\\\s*,\\\\s*([\\\"\\\\'].*\\\\s*[^\\\"]*[\\\"\\\\']|[^)]*))\\\\s*[)]\"]}]"

  • default value: ""

Use with Gitlab CI

You can use the Codebase analyzer to push flag references to your Flagship environment when code is pushed to a specific branch or tag

Contribute

The Codebase Analyzer is an open-source software. See the GitHub link for the contribution guide: https://github.com/flagship-io/codebase-analyzer

Any feedback? We would be happy to have a quick chat!

Last updated

Was this helpful?