コード例 #1
0
def edit_home():

    while (1):

        print("\nEnter 1 to edit slider images")
        print("Enter 2 to edit right pane")
        print("Enter 3 to edit center pane ")
        print("Enter 4 to add upcoming event")
        print("Enter 5 to exit")

        choice = raw_input()

        try:
            choice = int(choice)
        except ValueError:
            print "\nError! Invalid input.\n"
            continue

        if (choice == 1):

            db_ref_string = 'home/slider'
            blob_ref_string = 'home/slider/%s'

            file1 = raw_input("Enter path to image1 : ")
            file2 = raw_input("Enter path to image2 : ")
            file3 = raw_input("Enter path to image3 : ")

            error_flag, error_msg = dash_utils.file_exist(file1)
            if (error_flag == 1):
                print "\nError! Path to image1 does not exist.\n"
                continue

            error_flag, error_msg = dash_utils.file_exist(file2)
            if (error_flag == 1):
                print "\nError! Path to image2 does not exist.\n"
                continue

            error_flag, error_msg = dash_utils.file_exist(file3)
            if (error_flag == 1):
                print "\nError! Path to image3 does not exist.\n"
                continue

            try:
                blob = bucket.blob(blob_ref_string % "1")
                blob.upload_from_filename(file1)
            except:
                network_error()

            try:
                blob = bucket.blob(blob_ref_string % "2")
                blob.upload_from_filename(file2)
            except:
                network_error()

            try:
                blob = bucket.blob(blob_ref_string % "3")
                blob.upload_from_filename(file3)
            except:
                network_error()

            try:
                db_ref = db.reference(db_ref_string)

                slider_data = {
                    '1': blob_ref_string % "1",
                    '2': blob_ref_string % "2",
                    '3': blob_ref_string % "3"
                }

            except:
                network_error()

        elif (choice == 2):

            db_ref_string = 'home'

            html = raw_input("Enter right pane html : ")

            try:
                db_ref = db.reference(db_ref_string)
                db_ref.update({'right_pane': html})
            except:
                network_error()

        elif (choice == 3):

            db_ref_string = 'home'

            html = raw_input("Enter center pane html : ")

            try:
                db_ref = db.reference(db_ref_string)
                db_ref.update({'center_pane': html})
            except:
                network_error()

        elif (choice == 4):

            db_ref_string = 'home/upcoming/%s/%s'  # home/upcoming/year/title

            title = raw_input("\nEnter activity title : ")
            short_desc = raw_input(
                "Enter very short description (max 10 words) : ")
            date = raw_input("Enter date (dd/mm/yyyy) : ")

            error_flag, error_msg = dash_utils.check_name(title)
            if (error_flag == 1):
                print error_msg
                return

            error_flag, error_msg = dash_utils.check_date(date)
            if (error_flag == 1):
                print error_msg
                return

            date = date.split('/')

            data = {
                'title': title,
                'short_desc': short_desc,
                'date': {
                    'day': date[0],
                    'month': date[1],
                    'year': date[2]
                }
            }

            try:
                db_ref = db.reference(db_ref_string % (date[2], title))
                db_ref.set(data)
            except:
                network_error

            print "\nEvent added successfully\n"

        elif (choice == 5):
            return

        else:
            print("Invalid Input")
コード例 #2
0
def edit_activity():

    db_ref_string = 'activities/%s/%s'
    blob_ref_string = 'activities/%s/%s'

    title = raw_input("\nEnter activity title : ")
    short_desc = raw_input("Enter short decsription : ")
    long_desc = raw_input("Enter long description : ")
    date = raw_input("Enter date (dd/mm/yyyy) : ")
    file_dir = raw_input("Enter path to image : ")

    choice = raw_input(
        "Enter 1 for Course/Workshop, 2 for talk or 3 for others : ")

    try:
        choice = int(choice)
    except ValueError:
        print "\nError! Invalid input.\n"
        return

    error_flag, error_msg = dash_utils.check_name(title)
    if (error_flag == 1):
        print error_msg
        return

    error_flag, error_msg = dash_utils.check_date(date)
    if (error_flag == 1):
        print error_msg
        return

    date = date.split('/')
    category = 'others'

    if (choice == 1):
        category = 'workshop'
    elif (choice == 2):
        category = 'talk'

    data = {
        'title': title,
        'short_desc': short_desc,
        'long_desc': long_desc,
        'date': {
            'day': date[0],
            'month': date[1],
            'year': date[2]
        },
        'category': category,
        'img': blob_ref_string % (date[2], title)
    }

    error_flag, error_msg = dash_utils.file_exist(file_dir)
    if (error_flag == 1):
        print error_msg
        return

    try:
        blob = bucket.blob(blob_ref_string % (date[2], title))
        blob.upload_from_filename(file_dir)

        db_ref = db.reference(db_ref_string % (date[2], title))
        db_ref.set(data)
    except:
        network_error()
コード例 #3
0
def edit_gallery():

    db_ref_string = 'gallery/%s/%s'  # gallery/<year>/<event_name>
    blob_ref_string = 'gallery/%s/%s/%s'  # gallery/<year>/<event_name>/<img_no>

    title = raw_input("\nEnter activity title : ")
    short_desc = raw_input("Enter short decsription : ")
    date = raw_input("Enter date (dd/mm/yyyy) : ")
    img_count = raw_input("Enter image count : ")
    drive_link = raw_input("Enter drive link : ")

    error_flag, error_msg = dash_utils.check_name(title)
    if (error_flag == 1):
        print error_msg
        return

    error_flag, error_msg = dash_utils.check_date(date)
    if (error_flag == 1):
        print error_msg
        return

    date = date.split('/')

    data = {
        'title': title,
        'short_desc': short_desc,
        'date': {
            'day': date[0],
            'month': date[1],
            'year': date[2]
        },
        'img_count': img_count,
        'drive_link': drive_link
    }

    img_count = int(img_count)
    i = 1
    img = {}

    while (i <= img_count):
        img_dir = raw_input("Enter path to image %s : " % str(i))

        error_flag, error_msg = dash_utils.file_exist(img_dir)
        if (error_flag == 1):
            print error_msg
            continue

        try:
            blob = bucket.blob(blob_ref_string % (date[2], title, str(i)))
            blob.upload_from_filename(img_dir)
        except:
            network_error()

        img[i] = blob_ref_string % (date[2], title, str(i))
        i = i + 1

    data['img'] = img

    try:
        db_ref = db.reference(db_ref_string % (date[2], title))
        db_ref.set(data)
    except:
        network_error()
コード例 #4
0
def edit_members():

    while (1):

        print("\nEnter 1 to add faculty")
        print("Enter 2 to add student")
        print("Enter 3 to toggle flag_for_inductions")
        print("Enter 4 to exit")

        choice = raw_input()

        try:
            choice = int(choice)
        except ValueError:
            print "\nError! Invalid input.\n"
            continue

        if (choice == 1):

            db_ref_string = 'members/faculty/%s'
            blob_ref_string = 'members/faculty/%s'

            name = raw_input("\nEnter name : ")
            email = raw_input("Enter email : ")
            file_dir = raw_input("Enter path to image : ")

            error_flag, error_msg = dash_utils.check_name(name)
            if (error_flag == 1):
                print error_msg
                continue

            error_flag, error_msg = dash_utils.file_exist(file_dir)
            if (error_flag == 1):
                print error_msg
                continue

            try:
                blob = bucket.blob(blob_ref_string % name)
                blob.upload_from_filename(file_dir)

                db_ref = db.reference(db_ref_string % name)

                user_data = {
                    'nameof': name,
                    'email': email,
                    'img': blob_ref_string % name
                }

                db_ref.set(user_data)
            except:
                network_error()

        elif (choice == 2):

            db_ref_string = 'members/students/%(category)s/%(year)s/%(name)s'
            blob_ref_String = 'members/students/%(category)s/%(year)s/%(name)s'

            name = raw_input("\nEnter student name : ")
            year = raw_input("Enter student admission year : ")
            email = raw_input("Enter student email : ")
            linkedin = raw_input("Enter linkedin profile : ")
            file_dir = raw_input("Enter path to image file : ")

            ch = raw_input("Enter 1 for BTech, 2 for MTech and 3 for MCA : ")
            try:
                ch = int(ch)
            except ValueError:
                print "\nError! Invalid input.\n"
                continue

            error_flag, error_msg = dash_utils.check_name(name)
            if (error_flag == 1):
                print error_msg
                continue

            error_flag, error_msg = dash_utils.check_year(year)
            if (error_flag == 1):
                print error_msg
                continue

            if ch == 1:
                category = 'btech'
            elif ch == 2:
                category = 'mtech'
            else:
                category = 'mca'

            userdata = {
                'nameof': name,
                'email': email,
                'linkedin': linkedin,
                'img': db_ref_string % {
                    'year': year,
                    'category': category,
                    'name': name
                }
            }

            error_flag, error_msg = dash_utils.file_exist(file_dir)
            if (error_flag == 1):
                print error_msg
                continue

            try:
                blob = bucket.blob(blob_ref_String % {
                    'year': year,
                    'category': category,
                    'name': name
                })
                blob.upload_from_filename(file_dir)

                db_ref = db.reference(db_ref_string % {
                    'year': year,
                    'category': category,
                    'name': name
                })
                db_ref.set(userdata)
            except:
                network_error()

        elif (choice == 3):

            db_ref_string = 'members/flag_for_inductions'

            try:
                db_ref = db.reference(db_ref_string)
                val = db_ref.get()

                if val == 0:
                    db_ref.set(1)
                    print('Value toggled: Current value is 1')
                else:
                    db_ref.set(0)
                    print('Value toggled: Current value is 0')

            except:
                network_error()

        elif (choice == 4):
            return
        else:
            print "Invalid input"