Passwords Service

@Service
open class PasswordsService

The PasswordsService class is useful to manage all the password database operations

Author

N7ghtm4r3 - Tecknobit

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
@Autowired
private open var eventsService: PasswordEventsService
eventsService instance used to manage the events related to a password
Link copied to clipboard
@Autowired
private open var passwordsRepository: PasswordsRepository
passwordsRepository instance used to manage the database operations for the passwords

Functions

Link copied to clipboard
open fun deletePassword(passwordId: String)
Method used to delete a password
Link copied to clipboard
private open fun editGeneratedPassword(token: String, passwordId: String, tail: String, scopes: String)
Method used to edit a GENERATED password
Link copied to clipboard
private open fun editInsertedPassword(token: String, passwordId: String, tail: String, scopes: String, password: String)
Method used to edit a INSERTED password
Link copied to clipboard
open fun editPassword(token: String, passwordId: String, tail: String, scopes: String, password: String)
Method used to edit a password
Link copied to clipboard
private open fun filterPasswords(passwords: List<Password>, keywords: Set<String>): List<Password>
Method used to apply the keywords filter to the result list
Link copied to clipboard
private open fun findPasswordById(passwordId: String): Password
Method used to find a password by its identifier
Link copied to clipboard
open fun generatePassword(user: GliderUser, token: String, tail: String, scopes: String, length: Int, hResponse: JsonHelper): String
Method used to generate a password
Link copied to clipboard
open fun getKeychain(    userId: String,     token: String,     page: Int,     pageSize: Int,     keywords: Set<String>,     types: Set<String>): PaginatedResponse<Password>
Method used to get the keychain of the user
Link copied to clipboard
open fun getPassword(token: String, passwordId: String): PasswordMask
Method used to get a password details
Link copied to clipboard
open fun insertPassword(user: GliderUser, token: String, tail: String, scopes: String, password: String)
Method used to insert a password
Link copied to clipboard
private open fun loadPasswordEntity(    token: String,     tail: String,     scopes: String,     password: String,     currentDate: Long,     type: PasswordType,     configuration: PasswordConfiguration,     user: GliderUser): Password
Method to load a Password entity with the password data
Link copied to clipboard
open fun notifyCopiedPassword(passwordId: String)
Method used to notify the COPIED event
Link copied to clipboard
open fun refreshGeneratedPassword(token: String, passwordId: String): String
Method used to refresh a GENERATED password
Link copied to clipboard
private open fun tailMatches(keywords: Set<String>, tail: String): Boolean
Method used to check whether the tail of the password matches with any keywords