Skip to content

Commit

Permalink
Add ente-auth extension (#14772)
Browse files Browse the repository at this point in the history
* Add ente-auth extension

- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- fix error handling
- more helper changes
- add more info for setup
- chore: changed the helper name
- feat: modularize
- Merge branch \'feat/add-extras\'
- Merge branch \'feat/add-imports\'
- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- Merge pull request #1 from calebjonasson/main
- cleaning up project elsint and jest configurations
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- linting
- fix error handling
- more helper changes
- add more info for setup
- chore: changed the helper name
- feat: modularize
- Merge branch \'feat/add-extras\'
- Merge branch \'feat/add-imports\'
- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- Merge pull request #1 from calebjonasson/main
- cleaning up project elsint and jest configurations
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- feat: show secrets that are imported
- feat: delete export after use
- linting
- fix error handling
- more helper changes
- add more info for setup
- chore: changed the helper name
- feat: modularize
- Merge branch \'feat/add-extras\'
- Merge branch \'feat/add-imports\'
- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- Merge pull request #1 from calebjonasson/main
- cleaning up project elsint and jest configurations
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- linting
- feat: show secrets that are imported
- feat: delete export after use
- linting
- fix error handling
- more helper changes
- add more info for setup
- chore: changed the helper name
- feat: modularize
- Merge branch \'feat/add-extras\'
- Merge branch \'feat/add-imports\'
- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- Merge pull request #1 from calebjonasson/main
- cleaning up project elsint and jest configurations
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- linting
- fix screenshots size
- add new screenshots
- add new constant
- separate logic into multiple commands
- linting
- add sorting system
- add emoji
- add hyperlink to notes field
- add action to open preferences
- import line break instead
- feat: paste totp instead of copy now
- linting
- feat: show secrets that are imported
- feat: delete export after use
- linting
- fix error handling
- more helper changes
- add more info for setup
- chore: changed the helper name
- feat: modularize
- Merge branch \'feat/add-extras\'
- Merge branch \'feat/add-imports\'
- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- Merge pull request #1 from calebjonasson/main
- cleaning up project elsint and jest configurations
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update ente-auth extension

- add features to readme
- linting
- fix screenshots size
- add new screenshots
- add new constant
- separate logic into multiple commands
- linting
- add sorting system
- add emoji
- add hyperlink to notes field
- add action to open preferences
- import line break instead
- feat: paste totp instead of copy now
- linting
- feat: show secrets that are imported
- feat: delete export after use
- linting
- fix error handling
- more helper changes
- add more info for setup
- chore: changed the helper name
- feat: modularize
- Merge branch \'feat/add-extras\'
- Merge branch \'feat/add-imports\'
- update the readme
- linting
- remove useless import
- feat: add new screenshots
- feat: add extras to ui
- fix token generation
- chore: import constant
- fix: folder and file creation
- i hate react
- Merge pull request #1 from calebjonasson/main
- cleaning up project elsint and jest configurations
- feat: add imports
- add test file
- chore: removed useless comment
- fix: linting
- ran linting

* Update CHANGELOG.md and optimise images

---------

Co-authored-by: raycastbot <bot@raycast.com>
  • Loading branch information
chkpwd and raycastbot authored Oct 21, 2024
1 parent 36ef9b6 commit d9ad628
Show file tree
Hide file tree
Showing 32 changed files with 7,753 additions and 0 deletions.
16 changes: 16 additions & 0 deletions extensions/ente-auth/.eslint.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"root": true,
"extends": [
"eslint:recommended",
"@raycast"
],
"env": {
"node": true
},
"ignorePatterns": [
"dist/"
],
"rules": {
"@raycast/prefer-title-case": "off"
}
}
8 changes: 8 additions & 0 deletions extensions/ente-auth/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"root": true,
"extends": ["@raycast"],
"rules": {
"@raycast/prefer-title-case": "off"
}
}

2 changes: 2 additions & 0 deletions extensions/ente-auth/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/coverage
/node_modules
4 changes: 4 additions & 0 deletions extensions/ente-auth/.prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": false
}
3 changes: 3 additions & 0 deletions extensions/ente-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Ente Auth Changelog

## [Initial Version] - 2024-08-28
34 changes: 34 additions & 0 deletions extensions/ente-auth/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# A Raycast extension that uses your Ente Auth exports

## Features
- Imports: Ability to dynamically import secrets
- TOTP Code Display: Fetches and displays TOTP secrets exported from Ente Auth.
- Sorted Data: Most used TOTP codes will be displayed at the top. Use ⌘ + [Number] to select.
- Dynamic Icons: Displays service-specific favicons when URL placed in notes section.
- Metadata Display: Shows detailed metadata for each TOTP.
- Progress Indicator: Visual progress indicator for the remaining time of the current TOTP code.
- Tag Support: Displays tags associated with each TOTP secret.
- Clipboard Actions: Allows users to copy the current and next TOTP codes to the clipboard with a single click.

## Usage

> [!NOTE]
> The Ente Auth [CLI](https://github.com/ente-io/ente/tree/main/cli) is required.
## Setup
#### Adding your account
As explained [here](https://github.com/ente-io/ente/tree/main/cli#accounts), run:
`ente account add` to login into an existing account. If you wish to update your account information, run the below:
```ente account update --app auth --email <email> --dir <path>```.

## Next Steps
#### Using Raycast
- Run `Export Secrets`. This will create a `~/Documents/ente` directory and a file named `ente_auth.txt`.
- Run `Import Secrets`. This will import all serialized items into Raycast encrypted database.
#### Using Ente
To perform a manual import, run: ```ente export```, then run `Import Secrets`.

Or perform the same actions but through the UI as long as the file is placed in the `~/Documents/ente` folder.

## Optionally
You can delete exported secrets from it's exported path by using `Delete Export`.
Binary file added extensions/ente-auth/assets/icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions extensions/ente-auth/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["src/**/*", "raycast-env.d.ts"],
"compilerOptions": {
"lib": ["ES2023"],
"module": "commonjs",
"target": "ES2022",
"strict": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"resolveJsonModule": true
}
}
199 changes: 199 additions & 0 deletions extensions/ente-auth/jest.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
/**
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/

import type { Config } from 'jest';

const config: Config = {
// All imported modules in your tests should be mocked automatically
// automock: false,

// Stop running tests after `n` failures
// bail: 0,

// The directory where Jest should store its cached dependency information
// cacheDirectory: "/tmp/jest_rs",

// Automatically clear mock calls, instances, contexts and results before every test
clearMocks: true,

// Indicates whether the coverage information should be collected while executing the test
collectCoverage: true,

// An array of glob patterns indicating a set of files for which coverage information should be collected
// collectCoverageFrom: undefined,

// The directory where Jest should output its coverage files
coverageDirectory: "../coverage",

// An array of regexp pattern strings used to skip coverage collection
coveragePathIgnorePatterns: [
"src/node_modules/"
],

// Indicates which provider should be used to instrument code for coverage
coverageProvider: "babel",

// A list of reporter names that Jest uses when writing coverage reports
coverageReporters: [
"json",
"text",
"lcov",
"clover"
],

// An object that configures minimum threshold enforcement for coverage results
// coverageThreshold: undefined,

// A path to a custom dependency extractor
// dependencyExtractor: undefined,

// Make calling deprecated APIs throw helpful error messages
// errorOnDeprecated: false,

// The default configuration for fake timers
// fakeTimers: {
// "enableGlobally": false
// },

// Force coverage collection from ignored files using an array of glob patterns
// forceCoverageMatch: [],

// A path to a module which exports an async function that is triggered once before all test suites
// globalSetup: undefined,

// A path to a module which exports an async function that is triggered once after all test suites
// globalTeardown: undefined,

// A set of global variables that need to be available in all test environments
// globals: {},

// The maximum amount of workers used to run your tests. Can be specified as % or a number. E.g. maxWorkers: 10% will use 10% of your CPU amount + 1 as the maximum worker number. maxWorkers: 2 will use a maximum of 2 workers.
// maxWorkers: "50%",

// An array of directory names to be searched recursively up from the requiring module's location
// moduleDirectories: [
// "node_modules"
// ],

// An array of file extensions your modules use
moduleFileExtensions: [
"js",
"mjs",
// "cjs",
"jsx",
"ts",
"tsx",
"json",
// "node"
],

// A map from regular expressions to module names or to arrays of module names that allow to stub out resources with a single module
// moduleNameMapper: {},

// An array of regexp pattern strings, matched against all module paths before considered 'visible' to the module loader
// modulePathIgnorePatterns: [],

// Activates notifications for test results
// notify: false,

// An enum that specifies notification mode. Requires { notify: true }
// notifyMode: "failure-change",

// A preset that is used as a base for Jest's configuration
// preset: undefined,

// Run tests from one or more projects
// projects: undefined,

// Use this configuration option to add custom reporters to Jest
// reporters: undefined,

// Automatically reset mock state before every test
// resetMocks: false,

// Reset the module registry before running each individual test
// resetModules: false,

// A path to a custom resolver
// resolver: undefined,

// Automatically restore mock state and implementation before every test
// restoreMocks: false,

// The root directory that Jest should scan for tests and modules within
rootDir: "./src",

// A list of paths to directories that Jest should use to search for files in
// roots: [
// "<rootDir>"
// ],

// Allows you to use a custom runner instead of Jest's default test runner
// runner: "jest-runner",

// The paths to modules that run some code to configure or set up the testing environment before each test
// setupFiles: [],

// A list of paths to modules that run some code to configure or set up the testing framework before each test
// setupFilesAfterEnv: [],

// The number of seconds after which a test is considered as slow and reported as such in the results.
// slowTestThreshold: 5,

// A list of paths to snapshot serializer modules Jest should use for snapshot testing
// snapshotSerializers: [],

// The test environment that will be used for testing
// testEnvironment: "jest-environment-node",

// Options that will be passed to the testEnvironment
// testEnvironmentOptions: {},

// Adds a location field to test results
// testLocationInResults: false,

// The glob patterns Jest uses to detect test files
testMatch: [
// "**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[tj]s?(x)"
],

// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
// testPathIgnorePatterns: [
// "/node_modules/"
// ],

// The regexp pattern or array of patterns that Jest uses to detect test files
// testRegex: [],

// This option allows the use of a custom results processor
// testResultsProcessor: undefined,

// This option allows use of a custom test runner
// testRunner: "jest-circus/runner",

// A map from regular expressions to paths to transformers
// transform: undefined,

// An array of regexp pattern strings that are matched against all source file paths, matched files will skip transformation
// transformIgnorePatterns: [
// "/node_modules/",
// "\\.pnp\\.[^\\/]+$"
// ],

// An array of regexp pattern strings that are matched against all modules before the module loader will automatically return a mock for them
// unmockedModulePathPatterns: undefined,

// Indicates whether each individual test should be reported during the run
// verbose: undefined,

// An array of regexp patterns that are matched against all source file paths before re-running tests in watch mode
// watchPathIgnorePatterns: [],

// Whether to use watchman for file crawling
// watchman: true,
};

export default config;
Binary file added extensions/ente-auth/metadata/ente-auth-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/ente-auth/metadata/ente-auth-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/ente-auth/metadata/ente-auth-3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/ente-auth/metadata/ente-auth-4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added extensions/ente-auth/metadata/ente-auth-5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit d9ad628

Please sign in to comment.