Browse Source

added the req directory

tags/release-00
gashapwn 3 years ago
parent
commit
5be381122d
4 changed files with 10 additions and 4 deletions
  1. +1
    -0
      .gitignore
  2. +4
    -3
      app.py
  3. +1
    -1
      perl-script/create-user.pl
  4. +4
    -0
      req/00000.ident.done

+ 1
- 0
.gitignore View File

@@ -6,3 +6,4 @@ test_*.txt
*/p1.pl
*/p2.pl
user_list.txt
req/*.ident

+ 4
- 3
app.py View File

@@ -21,7 +21,7 @@ app=Flask(__name__)
# directory containing
# account request files...
WORKING_DIR = "/home/gashapwn/lyadmin/";
ACCOUNT_DIR = "test/";
ACCOUNT_DIR = "req/";
FULL_PATH = str(WORKING_DIR) + str(ACCOUNT_DIR)
CONF_PATH = str(WORKING_DIR) + "lyadmin.conf.json"

@@ -119,11 +119,12 @@ def signup():
# our request
# This sets the ID of the request we're
# abou to save to dsik
if(len(glob.glob("./test/[0-9]*ident*")) == 0):
if(len(glob.glob(ACCOUNT_DIR + str("[0-9]*ident*"))) == 0):
new_id = int(INIT_REQ_ID)
new_id_str = INIT_REQ_ID
else:
max_id = max(list(map( lambda path : path.split("/")[-1].split(".")[0] , glob.glob("./test/[0-9]*ident*"))))
max_id = max(list(map( lambda path : path.split("/")[-1].split(".")[0] , glob.glob(str(ACCOUNT_DIR) + "[0-9]*ident*"))))
# max_id = max(list(map( lambda path : path.split("/")[-1].split(".")[0] , glob.glob("./test/[0-9]*ident*"))))
zpad = len(max_id)
new_id = int(max_id)+1
new_id_str = str(new_id).zfill(zpad)


+ 1
- 1
perl-script/create-user.pl View File

@@ -5,7 +5,7 @@ use strict;
use JSON;

my $WORKING_DIR = "/home/gashapwn/lyadmin/";
my $ACCOUNT_DIR = "test/";
my $ACCOUNT_DIR = "req/";

my $FULL_PATH = "$WORKING_DIR$ACCOUNT_DIR";
my $CONF_PATH = $WORKING_DIR."lyadmin.conf.json";


+ 4
- 0
req/00000.ident.done View File

@@ -0,0 +1,4 @@
testuser1234
asdfasdfas
SHELL_BASH
sdasdfasdfasdfasd

Loading…
Cancel
Save