Changelog
shiny.reglog 0.5.1
- added experimental
RegLogMongoConnector
- connector to mongodb database - added
shinytest2
-based tests - fixed bugs:
- correct modal showing up with missing inputs on credentials change
-
RegLogGsheetConnector
able to save logs into googlesheet database
shiny.reglog 0.5.0
CRAN release: 2022-03-25
With the release of v0.5.0 there are a lot of changes in the current implementation of the RegLog system. Most of the changes were implemented to provide more customization options in implementing shiny.reglog
in your ShinyApp and to widen its possibilities. At the same time I’ve strived to make the historical features still accessible, so it shouldn’t be harder to use for novice Shiny developers.
Instead of using single function to run all logic for RegLog system (as was the case in deprecated login_server
) it introduces three main components: RegLogServer, two dbConnectors and two mailConnectors. Below are listed the main changes and improvements over previous release. For more details you can read two detailed vignettes: RegLogServer object: fields and methods and Creating custom RegLogConnector handlers.
- main logic is now encapsulated in
RegLogServer
R6 class. Arguments provided during initialization of object provide options for customization, and more importantly objects of classes providing connection to the database (RegLogDBIConnector
orRegLogGsheetConnector) and to your e-mail provider (
RegLogEmayiliConnectoror
RegLogGmailrConnector). - application can now observe for all state changes made during the lifespan of the application accessing the
RegLogServer$message()` reactiveVal. - default *modalDialogs* can now be inhibited - either all together (`use_modals = F`) or specifically (providing named list of `FALSE` bool values to `use_modals` argument) - `is_logged`, `user_id`, `user_mail` values are now kept inside *reactiveVal* fields, so you need to add `()` to access their values (eg. `RegLogServer$user_id()). Also,
account_id` value is added for logged users. - the improved presentation of password reset procedure don’t make it necessary for invoking
modalDialog
. It makes the UI more flexible for this process more flexible. - there is also added logic for credentials change procedure: it is now possible to change password, user ID and user e-mail after registration.
- class
RegLogGsheetConnector
provides support for storing the userbase inside googlesheet. It contains the past functionality ofdb_method = 'gsheet'
inlogin_server
.- there have been made some additional improvements: now it mirrors the behaviour of SQL databases: password changes don’t append new rows to the googlesheet, but changes the whole row accordingly, which makes menaging the database much simpler.
- class
RegLogDBIConnector
provides support for storing the userbase insideDBI
handled database. It improves on original support for SQLite database, providing also out-of-box support for multiple MySQL, MariaDB and PostgreSQL databases. - both mailConnectors improves on the functionality of emailing methods of now deprecated
login_server
.- they allow explicitly modifying all send e-mails to the users.
- they send e-mails after register, reset password and credentials change procedure (user ID and/or e-mail).
- they also support sending custom e-mails after custom events.
- both dbConnectors and mailConnectors allow appending custom handler functions, either to modify the default ones or providing completely new functionalities.
To sum up, newly introduced functions/classes and their deprecated ancestors:
-
RegLogServer
class replaceslogin_server
-
RegLog_login_UI
function replaceslogin_UI
-
RegLog_register_UI
function replacesregister_UI
-
RegLog_resetPass_UI
function replacespassword_reset_UI
-
RegLog_credsEdit_UI
function introduces credential edit UI functionality. -
RegLogDBIConnector
class replaceslogin_server(db_method = "sqlite")
and widen the usability -
RegLogGsheetConnector
class replaceslogin_server(db_method = "gsheet")
-
RegLogEmayiliConnector
class replaceslogin_server(email_method = "emayili")
-
RegLogGmailrConnector
class replaceslogin_server(email_method = "gmailr")
-
RegLog_txt
function replacesreglog_txt
-
DBI_tables_create
function replacescreate_sqlite_db
with added functionality -
gsheet_tables_create
replacescreate_gsheet_db
-
RegLogConnectorMessage
function to parse your own messages to connectors -
RegLogConnector
class to inherit from during creation of your own connectors
Deprecated without direct replacement:
-
logout_button
: usingRegLogServer$logout()
method creating own logout logic is straightforward. -
sqlite_get_db
andgsheet_get_db
: getting tables and sheets is straightforward using functions fromDBI
orgooglesheets4
packages
shiny.reglog 0.4.2
- Added optional argument to
login_server
:use_login_modals
enabling developer to silence systemic modals after any or all login attempts - Added
last_state_change
to the reactiveValues object, that is returned fromlogin_server
. It enables to listen to last state changes of login procedure. Currently it supports only state changes from login procedure, so it can take this values:- “init”, if no state change was made
- “login_UserNotFound”, if the user tried to login with non-existing username
- “login_WrongPass”, if the user provided incorrect password
- “login_Success”, if the user has been logged successfully
shiny.reglog 0.4.0
- Added
credentials
argument tocreate_gsheet_db
, mirroring the same functionality ofcreate_sqlite_db
- Added
logout_button
function, providing the users a way to log out during usage of ShinyApp - Added description of how to provide credentials to
create_sqlite_db
andcreate_gsheet_db
functions - Created vignette specifying the authorization process for
gmailr
andgooglesheets4
to use their methods of email sending and database storage - Removed
dbplyr
dependency
shiny.reglog 0.3.0
- Added
credentials
argument tocreate_sqlite_db
to create SQLite database containing some data - Removed
use_language
from exported functions, as its functionality is minimal out of its usage context -
sqlite_get_db
andgsheet_get_db
functions are now exported, as their functionality grew with addedcredentials
argument - Fixed
user_id
value returned bylogin_server
function for anonymous users. It is now in form ofpaste("Anon", Sys.time(), sep = "_")
to force its reads ascharacter
object. Before it could be read asdatetime
object while reading from ‘googlesheets’ database and it caused some bugs