componentsDjangoType 2.0.12__tar.gz → 2.0.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {componentsdjangotype-2.0.12/componentsDjangoType.egg-info → componentsdjangotype-2.0.14}/PKG-INFO +1 -1
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14/componentsDjangoType.egg-info}/PKG-INFO +1 -1
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/services/authenticator_configurator.py +23 -23
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/setup.py +1 -1
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/LICENSE +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/MANIFEST.in +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/README.md +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType/__init__.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType/management/__init__.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType/management/commands/__init__.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType/management/commands/createApp.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType/management/commands/createcomponent.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/SOURCES.txt +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/dependency_links.txt +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/requires.txt +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType.egg-info/top_level.txt +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/services/__init__.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/services/authentication/__init__.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/services/authentication/auth.py +0 -0
- {componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/setup.cfg +0 -0
{componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/services/authenticator_configurator.py
RENAMED
@@ -115,36 +115,36 @@ urlpatterns = [
|
|
115
115
|
else:
|
116
116
|
stdout.write(f"No se encontró la lista 'urlpatterns' en '{urls_path}'.")
|
117
117
|
|
118
|
-
def creation_auth(self, stdout):
|
119
|
-
|
120
|
-
|
121
|
-
|
118
|
+
def creation_auth(self, stdout):
|
119
|
+
services_dir = os.path.join(self.app_name, 'services')
|
120
|
+
authentication_dir = os.path.join(services_dir, 'authentication')
|
121
|
+
os.makedirs(authentication_dir, exist_ok=True)
|
122
122
|
|
123
|
-
|
123
|
+
authentication_path = os.path.join(authentication_dir, 'authentication.py')
|
124
124
|
|
125
|
-
|
125
|
+
auth_source_path = os.path.abspath('services/authentication/auth.py')
|
126
126
|
|
127
|
-
|
128
|
-
|
129
|
-
|
127
|
+
if not os.path.exists(auth_source_path):
|
128
|
+
stdout.write(f"El archivo fuente '{auth_source_path}' no existe. Verifica la instalación del paquete.")
|
129
|
+
return
|
130
130
|
|
131
|
-
|
132
|
-
|
131
|
+
if not os.path.exists(authentication_path):
|
132
|
+
stdout.write(f"Creando el archivo '{authentication_path}'...")
|
133
133
|
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
134
|
+
# Leer el contenido de 'auth.py' del paquete
|
135
|
+
try:
|
136
|
+
with open(auth_source_path, 'r') as source_file:
|
137
|
+
auth_code = source_file.read()
|
138
138
|
|
139
|
-
|
140
|
-
|
141
|
-
|
139
|
+
# Escribir el contenido en el nuevo archivo 'authentication.py'
|
140
|
+
with open(authentication_path, 'w') as dest_file:
|
141
|
+
dest_file.write(auth_code)
|
142
142
|
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
143
|
+
stdout.write(f"El archivo '{authentication_path}' fue creado y el código fue copiado.")
|
144
|
+
except Exception as e:
|
145
|
+
stdout.write(f"Error al copiar el archivo: {e}")
|
146
|
+
else:
|
147
|
+
stdout.write(f"El archivo '{authentication_path}' ya existe.")
|
148
148
|
|
149
149
|
|
150
150
|
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/componentsDjangoType/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{componentsdjangotype-2.0.12 → componentsdjangotype-2.0.14}/services/authentication/__init__.py
RENAMED
File without changes
|
File without changes
|
File without changes
|