diff --git a/assets/css/highContrast.css b/assets/css/highContrast.css new file mode 100644 index 0000000..4162e58 --- /dev/null +++ b/assets/css/highContrast.css @@ -0,0 +1,613 @@ +/* Basic */ +* { + box-sizing: border-box; + margin: 0px; + } + + /* Headers */ + h1, h2, h3, h4 { + color: #d3ebff; + text-transform: uppercase; + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + vertical-align: baseline; + text-align: center; + } + + h2 { + font-size: 95%; + } + + h3 { + font-size: 85%; + } + + h4 { + font-size: 75%; + } + + /* Buttons */ + button, .button.large { + display: inline-block; + margin: 10px; + width: 150px; + height: 30px; + padding: 5px 10px; + background-color :#1f2c3d; + border: 1px solid #dadada; + text-align: center; + color :#dadada; + font-weight: bold; + position: relative; + } + .button.large { + width: 95%; + } + button:hover, .button:hover { + cursor: pointer; + background-color:#dadada; + color:#1f2c3d; + border-color: #1f2c3d; + } + + /* Header */ + .header { + background-color: #1f2c3d; + color: #dadada; + padding: 15px; + text-align: left; + font-size: 18px; + } + .header img { + width: 13px; + } + /* Header Menu */ + .menu { + margin-top: 10px; + text-align: right; + font-size: 15px; + } + .menu nav a{ + text-decoration: none; + color: inherit; + font-size: 15px; + } + .menu nav li{ + display: inline-block; + width: 150px; + height: 30px; + padding: 5px 10px; + background-color :#1f2c3d; + border: 1px solid #dadada; + text-align: center; + color :#dadada; + position: relative; + } + .menu nav li:hover{ + background-color:#dadada; + color:#1f2c3d; + border-color: #1f2c3d; + } + .menu nav li>ul{ + display: none; + } + .menu nav li:hover>ul{ + display: block; + position: absolute; + top: 29px; + right: -1px; + } + /* Sub Header */ + .header.sub { + margin-bottom: 20px; + padding: 5px; + display: flex; + flex-direction: row; + text-align: center; + justify-content: center; + font-size: 20px; + } + .header.sub .menu { + margin-top: 0px; + text-align: center; + font-size: 15px; + } + /* Responsive layout */ + @media (max-width: 850px) { + .header.sub .menu nav li:hover>ul{ + display: block; + position: relative; + top: 5px; + left: -51px; + } + } + + + /* Paragraphs */ + p { + padding: 0; + border: 0; + } + + a { + color: #dadada; + text-decoration: none; + } + a:hover{ + color:rgb(138, 150, 32); + } + + /* Body */ + body { + font-family: Arial, Helvetica, sans-serif; + background-color: #00020f; + color: #dadada; + } + + /* Table */ + table { + border-collapse: collapse; + border-spacing: 0; + margin: 0 0 2em 0; + width: 100%; + text-align: left; + font-size: 15px; + } + table a{ + color: #dadada; + } + table tbody tr { + color: #dadada; + border: solid 1px #dadada; + border-left: 0; + border-right: 0; + } + table tbody tr:nth-child(2n + 1) { + background-color: rgba(255, 255, 255, 0.25); + } + table td { + padding: 0.75em 0.75em; + } + table th { + color: #dadada; + font-size: 0.9em; + font-weight: 600; + padding: 0.85em 0.85em 0.85em 0.85em; + } + table thead, table tfoot { + border-bottom: solid 2px #dadada; + } + table.alt { + border-collapse: separate; + } + table.alt tbody tr td { + border: solid 1px #dadada; + border-left-width: 0; + border-top-width: 0; + } + + table.alt tbody tr td:first-child { + border-left-width: 1px; + } + + table.alt tbody tr:first-child td { + border-top-width: 1px; + } + + table.alt thead, table.alt tfoot { + border-top: 0; + } + + + /* Main */ + main { + padding: 30px; + text-align: center; + font-size: 35px; + } + main h1, h2, h3, h4 { + color: #dadada; + } + main img { + width: 40%; + } + + /* Create three unequal columns that floats next to each other */ + .column { + float: left; + padding: 10px; + } + + /* Left and right column */ + .column.side { + width: 33.33%; + } + + /* Middle column */ + .column.middle { + width: 33.33%; + } + + .column.middle .image img, .column.side .image img{ + border-radius: 4px; + border: 0; + position: relative; + border-radius: 4px; + display: block; + margin: 0 0 3rem 0; + width: 100%; + } + + /* Left column */ + .column.left { + width: 50%; + } + + /* Right column */ + .column.right { + float: right; + width: 50%; + } + + /* Clear floats after the columns */ + .row:after { + content: ""; + display: table; + clear: both; + } + + /* Responsive layout: makes the three columns stack on top of each other instead of next to each other */ + @media (max-width: 1000px) { + .column.side, .column.middle, .column.left, .column.right{ + width: 100%; + } + } + + /* Zoom */ + .zoom { + transition: transform .2s; + } + .zoom:hover { + transform: scale(1.05); + } + + /* Code & Blockquote */ + .code { + background: #1f2c3d; + border-radius: 3px; + font-size: 0.9em; + margin: 10px; + display: block; + line-height: 1.75em; + padding: 1em 1.5em; + overflow-x: auto; + overflow-y: auto; + } + .code h1, .code h2{ + color: #dadada; + } + .code h3, .code h4 { + color: #d3ebff; + } + .code p { + color: #dadada; + } + .code a { + text-decoration: underline; + } + .code ul, .code ol, .code li{ + color: #dadada; + } + .code img{ + /* width: 80px; height: 80px; */ + width: 25%; + } + .code fieldset{ + margin: 1px; + border-color: #dadada; + border-style: groove; + } + .code fieldset legend { + text-transform: uppercase; + font-weight: bold; + font-size: 90%; + color: #d3ebff; + } + .code label{ + color: #d3ebff; + } + .code.details{ + height: 750px; + } + .code.plan { + height: 1150px; + } + .code.info{ + text-align: center; + height: 250px; + } + .code.showtimes{ + height: 600px; + } + + + /* BlockQuotes */ + .blockquote { + border-left: solid 4px #dadada; + margin: 0 0 2em 0; + margin-top: 10px; + padding: 0.5em 0 0.5em 2em; + } + .blockquote.bio { + height: 250px; + } + + /* Sketches */ + .sketches { + text-align: center; + display: block; + line-height: 1.25em; + padding: 1em 1em; + overflow-x: auto; + background: #1f2c3d; + border-radius: 3px; + height: 680px; + } + .sketches h1, .sketches h2, .sketches h3, .sketches h4, .sketches p { + color: #dadada; + } + .sketches img { + width: 550px; + height: 550px; + } + .sketches .description { + color: #00020f; + } + /* Responsive layout */ + @media (max-width: 1500px) { + .column.side .sketches, .column.middle .sketches { + width: 100%; + height: 500px; + } + .column.side .sketches img, .column.middle .sketches img { + width: 100%; + height: 75%; + } + } + @media (max-width: 1150px) { + .sketches img { + width: 100%; + height: 75%; + } + } + + /* Text Box */ + .textbox { + color: #d3ebff; + padding: 15px 15px 10px 15px; + margin: 10px 0 10px; + overflow: hidden; + border-radius: 25px 0px 25px 0px; + border: 2px solid #d3ebff; + } + .textbox h1, .textbox h2, .textbox h3 { + color: #d3ebff; + text-align: left; + } + + /* Galery */ + .galery { + box-sizing: border-box; + } + .galery .columna { + margin-top: 10px; + float: left; + width: 50%; + padding-right: 10px; + } + .galery .fila::after { + content: ""; + clear: both; + display: table; + } + .galery .image img { + width: 100%; + } + .galery .image.main img { + width: 100%; + } + + + /* Percentage bar */ + .bar { + height: 15px; + line-height: 15px; + font-size: 13px; + font-weight: bold; + width: 100%; + color: #dadada; + background-color: #00020f; + text-align: right; + } + .bar.seventyfive { + width: 75%; + } + .bar.fifty { + width: 50%; + } + .bar.twentyfive { + width: 25%; + } + + /* Timeline Image */ + .timeline h2 { + padding-top: 50px; + } + .timeline img{ + width: 100%; + text-align: center; + padding-bottom: 50px; + padding-left: 15px; + padding-right: 15px; + } + + /* Sidebars */ + .sidebar.left { + padding: 5px; + margin-top: 10px; + margin-bottom: 10px; + float: left; + width: 300px; + height: 370PX; + color: #00020f; + background-color: #1f2c3d; + } + .sidebar.left a { + color: #00020f; + font-weight: bold; + text-decoration: none; + } + .sidebar.left a:hover { + color: #00020f; + text-decoration: underline; + } + /* Responsibe sidebar */ + @media (max-width: 1000px) { + .sidebar.left { + width: 100%; + height: 100%; + } + } + + + /* Form */ + form { + margin: auto; + width: 65%; + } + + form h1, h2, h3, h4 { + color: #dadada; + } + + label { + color: #dadada; + text-align: center; + font-weight: bold; + } + + input, textarea { + width: 100%; + height: 27px; + border: 1px solid #dadada; + padding: 10px; + margin-top: 5px; + font-size: 15px; + } + + textarea { + width: 100%; + height: 150px; + } + + legend { + color: #dadada; + } + + #radio, #checkbox { + width: auto; + height: 15px; + cursor: pointer; + } + + .verify { + font-size: 11px; + } + .verify a { + color: #dadada; + } + .verify a:hover { + color: rgb(138, 150, 32); + } + + #submit, #register { + width: 100%; + height: 35px; + border: 1px solid #dadada; + padding: 5px; + margin-top: 5px; + font-size: 15px; + font-weight: bold; + box-shadow: 2px 2px #1f2c3d; + filter: brightness(105%); + cursor: pointer; + } + #submit:hover, #register:hover { + color: #dadada; + background-color: #1f2c3d; + } + + #reset { + width: 100%; + height: 30px; + border: 1px solid #dadada; + background-color: #00020f; + color: #dadada; + padding: 5px; + margin-top: 5px; + font-size: 12px; + font-weight: bold; + box-shadow: 2px 2px #1f2c3d; + cursor: pointer; + } + #reset:hover { + border:#000000; + background-color: #791515; + } + .file{ + margin-top: 10px; + } + .file input{ + height: 110%; + } + + /* Preformatted Text */ + pre { + font-weight: bold; + } + + fieldset pre { + color: red; + } + + /* Footer */ + footer { + text-align: left; + background-color: #1f2c3d; + color: #dadada; + padding: 20px; + margin-top: 100px; + width: 100%; + height: 80px; + } + .footer { + text-align: right; + } + footer button { + display: inline-block; + margin: 1px; + width: 115px; + height: 25px; + padding: 0px 0px; + text-align: center; + font-weight: bold; + position: relative; + } + @media (max-width: 500px) { + footer { + width: 100%; + height: 100%; + } + } \ No newline at end of file diff --git a/assets/css/main.css b/assets/css/main.css new file mode 100644 index 0000000..3fd8018 --- /dev/null +++ b/assets/css/main.css @@ -0,0 +1,606 @@ +/* Basic */ +* { + box-sizing: border-box; + margin: 0px; +} + +/* Headers */ +h1, h2, h3, h4 { + color: #363636; + text-transform: uppercase; + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + vertical-align: baseline; + text-align: center; +} + +h2 { + font-size: 95%; +} + +h3 { + font-size: 85%; +} + +h4 { + font-size: 75%; +} + +/* Buttons */ +button, .button.large { + display: inline-block; + margin: 10px; + width: 150px; + height: 30px; + padding: 5px 10px; + background-color :#1f2c3d; + border: 1px solid #d3ebff; + text-align: center; + color :#d3ebff; + font-weight: bold; + position: relative; +} +.button.large { + width: 95%; +} +button:hover, .button:hover { + cursor: pointer; + background-color:#d3ebff; + color:#1f2c3d; + border-color: #1f2c3d; +} + +/* Header */ +.header { + background-color: #1f2c3d; + color: #dadada; + padding: 15px; + text-align: left; + font-size: 18px; +} +.header img { + width: 13px; +} +/* Header Menu */ +.menu { + margin-top: 10px; + text-align: right; + font-size: 15px; +} +.menu nav a{ + text-decoration: none; + color: inherit; + font-size: 15px; +} +.menu nav li{ + display: inline-block; + width: 150px; + height: 30px; + padding: 5px 10px; + background-color :#1f2c3d; + border: 1px solid #d3ebff; + text-align: center; + color :#d3ebff; + position: relative; +} +.menu nav li:hover{ + background-color:#d3ebff; + color:#1f2c3d; + border-color: #1f2c3d; +} +.menu nav li>ul{ + display: none; +} +.menu nav li:hover>ul{ + display: block; + position: absolute; + top: 29px; + right: -1px; +} +/* Sub Header */ +.header.sub { + margin-bottom: 20px; + padding: 5px; + display: flex; + flex-direction: row; + text-align: center; + justify-content: center; + font-size: 20px; +} +.header.sub .menu { + margin-top: 0px; + text-align: center; + font-size: 15px; +} +/* Responsive layout */ +@media (max-width: 850px) { + .header.sub .menu nav li:hover>ul{ + display: block; + position: relative; + top: 5px; + left: -51px; + } +} + + +/* Paragraphs */ +p { + padding: 0; + border: 0; +} + +a { + color: #dadada; + text-decoration: none; +} +a:hover{ + color:rgb(138, 150, 32); +} + +/* Body */ +body { + font-family: Arial, Helvetica, sans-serif; + background-color: #d3ebff; + color: #000000; +} + +/* Table */ +table { + border-collapse: collapse; + border-spacing: 0; + margin: 0 0 2em 0; + width: 100%; + text-align: left; + font-size: 15px; +} +table a{ + color: #1f2c3d; +} + table tbody tr { + border: solid 1px #1f2c3d; + border-left: 0; + border-right: 0; + } + table tbody tr:nth-child(2n + 1) { + background-color: rgba(144, 144, 144, 0.25); + } + table td { + padding: 0.75em 0.75em; + } + table th { + color: #1f2c3d; + font-size: 0.9em; + font-weight: 600; + padding: 0.85em 0.85em 0.85em 0.85em; + } + table thead, table tfoot { + border-bottom: solid 2px #1f2c3d; + } + table.alt { + border-collapse: separate; + } + table.alt tbody tr td { + border: solid 1px #1f2c3d; + border-left-width: 0; + border-top-width: 0; + } + + table.alt tbody tr td:first-child { + border-left-width: 1px; + } + + table.alt tbody tr:first-child td { + border-top-width: 1px; + } + + table.alt thead, table.alt tfoot { + border-top: 0; + } + + +/* Main */ +main { + padding: 30px; + text-align: center; + font-size: 35px; +} +main h1, h2, h3, h4 { + color: #363636; +} +main img { + width: 40%; +} + +/* Create three unequal columns that floats next to each other */ +.column { + float: left; + padding: 10px; +} + +/* Left and right column */ +.column.side { + width: 33.33%; +} + +/* Middle column */ +.column.middle { + width: 33.33%; +} + +.column.middle .image img, .column.side .image img{ + border-radius: 4px; + border: 0; + position: relative; + border-radius: 4px; + display: block; + margin: 0 0 3rem 0; + width: 100%; +} + +/* Left column */ +.column.left { + width: 50%; +} + +/* Right column */ +.column.right { + float: right; + width: 50%; +} + +/* Clear floats after the columns */ +.row:after { + content: ""; + display: table; + clear: both; +} + +/* Responsive layout: makes the three columns stack on top of each other instead of next to each other */ +@media (max-width: 1000px) { + .column.side, .column.middle, .column.left, .column.right{ + width: 100%; + } +} + +/* Zoom */ +.zoom { + transition: transform .2s; +} +.zoom:hover { + transform: scale(1.05); +} + +/* Code & Blockquote */ +.code { + background: #1f2c3d; + border-radius: 3px; + font-size: 0.9em; + margin: 10px; + display: block; + line-height: 1.75em; + padding: 1em 1.5em; + overflow-x: auto; + overflow-y: auto; +} +.code h1, .code h2{ + color: #dadada; +} +.code h3, .code h4 { + color: #d3ebff; +} +.code p { + color: #dadada; +} +.code a { + text-decoration: underline; +} +.code ul, .code ol, .code li { + color: #dadada; +} +.code img{ + /* width: 80px; height: 80px; */ + width: 25%; +} +.code fieldset{ + margin: 1px; + border-color: #dadada; + border-style: groove; +} +.code fieldset legend { + text-transform: uppercase; + font-weight: bold; + font-size: 90%; + color: #d3ebff; +} +.code label{ + color: #d3ebff; +} +.code.details{ + height: 750px; +} +.code.plan { + height: 1150px; +} +.code.info{ + text-align: center; + height: 250px; +} +.code.showtimes{ + height: 600px; +} + + +/* BlockQuotes */ +.blockquote { + border-left: solid 4px #dadada; + margin: 0 0 2em 0; + margin-top: 10px; + padding: 0.5em 0 0.5em 2em; +} +.blockquote.bio { + height: 250px; +} + +/* Sketches */ +.sketches { + text-align: center; + display: block; + line-height: 1.25em; + padding: 1em 1em; + overflow-x: auto; + background: #1f2c3d; + border-radius: 3px; + height: 680px; +} +.sketches h1, .sketches h2, .sketches h3, .sketches h4, .sketches p { + color: #dadada; +} +.sketches img { + width: 550px; + height: 550px; +} +.sketches .description { + color: #d3ebff; +} +/* Responsive layout */ +@media (max-width: 1500px) { + .column.side .sketches, .column.middle .sketches { + width: 100%; + height: 500px; + } + .column.side .sketches img, .column.middle .sketches img { + width: 100%; + height: 75%; + } +} +@media (max-width: 1150px) { + .sketches img { + width: 100%; + height: 75%; + } +} + +/* Text Box */ +.textbox { + color: #d3ebff; + padding: 15px 15px 10px 15px; + margin: 10px 0 10px; + overflow: hidden; + border-radius: 25px 0px 25px 0px; + border: 2px solid #d3ebff; +} +.textbox h1, .textbox h2, .textbox h3 { + color: #d3ebff; + text-align: left; +} + +/* Galery */ +.galery { + box-sizing: border-box; +} +.galery .columna { + margin-top: 10px; + float: left; + width: 50%; + padding-right: 10px; +} +.galery .fila::after { + content: ""; + clear: both; + display: table; +} +.galery .image img { + width: 100%; +} +.galery .image.main img { + width: 100%; +} + + +/* Percentage bar */ +.bar { + height: 15px; + line-height: 15px; + font-size: 13px; + font-weight: bold; + width: 100%; + color: #00020f; + background-color: #d3ebff; + text-align: right; +} +.bar.seventyfive { + width: 75%; +} +.bar.fifty { + width: 50%; +} +.bar.twentyfive { + width: 25%; +} + +/* Timeline Image */ +.timeline h2 { + padding-top: 50px; +} +.timeline img{ + width: 100%; + text-align: center; + padding-bottom: 50px; + padding-left: 15px; + padding-right: 15px; +} + +/* Sidebars */ +.sidebar.left { + padding: 5px; + margin-top: 10px; + margin-bottom: 10px; + float: left; + width: 300px; + height: 370PX; + color: #d3ebff; + background-color: #1f2c3d; +} +.sidebar.left a { + color: #d3ebff; + font-weight: bold; + text-decoration: none; +} +.sidebar.left a:hover { + color: #d3ebff; + text-decoration: underline; +} +/* Responsibe sidebar */ +@media (max-width: 1000px) { + .sidebar.left { + width: 100%; + height: 100%; + } +} + + +/* Form */ +form { + margin: auto; + width: 65%; +} + +form h1, h2, h3, h4 { + color: #363636; +} + +label { + text-align: center; + font-weight: bold; +} + +input, textarea { + width: 100%; + height: 27px; + border: 1px solid #000000; + padding: 10px; + margin-top: 5px; + font-size: 15px; +} + +textarea { + width: 100%; + height: 150px; +} + +#radio, #checkbox { + width: auto; + height: 15px; + cursor: pointer; +} + +.verify { + font-size: 11px; +} +.verify a { + color: #1f2c3d; +} +.verify a:hover { + color: rgb(138, 150, 32); +} + +#submit, #register { + width: 100%; + height: 35px; + border: 1px solid #000000; + padding: 5px; + margin-top: 5px; + font-size: 15px; + font-weight: bold; + box-shadow: 2px 2px #1f2c3d; + filter: brightness(105%); + cursor: pointer; +} +#submit:hover, #register:hover { + background-color: #d3ebff; +} + +#reset { + width: 100%; + height: 30px; + border: 1px solid #dadada; + background-color: #00020f; + color: #dadada; + padding: 5px; + margin-top: 5px; + font-size: 12px; + font-weight: bold; + box-shadow: 2px 2px #1f2c3d; + cursor: pointer; +} +#reset:hover { + border:#000000; + background-color: #791515; +} +.file{ + margin-top: 10px; +} +.file input{ + height: 110%; +} + +/* Preformatted Text */ +pre { + font-weight: bold; +} + +fieldset pre { + color: red; +} + +/* Footer */ +footer { + text-align: left; + background-color: #1f2c3d; + color: #dadada; + padding: 20px; + margin-top: 100px; + width: 100%; + height: 80px; +} +.footer { + text-align: right; +} +footer button { + display: inline-block; + margin: 1px; + width: 115px; + height: 25px; + padding: 0px 0px; + text-align: center; + font-weight: bold; + position: relative; +} +@media (max-width: 500px) { + footer { + width: 100%; + height: 100%; + } +} \ No newline at end of file diff --git a/assets/css/manager.css b/assets/css/manager.css new file mode 100644 index 0000000..0e6cfb0 --- /dev/null +++ b/assets/css/manager.css @@ -0,0 +1,68 @@ +h3.table_title{ + text-align: center; + margin-bottom: 1em; +} + +table.seat { + border: solid 10px #1f2c3d; + text-align: center; + background-color: rgba(215, 215, 215, 1); +} + +table.seat tbody tr:nth-child(2n + 1) { + background-color: rgba(204, 255, 204, 0); +} + +table.seat th{ + font-size: 0.9em; + padding: 0.30em 0.30em 0.30em 0.30em; + border-bottom: solid 2px #1f2c3d; +} + +table.seat th:first-child { + border-right: solid 2px #1f2c3d; +} + +table.seat td { + padding: 0.35em 0.35em; +} + +table.seat td:first-child { + font-size: 0.9em; + padding: 0.30em 0.30em 0.30em 0.30em; + font-weight: 600; + border-right: solid 2px #1f2c3d; +} + +.check_box { + display:none; +} + +.check_box+label{ + background:url('../../img/seat_red.png') no-repeat; + height: 16px; + width: 16px; + display:inline-block; +} + +.check_box:checked+label{ + background:url('../../img/seat_green.png') no-repeat; +} + +.black.button { + width: 100%; + height: 30px; + border: 1px solid #dadada; + background-color: #00020f; + color: #dadada; + padding: 5px; + margin-top: 5px; + font-size: 12px; + font-weight: bold; + box-shadow: 2px 2px #1f2c3d; + cursor: pointer; +} +.black.button:hover { + border:#000000; + background-color: #791515; +} \ No newline at end of file diff --git a/assets/index.php b/assets/index.php new file mode 100644 index 0000000..b6c0681 --- /dev/null +++ b/assets/index.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/assets/js/cambiarCSS.js b/assets/js/cambiarCSS.js new file mode 100644 index 0000000..404ca62 --- /dev/null +++ b/assets/js/cambiarCSS.js @@ -0,0 +1,3 @@ +function cambiarCSS(nuevo){ + document.getElementById('estilo').setAttribute('href', nuevo); +} \ No newline at end of file diff --git a/assets/mysql/complucine.sql b/assets/mysql/complucine.sql new file mode 100644 index 0000000..e89a9eb --- /dev/null +++ b/assets/mysql/complucine.sql @@ -0,0 +1,598 @@ +-- phpMyAdmin SQL Dump +-- version 4.6.6deb5 +-- https://www.phpmyadmin.net/ +-- +-- Servidor: localhost:3306 +-- Tiempo de generación: 14-05-2021 a las 11:28:23 +-- Versión del servidor: 10.0.28-MariaDB-2+b1 +-- Versión de PHP: 7.3.27-1~deb10u1 + +SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; +SET time_zone = "+00:00"; + + +/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; +/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; +/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; +/*!40101 SET NAMES utf8mb4 */; + +-- +-- Base de datos: `complucine` +-- + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `admin` +-- + +CREATE TABLE `admin` ( + `id` int(15) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `cinema` +-- + +CREATE TABLE `cinema` ( + `id` int(15) UNSIGNED NOT NULL, + `name` varchar(10) NOT NULL, + `direction` varchar(120) NOT NULL, + `phone` varchar(10) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `cinema` +-- + +INSERT INTO `cinema` (`id`, `name`, `direction`, `phone`) VALUES +(1, 'Cinema 1st', 'Calle de ejemplo 111', '77777777'), +(3, 'Cinema 2st', 'Calle falsa 123', '123456789'); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `film` +-- + +CREATE TABLE `film` ( + `id` int(15) UNSIGNED NOT NULL, + `tittle` varchar(60) NOT NULL, + `duration` int(3) UNSIGNED NOT NULL, + `language` varchar(30) NOT NULL, + `description` text NOT NULL, + `img` varchar(60) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `film` +-- + +INSERT INTO `film` (`id`, `tittle`, `duration`, `language`, `description`, `img`) VALUES +(1, 'iron_man', 120, 'spanish', 'Un empresario millonario construye un traje blindado y lo usa para combatir el crimen y el terrorismo.', ''), +(2, 'iron_man_2', 120, 'spanish', 'Con el mundo ahora consciente de que él es Iron Man, el millonario inventor Tony Stark debe forjar nuevas alianzas y confrontar a un enemigo nuevo y poderoso.', ''), +(3, 'iron_man_3', 120, 'spanish', 'El descarado y brillante Tony Stark, tras ver destruido todo su universo personal, debe encontrar y enfrentarse a un enemigo cuyo poder no conoce límites. Este viaje pondrá a prueba su entereza una y otra vez, y le obligará a confiar en su ingenio.', ''), +(4, 'capitan_america_el_primer_vengador', 120, 'spanish', 'Tras tres meses de someterse a un programa de entrenamiento físico y táctico, encomiendan a Steve Rogers su primera misión como Capitán América. Armado con un escudo indestructible, emprende la guerra contra la perversa organización HYDRA.', ''), +(5, 'capitan_america_el_soldado_de_invierno', 120, 'spanish', 'Capitán América, Viuda Negra y un nuevo aliado, Falcon, se enfrentan a un enemigo inesperado mientras intentan exponer una conspiración que pone en riesgo al mundo.', ''), +(6, 'capitan_america_civil_war', 180, 'spanish', 'Después de que otro incidente internacional, en el que se ven envueltos los Vengadores, produzca daños colaterales, la presión política obliga a poner en marcha un sistema para depurar responsabilidades.', ''), +(7, 'marvel_avengers', 120, 'spanish', 'El director de la Agencia SHIELD decide reclutar a un equipo para salvar al mundo de un desastre casi seguro cuando un enemigo inesperado surge como una gran amenaza para la seguridad mundial.', ''), +(8, 'avengers_age_of_ultron', 120, 'spanish', 'Los Vengadores se reúnen de nuevo y juntan sus fuerzas con las de los recién llegados Quicksilver y Bruja Escarlata para luchar contra un robot maquiavélico llamado Ultrón, el cual Tony Stark creó con el fin de defender la paz, pero resultó defectuoso y ahora pretende exterminar a toda la humanidad.', ''), +(9, 'avengers_inifinity_war', 180, 'spanish', 'Los superhéroes se alían para vencer al poderoso Thanos, el peor enemigo al que se han enfrentado. Si Thanos logra reunir las seis gemas del infinito: poder, tiempo, alma, realidad, mente y espacio, nadie podrá detenerlo.', ''), +(10, 'avengers_end_game', 180, 'spanish', 'Los Vengadores restantes deben encontrar una manera de recuperar a sus aliados para un enfrentamiento épico con Thanos, el malvado que diezmó el planeta y el universo.', ''); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `hall` +-- + +CREATE TABLE `hall` ( + `number` int(15) UNSIGNED NOT NULL, + `idcinema` int(15) UNSIGNED NOT NULL, + `numrows` int(3) NOT NULL, + `numcolumns` int(3) NOT NULL, + `total_seats` int(3) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `hall` +-- + +INSERT INTO `hall` (`number`, `idcinema`, `numrows`, `numcolumns`, `total_seats`) VALUES +(1, 1, 12, 8, 60), +(2, 1, 14, 8, 97); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `manager` +-- + +CREATE TABLE `manager` ( + `id` int(15) UNSIGNED NOT NULL, + `idcinema` int(15) UNSIGNED NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `manager` +-- + +INSERT INTO `manager` (`id`, `idcinema`) VALUES +(1, 1); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `promotion` +-- + +CREATE TABLE `promotion` ( + `id` int(15) UNSIGNED NOT NULL, + `tittle` varchar(30) NOT NULL, + `description` text NOT NULL, + `code` varchar(15) NOT NULL, + `active` tinyint(1) NOT NULL DEFAULT '1' +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `promotion` +-- + +INSERT INTO `promotion` (`id`, `tittle`, `description`, `code`, `active`) VALUES +(1, '3x2', 'en entradas', '000001A', 0), +(2, 'Promocion de ejemplo', 'Esto es un ejemplo', '1234', 0); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `purchase` +-- + +CREATE TABLE `purchase` ( + `iduser` int(15) UNSIGNED NOT NULL, + `idsession` int(15) UNSIGNED NOT NULL, + `idhall` int(15) UNSIGNED NOT NULL, + `idcinema` int(15) UNSIGNED NOT NULL, + `numrow` int(3) UNSIGNED NOT NULL, + `numcolum` int(3) UNSIGNED NOT NULL, + `time_purchase` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `seat` +-- + +CREATE TABLE `seat` ( + `idhall` int(15) UNSIGNED NOT NULL, + `idcinema` int(15) UNSIGNED NOT NULL, + `numrow` int(3) UNSIGNED NOT NULL, + `numcolum` int(3) UNSIGNED NOT NULL, + `active` tinyint(1) NOT NULL DEFAULT '1' +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `seat` +-- + +INSERT INTO `seat` (`idhall`, `idcinema`, `numrow`, `numcolum`, `active`) VALUES +(1, 1, 1, 1, 0), +(1, 1, 1, 2, 0), +(1, 1, 1, 3, 0), +(1, 1, 1, 4, -1), +(1, 1, 1, 5, -1), +(1, 1, 1, 6, 0), +(1, 1, 1, 7, 0), +(1, 1, 1, 8, 0), +(1, 1, 2, 1, 0), +(1, 1, 2, 2, 0), +(1, 1, 2, 3, 0), +(1, 1, 2, 4, -1), +(1, 1, 2, 5, -1), +(1, 1, 2, 6, 0), +(1, 1, 2, 7, 0), +(1, 1, 2, 8, 0), +(1, 1, 3, 1, 0), +(1, 1, 3, 2, 0), +(1, 1, 3, 3, 0), +(1, 1, 3, 4, -1), +(1, 1, 3, 5, -1), +(1, 1, 3, 6, 0), +(1, 1, 3, 7, 0), +(1, 1, 3, 8, 0), +(1, 1, 4, 1, -1), +(1, 1, 4, 2, -1), +(1, 1, 4, 3, -1), +(1, 1, 4, 4, -1), +(1, 1, 4, 5, -1), +(1, 1, 4, 6, -1), +(1, 1, 4, 7, -1), +(1, 1, 4, 8, -1), +(1, 1, 5, 1, -1), +(1, 1, 5, 2, -1), +(1, 1, 5, 3, -1), +(1, 1, 5, 4, -1), +(1, 1, 5, 5, -1), +(1, 1, 5, 6, -1), +(1, 1, 5, 7, -1), +(1, 1, 5, 8, -1), +(1, 1, 6, 1, 0), +(1, 1, 6, 2, 0), +(1, 1, 6, 3, 0), +(1, 1, 6, 4, -1), +(1, 1, 6, 5, -1), +(1, 1, 6, 6, 0), +(1, 1, 6, 7, 0), +(1, 1, 6, 8, 0), +(1, 1, 7, 1, 0), +(1, 1, 7, 2, 0), +(1, 1, 7, 3, 0), +(1, 1, 7, 4, -1), +(1, 1, 7, 5, -1), +(1, 1, 7, 6, 0), +(1, 1, 7, 7, 0), +(1, 1, 7, 8, 0), +(1, 1, 8, 1, 0), +(1, 1, 8, 2, 0), +(1, 1, 8, 3, 0), +(1, 1, 8, 4, -1), +(1, 1, 8, 5, -1), +(1, 1, 8, 6, 0), +(1, 1, 8, 7, 0), +(1, 1, 8, 8, 0), +(1, 1, 9, 1, 0), +(1, 1, 9, 2, 0), +(1, 1, 9, 3, 0), +(1, 1, 9, 4, -1), +(1, 1, 9, 5, -1), +(1, 1, 9, 6, 0), +(1, 1, 9, 7, 0), +(1, 1, 9, 8, 0), +(1, 1, 10, 1, 0), +(1, 1, 10, 2, 0), +(1, 1, 10, 3, 0), +(1, 1, 10, 4, -1), +(1, 1, 10, 5, -1), +(1, 1, 10, 6, 0), +(1, 1, 10, 7, 0), +(1, 1, 10, 8, 0), +(1, 1, 11, 1, 0), +(1, 1, 11, 2, 0), +(1, 1, 11, 3, 0), +(1, 1, 11, 4, -1), +(1, 1, 11, 5, -1), +(1, 1, 11, 6, 0), +(1, 1, 11, 7, 0), +(1, 1, 11, 8, 0), +(1, 1, 12, 1, 0), +(1, 1, 12, 2, 0), +(1, 1, 12, 3, 0), +(1, 1, 12, 4, -1), +(1, 1, 12, 5, -1), +(1, 1, 12, 6, 0), +(1, 1, 12, 7, 0), +(1, 1, 12, 8, 0), +(2, 1, 1, 1, 1), +(2, 1, 1, 2, 1), +(2, 1, 1, 3, 1), +(2, 1, 1, 4, 1), +(2, 1, 1, 5, 1), +(2, 1, 1, 6, 1), +(2, 1, 1, 7, 1), +(2, 1, 1, 8, 1), +(2, 1, 2, 1, 1), +(2, 1, 2, 2, 1), +(2, 1, 2, 3, 1), +(2, 1, 2, 4, 1), +(2, 1, 2, 5, 1), +(2, 1, 2, 6, 1), +(2, 1, 2, 7, 1), +(2, 1, 2, 8, 1), +(2, 1, 3, 1, 1), +(2, 1, 3, 2, -1), +(2, 1, 3, 3, -1), +(2, 1, 3, 4, -1), +(2, 1, 3, 5, 1), +(2, 1, 3, 6, 1), +(2, 1, 3, 7, 1), +(2, 1, 3, 8, 1), +(2, 1, 4, 1, 1), +(2, 1, 4, 2, -1), +(2, 1, 4, 3, -1), +(2, 1, 4, 4, -1), +(2, 1, 4, 5, 1), +(2, 1, 4, 6, 1), +(2, 1, 4, 7, 1), +(2, 1, 4, 8, 1), +(2, 1, 5, 1, 1), +(2, 1, 5, 2, -1), +(2, 1, 5, 3, -1), +(2, 1, 5, 4, -1), +(2, 1, 5, 5, 1), +(2, 1, 5, 6, 1), +(2, 1, 5, 7, 1), +(2, 1, 5, 8, 1), +(2, 1, 6, 1, 1), +(2, 1, 6, 2, 1), +(2, 1, 6, 3, 1), +(2, 1, 6, 4, 1), +(2, 1, 6, 5, 1), +(2, 1, 6, 6, 1), +(2, 1, 6, 7, 1), +(2, 1, 6, 8, 1), +(2, 1, 7, 1, 1), +(2, 1, 7, 2, 1), +(2, 1, 7, 3, 1), +(2, 1, 7, 4, 1), +(2, 1, 7, 5, -1), +(2, 1, 7, 6, -1), +(2, 1, 7, 7, 1), +(2, 1, 7, 8, 1), +(2, 1, 8, 1, 1), +(2, 1, 8, 2, 1), +(2, 1, 8, 3, 1), +(2, 1, 8, 4, 1), +(2, 1, 8, 5, -1), +(2, 1, 8, 6, -1), +(2, 1, 8, 7, 1), +(2, 1, 8, 8, 1), +(2, 1, 9, 1, 1), +(2, 1, 9, 2, 1), +(2, 1, 9, 3, 1), +(2, 1, 9, 4, 1), +(2, 1, 9, 5, -1), +(2, 1, 9, 6, -1), +(2, 1, 9, 7, 1), +(2, 1, 9, 8, 1), +(2, 1, 10, 1, 1), +(2, 1, 10, 2, 1), +(2, 1, 10, 3, 1), +(2, 1, 10, 4, 1), +(2, 1, 10, 5, 1), +(2, 1, 10, 6, 1), +(2, 1, 10, 7, 1), +(2, 1, 10, 8, 1), +(2, 1, 11, 1, 1), +(2, 1, 11, 2, 1), +(2, 1, 11, 3, 1), +(2, 1, 11, 4, 1), +(2, 1, 11, 5, 1), +(2, 1, 11, 6, 1), +(2, 1, 11, 7, 1), +(2, 1, 11, 8, 1), +(2, 1, 12, 1, 1), +(2, 1, 12, 2, 1), +(2, 1, 12, 3, 1), +(2, 1, 12, 4, 1), +(2, 1, 12, 5, 1), +(2, 1, 12, 6, 1), +(2, 1, 12, 7, 1), +(2, 1, 12, 8, 1), +(2, 1, 13, 1, 1), +(2, 1, 13, 2, 1), +(2, 1, 13, 3, 1), +(2, 1, 13, 4, 1), +(2, 1, 13, 5, 1), +(2, 1, 13, 6, 1), +(2, 1, 13, 7, 1), +(2, 1, 13, 8, 1), +(2, 1, 14, 1, 1), +(2, 1, 14, 2, 1), +(2, 1, 14, 3, 1), +(2, 1, 14, 4, 1), +(2, 1, 14, 5, 1), +(2, 1, 14, 6, 1), +(2, 1, 14, 7, 1), +(2, 1, 14, 8, 1); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `session` +-- + +CREATE TABLE `session` ( + `id` int(15) UNSIGNED NOT NULL, + `idfilm` int(15) UNSIGNED NOT NULL, + `idhall` int(15) UNSIGNED NOT NULL, + `idcinema` int(15) UNSIGNED NOT NULL, + `date` date NOT NULL, + `start_time` time NOT NULL, + `seat_price` float NOT NULL, + `format` varchar(20) NOT NULL, + `seats_full` int(3) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +-- +-- Volcado de datos para la tabla `session` +-- + +INSERT INTO `session` (`id`, `idfilm`, `idhall`, `idcinema`, `date`, `start_time`, `seat_price`, `format`, `seats_full`) VALUES +(19, 1, 2, 1, '2021-05-14', '19:00:00', 12, '2d', 0), +(20, 1, 2, 1, '2021-05-15', '19:00:00', 12, '2d', 0); + +-- -------------------------------------------------------- + +-- +-- Estructura de tabla para la tabla `users` +-- + +CREATE TABLE `users` ( + `id` int(15) UNSIGNED NOT NULL, + `username` varchar(10) NOT NULL, + `email` varchar(30) NOT NULL, + `passwd` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL, + `rol` varchar(7) NOT NULL +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Usuarios'; + +-- +-- Volcado de datos para la tabla `users` +-- + +INSERT INTO `users` (`id`, `username`, `email`, `passwd`, `rol`) VALUES +(0, 'admin', 'admin@complucine.sytes.net', 'shDBCKnEbWZFc', 'admin'), +(1, 'manager', 'manager@complucine.sytes.net', 'shTS9RK/eJPoQ', 'manager'), +(2, 'user', 'user@complucine.sytes.net', 'shO5etd.DYKWg', 'user'), +(7, 'fernando', 'fer@complucine.sytes.net', '$2y$10$/3yjEh4d7AOY3RyNjXIIkO5H2hg7/kiHiToJa92tCBPd7s3UPtB.G', 'user'), +(63, 'user2', 'user2@ucm.es', '$2y$10$Alopov4Z1HPW9i9PqQ/APedPoU.N/zc3XlRfIfSkwPCQCKI.qTp5u', 'user'); + +-- +-- Índices para tablas volcadas +-- + +-- +-- Indices de la tabla `admin` +-- +ALTER TABLE `admin` + ADD KEY `PK_A_USER` (`id`); + +-- +-- Indices de la tabla `cinema` +-- +ALTER TABLE `cinema` + ADD PRIMARY KEY (`id`); + +-- +-- Indices de la tabla `film` +-- +ALTER TABLE `film` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `U_TITTLE_LANGUAGE` (`tittle`,`language`); + +-- +-- Indices de la tabla `hall` +-- +ALTER TABLE `hall` + ADD PRIMARY KEY (`number`,`idcinema`), + ADD KEY `FK_CINEMA` (`idcinema`); + +-- +-- Indices de la tabla `manager` +-- +ALTER TABLE `manager` + ADD KEY `PK_M_USER` (`id`), + ADD KEY `PK_M_CINEMA` (`idcinema`); + +-- +-- Indices de la tabla `promotion` +-- +ALTER TABLE `promotion` + ADD PRIMARY KEY (`id`); + +-- +-- Indices de la tabla `purchase` +-- +ALTER TABLE `purchase` + ADD KEY `PK_P_SEAT` (`idhall`,`numrow`,`numcolum`), + ADD KEY `FK_P_SESSION` (`idsession`), + ADD KEY `FK_P_USER` (`iduser`), + ADD KEY `FK_P_SEAT` (`idhall`,`idcinema`,`numrow`,`numcolum`); + +-- +-- Indices de la tabla `seat` +-- +ALTER TABLE `seat` + ADD PRIMARY KEY (`idhall`,`numrow`,`numcolum`), + ADD KEY `FK_HALL` (`idhall`,`idcinema`); + +-- +-- Indices de la tabla `session` +-- +ALTER TABLE `session` + ADD PRIMARY KEY (`id`), + ADD KEY `FK_FILM` (`idfilm`), + ADD KEY `FK_HALL_` (`idhall`,`idcinema`); + +-- +-- Indices de la tabla `users` +-- +ALTER TABLE `users` + ADD PRIMARY KEY (`id`), + ADD UNIQUE KEY `email` (`email`), + ADD UNIQUE KEY `username_2` (`username`), + ADD KEY `username` (`username`); + +-- +-- AUTO_INCREMENT de las tablas volcadas +-- + +-- +-- AUTO_INCREMENT de la tabla `cinema` +-- +ALTER TABLE `cinema` + MODIFY `id` int(15) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; +-- +-- AUTO_INCREMENT de la tabla `film` +-- +ALTER TABLE `film` + MODIFY `id` int(15) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; +-- +-- AUTO_INCREMENT de la tabla `hall` +-- +ALTER TABLE `hall` + MODIFY `number` int(15) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; +-- +-- AUTO_INCREMENT de la tabla `promotion` +-- +ALTER TABLE `promotion` + MODIFY `id` int(15) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; +-- +-- AUTO_INCREMENT de la tabla `session` +-- +ALTER TABLE `session` + MODIFY `id` int(15) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21; +-- +-- AUTO_INCREMENT de la tabla `users` +-- +ALTER TABLE `users` + MODIFY `id` int(15) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65; +-- +-- Restricciones para tablas volcadas +-- + +-- +-- Filtros para la tabla `admin` +-- +ALTER TABLE `admin` + ADD CONSTRAINT `PK_A_USER` FOREIGN KEY (`id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; + +-- +-- Filtros para la tabla `hall` +-- +ALTER TABLE `hall` + ADD CONSTRAINT `FK_CINEMA` FOREIGN KEY (`idcinema`) REFERENCES `cinema` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; + +-- +-- Filtros para la tabla `manager` +-- +ALTER TABLE `manager` + ADD CONSTRAINT `PK_M_CINEMA` FOREIGN KEY (`idcinema`) REFERENCES `cinema` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + ADD CONSTRAINT `PK_M_USER` FOREIGN KEY (`id`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; + +-- +-- Filtros para la tabla `purchase` +-- +ALTER TABLE `purchase` + ADD CONSTRAINT `FK_P_SEAT` FOREIGN KEY (`idhall`,`idcinema`,`numrow`,`numcolum`) REFERENCES `seat` (`idhall`, `idcinema`, `numrow`, `numcolum`) ON DELETE CASCADE ON UPDATE CASCADE, + ADD CONSTRAINT `FK_P_SESSION` FOREIGN KEY (`idsession`) REFERENCES `session` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + ADD CONSTRAINT `FK_P_USER` FOREIGN KEY (`iduser`) REFERENCES `users` (`id`) ON DELETE CASCADE ON UPDATE CASCADE; + +-- +-- Filtros para la tabla `seat` +-- +ALTER TABLE `seat` + ADD CONSTRAINT `FK_HALL` FOREIGN KEY (`idhall`,`idcinema`) REFERENCES `hall` (`number`, `idcinema`) ON DELETE CASCADE ON UPDATE CASCADE; + +-- +-- Filtros para la tabla `session` +-- +ALTER TABLE `session` + ADD CONSTRAINT `FK_FILM` FOREIGN KEY (`idfilm`) REFERENCES `film` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, + ADD CONSTRAINT `FK_HALL_` FOREIGN KEY (`idhall`,`idcinema`) REFERENCES `hall` (`number`, `idcinema`) ON DELETE CASCADE ON UPDATE CASCADE; + +/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; +/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; +/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; diff --git a/assets/php/HTMLtemplate.php b/assets/php/HTMLtemplate.php new file mode 100644 index 0000000..9c7a654 --- /dev/null +++ b/assets/php/HTMLtemplate.php @@ -0,0 +1,34 @@ + + + + + print_head(); + ?> + + + print_header(); + ?> + + + print_main($content); + ?> + + + print_section($section); + ?> + + + print_footer(); + ?> + + + \ No newline at end of file diff --git a/assets/php/aplication.php b/assets/php/aplication.php new file mode 100644 index 0000000..63b7697 --- /dev/null +++ b/assets/php/aplication.php @@ -0,0 +1,138 @@ +Aplicacion. + * + * @return Applicacion Obtiene la única instancia de la Aplicacion + */ + public static function getSingleton() { + if ( !self::$instancia instanceof self) { + self::$instancia = new self; + } + return self::$instancia; + } + + /** + * @var array Almacena los datos de configuración de la BD + */ + private $bdDatosConexion; + + /** + * Almacena si la Aplicacion ya ha sido inicializada. + * + * @var boolean + */ + private $inicializada = false; + + /** + * @var \mysqli Conexión de BD. + */ + private $conn; + + /** + * Evita que se pueda instanciar la clase directamente. + */ + private function __construct() {} + + /** + * Evita que se pueda utilizar el operador clone. + */ + public function __clone() { + throw new \Exception('No tiene sentido el clonado.'); + } + + + /** + * Evita que se pueda utilizar serialize(). + */ + public function __sleep() { + throw new \Exception('No tiene sentido el serializar el objeto.'); + } + + /** + * Evita que se pueda utilizar unserialize(). + */ + public function __wakeup() { + throw new \Exception('No tiene sentido el deserializar el objeto.'); + } + + /** + * Inicializa la aplicación. + * + * @param array $bdDatosConexion datos de configuración de la BD + */ + public function init($bdDatosConexion) { + if ( ! $this->inicializada ) { + $this->bdDatosConexion = $bdDatosConexion; + if ( $this->is_session_started() === FALSE ) session_start(); + $this->inicializada = true; + } + } + + /** + * Inicia la sesión, si esta no se había iniciado. + */ + protected function is_session_started(){ + if ( php_sapi_name() !== 'cli' ) { + if ( version_compare(phpversion(), '5.4.0', '>=') ) { + return session_status() === PHP_SESSION_ACTIVE ? TRUE : FALSE; + } else { + return session_id() === '' ? FALSE : TRUE; + } + } + return FALSE; + } + + /** + * Cierre de la aplicación. + */ + public function shutdown() { + $this->compruebaInstanciaInicializada(); + if ($this->conn !== null) { + $this->conn->close(); + } + } + + /** + * Comprueba si la aplicación está inicializada. Si no lo está muestra un mensaje y termina la ejecución. + */ + private function compruebaInstanciaInicializada() { + if (! $this->inicializada ) { + echo "ERROR 403: app_not_configured."; + exit(); + } + } + + /** + * Devuelve una conexión a la BD. Se encarga de que exista como mucho una conexión a la BD por petición. + * + * @return \mysqli Conexión a MySQL. + */ + public function conexionBd() { + $this->compruebaInstanciaInicializada(); + if (! $this->conn ) { + $bdHost = $this->bdDatosConexion['host']; + $bdUser = $this->bdDatosConexion['user']; + $bdPass = $this->bdDatosConexion['pass']; + $bd = $this->bdDatosConexion['bd']; + + $this->conn = new \mysqli($bdHost, $bdUser, $bdPass, $bd); + if ( $this->conn->connect_errno ) { + echo "Error de conexión a la BD: (" . $this->conn->connect_errno . ") " . utf8_encode($this->conn->connect_error); + exit(); + } + if ( ! $this->conn->set_charset("utf8mb4")) { + echo "Error al configurar la codificación de la BD: (" . $this->conn->errno . ") " . utf8_encode($this->conn->error); + exit(); + } + } + return $this->conn; + } +} \ No newline at end of file diff --git a/assets/php/common/cinema.php b/assets/php/common/cinema.php new file mode 100644 index 0000000..e23c70f --- /dev/null +++ b/assets/php/common/cinema.php @@ -0,0 +1,32 @@ +_id = $id; + $this->_name = $name; + $this->_direction = $direction; + $this->_phone = $phone; + } + + //Methods: + + //Getters && Setters: + public function setId($id){ $this->_id = $id; } + public function getId(){ return $this->_id; } + public function setName($name){ $this->_name = $name; } + public function getName(){ return $this->_name; } + public function setDirection($direction){ $this->_direction = $direction; } + public function getDirection(){ return $this->_direction; } + public function setPhone($phone){$this->_phone = $phone; } + public function getPhone(){ return $this->_phone; } + } +?> \ No newline at end of file diff --git a/assets/php/common/cinema_dao.php b/assets/php/common/cinema_dao.php new file mode 100644 index 0000000..4da8133 --- /dev/null +++ b/assets/php/common/cinema_dao.php @@ -0,0 +1,77 @@ +mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + + //Returns a query to get All the films. + public function allCinemaData(){ + $sql = sprintf( "SELECT * FROM cinema "); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + while($fila=$resul->fetch_assoc()){ + $films[] = $this->loadCinema($fila["id"], $fila["name"], $fila["direction"], $fila["phone"]); + } + $resul->free(); + return $films; + } + + //Returns a film data . + public function GetCinema($name,$direction){ + $sql = sprintf( "SELECT * FROM cinema WHERE cinema.name = '%s'AND cinema.direction='%s'", $name,$direction ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Returns a film data . + public function cinemaData($id){ + $sql = sprintf( "SELECT * FROM cinema WHERE cinema.id = '%d'", $id); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Deleted film by "id". + public function deleteCinema($id){ + $sql = sprintf( "DELETE FROM cinema WHERE cinema.id = '%d' ;",$id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Edit a film. + public function editCinema($id, $name, $direction, $phone){ + $sql = sprintf( "UPDATE cinema SET name = '%s' , direction = '%s', phone ='%s' + WHERE cinema.id = '%d';", + $name, $direction, $phone, $id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Create a new film Data Transfer Object. + public function loadCinema($id, $name, $direction, $phone){ + return new Cinema($id, $name, $direction, $phone); + } + + } + +?> diff --git a/assets/php/common/film.php b/assets/php/common/film.php new file mode 100644 index 0000000..f34a40d --- /dev/null +++ b/assets/php/common/film.php @@ -0,0 +1,39 @@ +_id = $id; + $this->_tittle = $tittle; + $this->_duration = $duration; + $this->_language = $language; + $this->_description = $description; + $this->_img = $img; + } + + //Methods: + + //Getters && Setters: + public function setId($id){ $this->_id = $id; } + public function getId(){ return $this->_id; } + public function setTittle($tittle) {$this->_tittle = $tittle; } + public function getTittle(){return $this->_tittle;} + public function setDuration($duration){$this->_duration = $duration; } + public function getDuration() {return $this->_duration;} + public function setLanguage($language) {$this->_language = $language; } + public function getLanguage(){return $this->_language;} + public function setDescription($description){ $this->_description = $description;} + public function getDescription(){return $this->_description;} + public function setImg($img){ $this->_img = $img;} + public function getImg(){return $this->_img;} + } +?> \ No newline at end of file diff --git a/assets/php/common/film_dao.php b/assets/php/common/film_dao.php new file mode 100644 index 0000000..646848c --- /dev/null +++ b/assets/php/common/film_dao.php @@ -0,0 +1,100 @@ +mysqli, $sql) or die ('Error into query database'); + return $resul; + } + //Returns a film data . + public function GetFilm($tittle,$language){ + $sql = sprintf( "SELECT * FROM film WHERE film.tittle = '%s'AND film.language='%s'", $tittle,$language ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Returns a query to get the film's data. + public function FilmData($id){ + $sql = sprintf( "SELECT * FROM film WHERE id = '%d'", $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Returns a query to get All the films. + public function allFilmData(){ + $sql = sprintf( "SELECT * FROM film "); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + while($fila=$resul->fetch_assoc()){ + $films[] = $this->loadFilm($fila["id"], $fila["tittle"], $fila["duration"], $fila["language"], $fila["description"], $fila["img"]); + } + $resul->free(); + return $films; + } + + + //Returns a query to get all films tittles. + public function tittleFilmData(){ + $sql = sprintf( "SELECT DISTINCT tittle FROM film "); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Returns a query to get all films descriptions. + public function descriptionFilmData(){ + $sql = sprintf( "SELECT description FROM film "); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + /* + public function addFilm($films) { + $resul = mysqli_query($this->mysqli, $this->createFilm($film.getId(), $film.getTittle(), $film.getDuration(), $film.getLanguage(), $film.getDescription())) or die ('Error into query database'); + return $resul; + } + */ + + //Deleted film by "id". + public function deleteFilm($id){ + $sql = sprintf( "DELETE FROM film WHERE film.id = '%d' ;",$id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Edit a film. + public function editFilm($id, $tittle, $duration, $language,$description,$img){ + $sql = sprintf( "UPDATE film SET tittle = '%s' , duration = '%d', language ='%s' , description ='%s', img ='%s' + WHERE film.id = '%d';", + $tittle, $duration, $language, $description, $img, $id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Create a new film Data Transfer Object. + public function loadFilm($id, $tittle, $duration, $language,$description, $img){ + return new Film( $id, $tittle, $duration, $language,$description, $img); + } + + } + +?> diff --git a/assets/php/common/hall.php b/assets/php/common/hall.php new file mode 100644 index 0000000..bc22af9 --- /dev/null +++ b/assets/php/common/hall.php @@ -0,0 +1,103 @@ +_number = $number; + $this->_idcinema = $idcinema; + $this->_numRows = $numRows; + $this->_numCol = $numCol; + $this->_total_seats = $total_seats; + $_seats_map = array(); + $_seats_map = $seats_map; + } + + //Methods: + public static function getListHalls($cinema){ + $bd = new HallDAO('complucine'); + if($bd ) + return $bd->getAllHalls($cinema); + } + + public static function create_hall($number, $cinema, $rows, $cols, $seats, $seats_map){ + $bd = new HallDAO('complucine'); + if($bd ){ + if(!$bd->searchHall($number, $cinema)){ + $bd->createHall($number, $cinema, $rows, $cols, $seats, $seats_map); + Seat::createSeats($number, $cinema, $rows, $cols, $seats_map); + return "Se ha creado la sala con exito"; + } else { + return "Esta sala ya existe"; + } + } else { return "Error al conectarse a la base de datos"; } + } + + public static function edit_hall($number, $cinema, $rows, $cols, $seats, $seats_map, $og_number){ + $bd = new HallDAO('complucine'); + if($bd ){ + if($bd->searchHall($og_number, $cinema)){ + if($og_number == $number){ + Seat::deleteAllSeats($number, $cinema); + $bd->editHall($number, $cinema, $rows, $cols, $seats, $og_number); + Seat::createSeats($number, $cinema, $rows, $cols, $seats_map); + return "Se ha editado la sala con exito"; + }else{ + if(!$bd->searchHall($number, $cinema)){ + Seat::deleteAllSeats($og_number, $cinema); + $bd->editHall($number, $cinema, $rows, $cols, $seats, $og_number); + Seat::createSeats($number, $cinema, $rows, $cols, $seats_map); + return "Se ha editado la sala con exito"; + }else + return "El nuevo numero de sala ya existe en otra sala"; + } + } else { + return "La sala a editar no existe"; + } + } else { return "Error al conectarse a la base de datos"; } + } + + public static function delete_hall($number, $cinema, $rows, $cols, $seats, $seats_map, $og_number){ + $bd = new HallDAO('complucine'); + if($bd ){ + if($bd->searchHall($og_number, $cinema)){ + $bd->deleteHall($og_number, $cinema); + Seat::deleteAllSeats($og_number, $cinema); + return "La sala se ha eliminado correctamente"; + } else { + return "La sala a borrar no existe"; + } + } else { return "Error al conectarse a la base de datos"; } + } + + //Getters && Setters: + public function setNumber($number){ $this->_number = $number; } + public function getNumber(){ return $this->_number; } + + public function setIdcinema($idcinema){ $this->_idcinema = $idcinema; } + public function getIdcinema(){ return $this->_idcinema; } + + public function setNumRows($numRows){ $this->_numRows = $numRows; } + public function getNumRows(){ return $this->_numRows; } + + public function setNumCol($numCol){ $this->_numCol = $numCol; } + public function getNumCol(){ return $this->_numCol; } + + public function setTotalSeats($totalSeat){ $this->_total_seats = $totalSeat; } + public function getTotalSeats(){ return $this->_total_seats; } + + public function setSeatsmap($seats_map){ $this->_seats_map = $seats_map; } + public function getSeatsmap(){ return $this->_seats_map; } + + } +?> \ No newline at end of file diff --git a/assets/php/common/hall_dao.php b/assets/php/common/hall_dao.php new file mode 100644 index 0000000..a6d123e --- /dev/null +++ b/assets/php/common/hall_dao.php @@ -0,0 +1,96 @@ +mysqli, $sql) or die ('Error BD createhall'); + + return $sql; + } + + //Returns a query to get the halls data. + public function getAllHalls($cinema){ + $sql = sprintf( "SELECT * FROM hall WHERE + idcinema = '%s'", + $cinema); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + $hall = null; + while($fila=mysqli_fetch_array($resul)){ + $hall[] = $this->loadHall($fila["number"], $fila["idcinema"], $fila["numrows"], $fila["numcolumns"], $fila["total_seats"], null); + } + + mysqli_free_result($resul); + + return $hall; + } + + public function searchHall($number, $cinema){ + + $sql = sprintf( "SELECT * FROM hall WHERE + number = '%s' AND idcinema = '%s'", + $number, $cinema); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + $hall = false; + + if($resul){ + if($resul->num_rows == 1){ + $fila = $resul->fetch_assoc(); + $hall = $this->loadHall($fila["number"], $fila["idcinema"], $fila["numrows"], $fila["numcolumns"], $fila["total_seats"], null); + } + $resul->free(); + } + + return $hall; + } + + + + //Create a new Hall Data Transfer Object. + public function loadHall($number, $idcinema, $numrows, $numcolumns, $total_seats, $seats_map){ + return new Hall($number, $idcinema, $numrows, $numcolumns, $total_seats, $seats_map); + } + + //Edit Hall. + public function editHall($number, $cinema, $rows, $cols, $seats, $og_number){ + + $sql = sprintf( "UPDATE `hall` + SET `number` = '%d' ,`numrows` = '%d' , `numcolumns` = '%d' , `total_seats` = %d + WHERE `hall`.`number` = '%d' AND `hall`.`idcinema` = '%d';", + $number, $rows, $cols, $seats, $og_number, $cinema ); + + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Delete Hall. + public function deleteHall($number, $cinema){ + + $sql = sprintf( "DELETE FROM `hall` WHERE `hall`.`number` = '%d' AND `hall`.`idcinema` = '%d';",$number, $cinema); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + } + +?> \ No newline at end of file diff --git a/assets/php/common/manager.php b/assets/php/common/manager.php new file mode 100644 index 0000000..ccde476 --- /dev/null +++ b/assets/php/common/manager.php @@ -0,0 +1,35 @@ +_id = $id; + $this->_idcinema = $idcinema; + $this->_username = $username; + $this->_email = $email; + $this->_roll = $roll; + } + + //Methods: + + //Getters && Setters: + public function setId($id){ $this->_id = $id; } + public function getId(){ return $this->_id; } + public function setIdcinema($idcinema){ $this->_idcinema = $idcinema; } + public function getIdcinema(){ return $this->_idcinema; } + public function setUsername($username){$this->_username = $username; } + public function getUsername(){ return $this->_username;} + public function setEmail($email){$this->_email = $email;} + public function getEmail(){return $this->_email;} + public function setRoll($roll){$this->_roll = $roll;} + public function getRoll(){return $this->_roll;} + + } +?> diff --git a/assets/php/common/manager_dao.php b/assets/php/common/manager_dao.php new file mode 100644 index 0000000..014022e --- /dev/null +++ b/assets/php/common/manager_dao.php @@ -0,0 +1,77 @@ +mysqli, $sql) or die ('Error into query database'); + + while($fila=$resul->fetch_assoc()){ + $managers[] = $this->loadManager($fila["id"], $fila["idcinema"], $fila["username"], $fila["email"], $fila["rol"]); + } + $resul->free(); + return $managers; + } + + //Returns a manager data . + public function GetManager($id){ + $sql = sprintf( "SELECT * FROM `manager` WHERE manager.id = '%d'", $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Returns a manager data . + public function GetManagerCinema($id, $idcinema){ + $sql = sprintf( "SELECT * FROM `manager` WHERE manager.id = '%d' AND manager.idcinema ='%d'", $id, $idcinema ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Create a new Session. + public function createManager($id, $idcinema){ + $sql = sprintf( "INSERT INTO `manager`( `id`, `idcinema`) + VALUES ( '%d', '%d')", + $id, $idcinema); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + + //Deleted manager by "id". + public function deleteManager($id){ + $sql = sprintf( "DELETE FROM `manager` WHERE manager.id = '%d' ;",$id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Edit manager. + public function editManager($id, $idcinema){ + $sql = sprintf( "UPDATE `manager` SET manager.idcinema = '%d' + WHERE manager.id = '%d';", + $idcinema, $id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Create a new Manager Data Transfer Object. + public function loadManager($id, $idcinema, $username, $email, $rol){ + return new Manager($id, $idcinema, $username, $email, $rol); + } + + } + +?> diff --git a/assets/php/common/promotion.php b/assets/php/common/promotion.php new file mode 100644 index 0000000..0abe64c --- /dev/null +++ b/assets/php/common/promotion.php @@ -0,0 +1,36 @@ +_id = $id; + $this->_tittle = $tittle; + $this->_description = $description; + $this->_code = $code; + $this->_active = $active; + } + + //Methods: + + //Getters && Setters: + public function setId($id){ $this->_id = $id; } + public function getId(){ return $this->_id; } + public function setTittle($tittle){ $this->_tittle = $tittle; } + public function getTittle(){ return $this->_tittle; } + public function setDescription($description){ $this->_description = $description;} + public function getDescription(){return $this->_description;} + public function setCode($code){ $this->_code = $code;} + public function getCode(){return $this->_code;} + public function setActive($active){ $this->_active = $active;} + public function getActive(){return $this->_active;} + + } +?> \ No newline at end of file diff --git a/assets/php/common/promotion_dao.php b/assets/php/common/promotion_dao.php new file mode 100644 index 0000000..02525bd --- /dev/null +++ b/assets/php/common/promotion_dao.php @@ -0,0 +1,77 @@ +mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + + //Returns a query to get All the films. + public function allPromotionData(){ + $sql = sprintf( "SELECT * FROM promotion "); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + while($fila=$resul->fetch_assoc()){ + $promotions[] = $this->loadPromotion($fila["id"], $fila["tittle"], $fila["description"], $fila["code"], $fila["active"]); + } + $resul->free(); + return $promotions; + } + + //Returns a film data . + public function GetPromotion($code){ + $sql = sprintf( "SELECT * FROM promotion WHERE promotion.code = '%s'", $code ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Returns a film data . + public function promotionData($id){ + $sql = sprintf( "SELECT * FROM promotion WHERE promotion.id = '%d'", $id); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + return $resul; + } + + //Deleted film by "id". + public function deletePromotion($id){ + $sql = sprintf( "DELETE FROM promotion WHERE promotion.id = '%d' ;",$id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Edit a film. + public function editPromotion($id, $tittle, $description, $code, $active){ + $sql = sprintf( "UPDATE promotion SET tittle = '%s' , description = '%s', code ='%s' , active ='%s' + WHERE promotion.id = '%d';", + $tittle, $description, $code, $active, $id); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Create a new film Data Transfer Object. + public function loadPromotion($id, $tittle, $description, $code, $active){ + return new Promotion($id, $tittle, $description, $code, $active); + } + + } + +?> diff --git a/assets/php/common/seat.php b/assets/php/common/seat.php new file mode 100644 index 0000000..5dd1a4e --- /dev/null +++ b/assets/php/common/seat.php @@ -0,0 +1,63 @@ +_number = $idhall; + $this->_idcinema = $idcinema; + $this->_numRow = $numRow; + $this->_numCol = $numCol; + $this->_state = $state; + } + + static public function createSeats($hall, $cinema, $rows, $cols, $seats_map){ + $bd = new SeatDAO('complucine'); + + for($i = 1;$i <= $rows;$i++){ + for($j = 1; $j <= $cols;$j++){ + $bd->createSeat($hall, $cinema, $i, $j, $seats_map[$i][$j]); + } + } + } + + static public function getSeatsMap($number, $cinema){ + $bd = new SeatDAO('complucine'); + if($bd ) + return $bd->getAllSeats($number, $cinema); + } + + static public function deleteAllSeats($number, $cinema){ + $bd = new SeatDAO('complucine'); + if($bd) + return $bd->deletemapSeats($number, $cinema); + } + + //Getters && Setters: + public function setNumber($number){ $this->_number = $number; } + public function getNumber(){ return $this->_number; } + + public function setIdcinema($idcinema){ $this->_idcinema = $idcinema; } + public function getIdcinema(){ return $this->_idcinema; } + + public function setNumRows($numRow){ $this->_numRow = $numRow; } + public function getNumRows(){ return $this->_numRow; } + + public function setNumCol($numCol){ $this->_numCol = $numCol; } + public function getNumCol(){ return $this->_numCol; } + + public function setState($state){ $this->_state = $state; } + public function getState(){ return $this->_state; } + + + + } +?> \ No newline at end of file diff --git a/assets/php/common/seat_dao.php b/assets/php/common/seat_dao.php new file mode 100644 index 0000000..52c8d29 --- /dev/null +++ b/assets/php/common/seat_dao.php @@ -0,0 +1,58 @@ +mysqli, $sql) or die ('Error BD createSeat'); + + return $sql; + } + + public function getAllSeats($number, $cinema){ + + $sql = sprintf( "SELECT * FROM seat WHERE + idhall = '%s' AND idcinema = '%s'", + $number, $cinema); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + $seat_map = null; + while($fila=mysqli_fetch_array($resul)){ + $seat_map[] = $this->loadSeat($fila["idhall"], $fila["idcinema"], $fila["numrow"], $fila["numcolum"], $fila["active"]); + } + + mysqli_free_result($resul); + + return $seat_map; + } + + public function deletemapSeats($hall, $cinema){ + $sql = sprintf( "DELETE FROM `seat` WHERE + idcinema = '%s' AND idhall = '%s'", + $cinema, $hall); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + public function loadSeat($idhall, $idcinema, $numRow, $numCol, $state){ + return new Seat($idhall, $idcinema, $numRow, $numCol, $state); + } + + } + +?> \ No newline at end of file diff --git a/assets/php/common/session.php b/assets/php/common/session.php new file mode 100644 index 0000000..275fafa --- /dev/null +++ b/assets/php/common/session.php @@ -0,0 +1,118 @@ +_id = $id; + $this->_idfilm = $idfilm; + $this->_idhall = $idhall; + $this->_idcinema = $idcinema; + $this->_date = $date; + $this->_startTime = $startTime; + $this->_seatPrice = $seatPrice; + $this->_format = $format; + $this->_seats_full = $seats_full; + } + + public static function getListSessions($hall,$cinema,$date){ + $bd = new SessionDAO('complucine'); + if($bd ) { + return $bd->getAllSessions($hall, $cinema, $date); + } + } + + public static function create_session($cinema, $hall, $start, $date, $film, $price, $format,$repeat){ + $bd = new SessionDAO('complucine'); + if($bd ){ + if(!$bd->searchSession($cinema, $hall, $start, $date)){ + $bd->createSession(null,$film, $hall, $cinema, $date, $start, $price, $format); + + if($repeat > "0") { + $repeats = $repeat; + $repeat = $repeat - 1; + $date = date('Y-m-d', strtotime( $date . ' +1 day') ); + self::create_session($cinema, $hall, $start, $date, $film, $price, $format,$repeat); + return "Se han creado las ".$repeat ." sesiones con exito"; + } + + else + return "Se ha creado la session con exito"; + } else + return "Esta session ya existe"; + + } else return "Error al conectarse a la base de datos"; + } + + public static function edit_session($cinema, $or_hall, $or_date, $or_start, $hall, $start, $date, $film, $price, $format){ + $bd = new SessionDAO('complucine'); + if($bd ){ + if($bd->searchSession($cinema, $or_hall, $or_start, $or_date)){ + if(!$bd->searchSession($cinema,$hall,$start,$date)){ + $origin = array("cinema" => $cinema,"hall" => $or_hall,"start" => $or_start,"date" => $or_date); + $bd->editSession($film, $hall, $cinema, $date, $start, $price, $format,$origin); + return "Se ha editado la session con exito"; + }else + return "Ya existe una sesion con los parametros nuevos"; + } else + return "Esta session no existe"; + + } else return "Error al conectarse a la base de datos"; + } + + public static function delete_session($cinema, $hall, $start, $date){ + $bd = new SessionDAO('complucine'); + if($bd ){ + if($bd->searchSession($cinema, $hall, $start, $date)){ + $bd->deleteSession($hall, $cinema, $date, $start); + return "Se ha eliminado la session con exito"; + } else + return "Esta session no existe"; + + } else return "Error al conectarse a la base de datos"; + } + + //Esto deberia estar en film.php? seguramente + public static function getThisSessionFilm($idfilm){ + $bd = new SessionDAO('complucine'); + if($bd ) { + return $bd->filmTittle($idfilm); + } + } + + public function setId($id){ $this->_id = $id; } + public function getId(){ return $this->_id; } + + public function setIdfilm($idfilm){ $this->_idfilm = $idfilm; } + public function getIdfilm(){ return $this->_idfilm; } + + public function setIdhall($idhall){ $this->_idhall = $idhall; } + public function getIdhall(){ return $this->_idhall; } + + public function setIdcinema($cinema){ $this->_idcinema = $idcinema; } + public function getIdcinema(){ return $this->_idcinema; } + + public function setDate($date){ $this->_date = $date; } + public function getDate(){ return $this->_date; } + + public function setStartTime($startTime){ $this->_startTime = $startTime; } + public function getStartTime(){ return $this->_startTime; } + + public function setSeatPrice($seatPrice){ $this->_seatPrice = $seatPrice; } + public function getSeatPrice(){ return $this->_seatPrice; } + + public function setFormat($format){ $this->_format = $format; } + public function getFormat(){ return $this->_format; } + + } +?> \ No newline at end of file diff --git a/assets/php/common/session_dao.php b/assets/php/common/session_dao.php new file mode 100644 index 0000000..df86869 --- /dev/null +++ b/assets/php/common/session_dao.php @@ -0,0 +1,114 @@ +mysqli->real_escape_string($format); + $date = date('Y-m-d', strtotime( $date ) ); + $startTime = date('H:i:s', strtotime( $startTime ) ); + + $sql = sprintf( "INSERT INTO `session` (`id`, `idfilm`, `idhall`, `idcinema`, `date`, `start_time`, `seat_price`, `format`, `seats_full`) + VALUES ('%d', '%d', '%d', '%d', '%s', '%s', '%d', '%s', '%d')", + $id, $idfilm, $idhall, $idcinema, $date, $startTime, $seatPrice, $format, "0"); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $sql; + } + + //Returns a query to get the session's data. + public function sessionData($id){ + $sql = sprintf( "SELECT * FROM `session` WHERE id = '%d'", $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database en sessionData con la id '. $id); + + $resul = mysqli_fetch_array($resul); + + return $resul; + } + + public function filmTittle($idfilm){ + $sql = sprintf("SELECT * FROM film JOIN session ON film.id = session.idfilm WHERE session.idfilm = '%d' ", $idfilm ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database en sessionData con la id '. $idfilm); + + $resul = mysqli_fetch_array($resul); + + return $resul; + } + + //Returns a session + public function searchSession($cinema, $hall, $startTime, $date){ + $date = date('Y-m-d', strtotime( $date ) ); + $startTime = date('H:i:s', strtotime( $startTime ) ); + + $sql = sprintf( "SELECT * FROM session WHERE + idcinema = '%s' AND idhall = '%s' AND date = '%s' AND start_time = '%s'", + $cinema, $hall, $date, $startTime); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + $session = mysqli_fetch_array($resul); + + mysqli_free_result($resul); + + return $session; + } + //Returns a query to get all the session's data. + public function getAllSessions($hall, $cinema, $date){ + $date = date('Y-m-d', strtotime( $date ) ); + + $sql = sprintf( "SELECT * FROM session WHERE + idcinema = '%s' AND idhall = '%s' AND date = '%s' ORDER BY start_time ASC;", + $cinema, $hall, $date); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + $sessions = null; + + while($fila=mysqli_fetch_array($resul)){ + $sessions[] = $this->loadSession($fila["id"], $fila["idfilm"], $fila["idhall"], $fila["idcinema"], $fila["date"], $fila["start_time"], $fila["seat_price"], $fila["format"], $fila["seats_full"]); + } + mysqli_free_result($resul); + + return $sessions; + } + + public function editSession($idfilm, $idhall, $idcinema, $date, $startTime, $seatPrice, $format, $origin){ + $format = $this->mysqli->real_escape_string($format); + $date = date('Y-m-d', strtotime( $date ) ); + $startTime = date('H:i:s', strtotime( $startTime ) ); + + $sql = sprintf( "UPDATE `session` + SET `idfilm` = '%d' , `idhall` = '%d', `idcinema` = '%d', `date` = '%s', + `start_time` = '%s', `seat_price` = '%d', `format` = '%s' + WHERE + idcinema = '%s' AND idhall = '%s' AND date = '%s' AND start_time = '%s'", + $idfilm, $idhall, $idcinema, $date, $startTime, $seatPrice, $format, $origin["cinema"],$origin["hall"],$origin["date"],$origin["start"]); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + public function deleteSession($hall, $cinema, $date, $startTime){ + + $sql = sprintf( "DELETE FROM `session` WHERE + idcinema = '%s' AND idhall = '%s' AND date = '%s' AND start_time = '%s'", + $cinema, $hall, $date, $startTime); + + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Create a new Session Data Transfer Object. + public function loadSession( $id, $idfilm, $idhall, $idcinema, $date, $startTime, $seatPrice, $format, $seats_full){ + return new Session( $id, $idfilm, $idhall, $idcinema, $date, $startTime, $seatPrice, $format, $seats_full); + } + + } + +?> diff --git a/assets/php/common/user.php b/assets/php/common/user.php new file mode 100644 index 0000000..1fc9927 --- /dev/null +++ b/assets/php/common/user.php @@ -0,0 +1,36 @@ + Será eliminado en la siguiente práctica para usar el modelo relacional de nuestra BD. + + //Constructor: + function __construct($id, $username, $email, $password, $rol){ + $this->_id = $id; + $this->_username = $username; + $this->_email = $email; + $this->_password = $password; + $this->_rol = $rol; + } + + //Methods: + + //Getters && Setters: + public function setId($id){ $this->_id = $id; } + public function getId(){ return $this->_id; } + public function setName($username){ $this->_username = $username; } + public function getName(){ return $this->_username; } + public function setEmail($email){ $this->_email = $email; } + public function getEmail(){ return $this->_email; } + public function setPass($passwd){ $this->_password = $passwd; } + public function getPass(){ return $this->_password; } + public function setRol($rol){ $this->_rol = $rol; } + public function getRol(){ return $this->_rol; } + + } +?> \ No newline at end of file diff --git a/assets/php/common/user_dao.php b/assets/php/common/user_dao.php new file mode 100644 index 0000000..69ead83 --- /dev/null +++ b/assets/php/common/user_dao.php @@ -0,0 +1,155 @@ +mysqli, $sql) or die ('Error into query database'); + + while($fila=$resul->fetch_assoc()){ + $users[] = $this->loadUser($fila['id'], $fila['username'], $fila['email'], $fila['passwd'], $fila['rol']); + } + $resul->free(); + return $users; + } + + //Create a new User. + public function createUser($id, $username, $email, $password, $rol){ + $password = $this->encryptPass($password); + + $sql = sprintf( "INSERT INTO users( id, username, email, passwd, rol) + VALUES ( '%s', '%s', '%s', '%s', '%s')", + $id, $username, $email, $password, $rol ); + + $resul = mysqli_query($this->mysqli, $sql); + + return $resul; + } + + //Returns a query to check if the user name exists. + public function selectUser($username, $password){ + $username = $this->mysqli->real_escape_string($username); + $password = $this->mysqli->real_escape_string($password); + + $sql = sprintf( "SELECT * FROM users WHERE username = '%s'", $username ); + $resul = mysqli_query($this->mysqli, $sql); + + $resul->data_seek(0); + $user = null; + while ($fila = $resul->fetch_assoc()) { + if($username === $fila['username'] && $this->verifyPass($password, $fila['passwd'])){ + $user = $this->loadUser($fila['id'], $fila['username'], $fila['email'], $fila['passwd'], $fila['rol']); + } + } + + //mysqli_free_result($selectUser); + $resul->free(); + + return $user; + } + + //Returns a query to get the user's data. + public function userData($id){ + $id = $this->mysqli->real_escape_string($id); + + $sql = sprintf( "SELECT * FROM users WHERE id = '%d'", $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Search a user by name. + public function selectUserName($username){ + $username = $this->mysqli->real_escape_string($username); + + $sql = sprintf( "SELECT * FROM users WHERE username = '%s'", $username ); + $resul = mysqli_query($this->mysqli, $sql); + + return $resul; + } + + //Change username by id. + public function changeUserName($id, $username){ + $id = $this->mysqli->real_escape_string($id); + $username = $this->mysqli->real_escape_string($username); + + $sql = sprintf( "UPDATE users SET username = '%s' WHERE id = '%d'", $username, $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + + } + + //Change userpass by id. + public function changeUserPass($id, $password){ + $id = $this->mysqli->real_escape_string($id); + $password = $this->mysqli->real_escape_string($password); + $password = $this->encryptPass($password); + + $sql = sprintf( "UPDATE users SET passwd = '%s' WHERE id = '%d'", $password, $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + + } + + //Change user email by id. + public function changeUserEmail($id, $email){ + $id = $this->mysqli->real_escape_string($id); + $email = $this->mysqli->real_escape_string($email); + + $sql = sprintf( "UPDATE users SET email = '%s' WHERE id = '%d'", $email, $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + + } + + //Delete user account by id. + public function deleteUserAccount($id){ + $id = $this->mysqli->real_escape_string($id); + + $sql = sprintf( "DELETE FROM users WHERE id = '%d'", $id ); + $resul = mysqli_query($this->mysqli, $sql) or die ('Error into query database'); + + return $resul; + } + + //Create a new User Data Transfer Object. + public function loadUser($id, $username, $email, $password, $rol){ + return new User($id, $username, $email, $password, $rol); + } + + } + +?> \ No newline at end of file diff --git a/assets/php/config.php b/assets/php/config.php new file mode 100644 index 0000000..709e1be --- /dev/null +++ b/assets/php/config.php @@ -0,0 +1,55 @@ +get_prefix(); + + /** + * Initialize the application: + */ + include_once($prefix.'assets/php/dao.php'); + require_once('aplication.php'); + $app = Aplicacion::getSingleton(); + $app->init(array('host'=>BD_HOST, 'bd'=>BD_NAME, 'user'=>BD_USER, 'pass'=>BD_PASS)); + + /** + * @see http://php.net/manual/en/function.register-shutdown-function.php + * @see http://php.net/manual/en/language.types.callable.php + */ + register_shutdown_function(array($app, 'shutdown')); + + //Depuración (BORRAR): + ini_set('display_errors', 1); + ini_set('display_startup_errors', 1); + error_reporting(E_ALL); +?> diff --git a/assets/php/dao.php b/assets/php/dao.php new file mode 100644 index 0000000..d47e566 --- /dev/null +++ b/assets/php/dao.php @@ -0,0 +1,24 @@ +mysqli = $app->conexionBd(); + } + + //Destructor (Ya no es necesdario): + /* + public function __destruct(){ + $this->mysqli->close(); + } + */ + + } +?> \ No newline at end of file diff --git a/assets/php/form.php b/assets/php/form.php new file mode 100644 index 0000000..3839d47 --- /dev/null +++ b/assets/php/form.php @@ -0,0 +1,386 @@ +$tipoFormulario.$formId. + */ + private $formId; + + /** + * @var string Valor del parámetro enctype del formulario. + */ + private $enctype; + + /** + * @var string Valor del atributo "class" de la etiqueta <form> asociada al formulario. Si este parámetro incluye la cadena "nocsrf" no se generá el token CSRF para este formulario. + */ + private $classAtt; + + /** + * @var string Parámetro de la petición utilizado para comprobar que el usuario ha enviado el formulario.. + */ + private $tipoFormulario; + + /** + * @var string URL asociada al atributo "action" de la etiqueta <form> del fomrulario y que procesará el + * envío del formulario. + */ + private $action; + private $printed; + + /** + * @var bool Almacena si la interacción con el formulario va a realizarse a través de AJAX true o + * false en otro caso. + */ + private $ajax; + + /** + * Crea un nuevo formulario. + * + * Posibles opciones: + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + * + *
OpciónValor por defectoDescripción
action$_SERVER['PHP_SELF']URL asociada al atributo "action" de la etiqueta <form> del fomrulario y que procesará el envío del formulario.
class""Valor del atributo "class" de la etiqueta <form> asociada al formulario. Si este parámetro incluye la cadena + * "nocsrf" no se generá el token CSRF para este formulario.
enctype""Valor del parámetro enctype del formulario.
ajaxfalseConfigura si el formulario se gestionará a través de AJAX.
+ * @param string $tipoFormulario Parámetro de la petición utilizado para comprobar que el usuario ha enviado el formulario. + * @param string $formId (opcional) Identificador utilizado para construir el atributo "id" de la etiqueta <form> como $tipoFormulario.$formId. + * + * @param array $opciones (ver más arriba). + */ + public function __construct($tipoFormulario, $opciones = array(), $formId = 1) + { + $this->tipoFormulario = $tipoFormulario; + $this->formId = $tipoFormulario.$formId; + + $opcionesPorDefecto = array( 'ajax' => false, 'action' => null, 'class' => null, 'enctype' => null ); + $opciones = array_merge($opcionesPorDefecto, $opciones); + + $this->ajax = $opciones['ajax']; + $this->action = $opciones['action']; + $this->classAtt = $opciones['class']; + $this->enctype = $opciones['enctype']; + + if ( !$this->action ) { + $this->action = htmlentities($_SERVER['PHP_SELF']); + } + } + + /** + * Se encarga de orquestar todo el proceso de gestión de un formulario. + * + * El proceso es el siguiente: + * + */ + public function gestiona() + { + if ( ! $this->formularioEnviado($_POST) ) { + return $this->generaFormulario(); + } else { + // Valida el token CSRF si es necesario (hay un token en la sesión asociada al formulario) + $tokenRecibido = $_POST['CSRFToken'] ?? FALSE; + $errores = $this->csrfguard_ValidateToken($this->tipoFormulario, $tokenRecibido); + + // limpia los tokens CSRF que no han sido utilizados en esta petición + self::limpiaCsrfTokens(); + + // Sin AJAX. + /** + * $result = $this->procesaFormulario($_POST); + * if ( is_array($result) ) { + * return $this->generaFormulario($_POST, $result); + * } else { + * header('Location: '.$result); + * exit(); + * } + */ + + // Con AJAX. + if ( $errores !== TRUE ) { + if ( ! $this->ajax ) { + return $this->generaFormulario($_POST, $errores); + } else { + return $this->generaHtmlErrores($errores); + } + } else { + $result = $this->procesaFormulario($_POST); + if ( is_array($result) ) { + // Error al procesar el formulario, volvemos a mostrarlo + if ( ! $this->ajax ) { + return $this->generaFormulario($_POST, $result); + } else { + return $this->generaHtmlErrores($result); + } + } else { + if ( ! $this->ajax ) { + header('Location: '.$result); + exit(); + } else { + return $result; + } + } + } + + } + } + + /** + * Genera el HTML necesario para presentar los campos del formulario. + * + * Si el formulario ya ha sido enviado y hay errores en {@see Form::procesaFormulario()} se llama a este método + * nuevamente con los datos que ha introducido el usuario en $datosIniciales y los errores al procesar + * el formulario en $errores + * + * @param string[] $datosIniciales Datos iniciales para los campos del formulario (normalmente $_POST). + * + * @param string[] $errores (opcional)Lista / Tabla asociativa de errores asociados al formulario. + * + * @return string HTML asociado a los campos del formulario. + */ + protected function generaCamposFormulario($datosIniciales, $errores = array()) + { + return ''; + } + + /** + * Procesa los datos del formulario. + * + * @param string[] $datos Datos enviado por el usuario (normalmente $_POST). + * + * @return string|string[] Devuelve el resultado del procesamiento del formulario, normalmente una URL a la que + * se desea que se redirija al usuario, o un array con los errores que ha habido durante el procesamiento del formulario. + */ + protected function procesaFormulario($datos) + { + return array(); + } + + /** + * Función que verifica si el usuario ha enviado el formulario. + * + * Comprueba si existe el parámetro $formId en $params. + * + * @param string[] $params Array que contiene los datos recibidos en el envío formulario. + * + * @return boolean Devuelve true si $formId existe como clave en $params + */ + private function formularioEnviado(&$params) + { + return isset($params['action']) && $params['action'] == $this->tipoFormulario; + } + + /** + * Función que genera el HTML necesario para el formulario. + * + * @param string[] $datos (opcional) Array con los valores por defecto de los campos del formulario. + * + * @param string[] $errores (opcional) Array con los mensajes de error de validación y/o procesamiento del formulario. + * + * @return string HTML asociado al formulario. + */ + private function generaFormulario(&$datos = array(), &$errores = array()) + { + $htmlCamposFormularios = $this->generaCamposFormulario($datos, $errores); + + $classAtt=''; + if ( $this->classAtt ) { + $classAtt = " class=\"{$this->classAtt}\""; + } + + $enctypeAtt=''; + if ( $this->enctype ) { + $enctypeAtt = " enctype=\"{$this->enctype}\""; + } + + // Se genera el token CSRF si el usuario no solicita explícitamente lo contrario. + $tokenCSRF = ''; + if ( ! $this->classAtt || strpos($this->classAtt, 'nocsrf') === false ) { + $tokenValue = $this->csrfguard_GenerateToken($this->tipoFormulario); + $tokenCSRF = ""; + } + + /* <<< Permite definir cadena en múltiples líneas. + * Revisa https://www.php.net/manual/en/language.types.string.php#language.types.string.syntax.heredoc + */ + $htmlForm = "
+ + ".$tokenCSRF.$htmlCamposFormularios." +
"; + return $htmlForm; + } + + /** + * Genera la lista de mensajes de errores globales (no asociada a un campo) a incluir en el formulario. + * + * @param string[] $errores (opcional) Array con los mensajes de error de validación y/o procesamiento del formulario. + * + * @param string $classAtt (opcional) Valor del atributo class de la lista de errores. + * + * @return string El HTML asociado a los mensajes de error. + */ + protected static function generaListaErroresGlobales($errores = array(), $classAtt='') + { + $html=''; + $clavesErroresGenerales = array_filter(array_keys($errores), function ($elem) { + return is_numeric($elem); + }); + + $numErrores = count($clavesErroresGenerales); + if ($numErrores > 0) { + $html = "'; + } + return $html; + } + + /** + * Crea una etiqueta para mostrar un mensaje de error. Sólo creará el mensaje de error + * si existe una clave $idError dentro del array $errores. + * + * @param string[] $errores (opcional) Array con los mensajes de error de validación y/o procesamiento del formulario. + * @param string $idError (opcional) Clave dentro de $errores del error a mostrar. + * @param string $htmlElement (opcional) Etiqueta HTML a crear para mostrar el error. + * @param array $atts (opcional) Tabla asociativa con los atributos a añadir a la etiqueta que mostrará el error. + */ + protected static function createMensajeError($errores=array(), $idError='', $htmlElement='span', $atts = array()) + { + $html = ''; + if (isset($errores[$idError])) { + $att = ''; + foreach($atts as $key => $value) { + $att .= "$key=$value"; + } + $html = " <$htmlElement $att>{$errores[$idError]}"; + } + + return $html; + } + + /** + * Método para eliminar los tokens CSRF almecenados en la petición anterior que no hayan sido utilizados en la actual. + */ + public static function limpiaCsrfTokens() + { + foreach(array_keys($_SESSION) as $key) { + if (strpos($key, self::CSRF_PARAM) === 0) { + unset($_SESSION[$key]); + } + } + } + + private function csrfguard_GenerateToken($formParameter) + { + if ( ! session_id() ) { + throw new \Exception('La sesión del usuario no está definida.'); + } + + $paramSession = self::CSRF_PARAM.'_'.$formParameter; + if (isset($_SESSION[$paramSession])) { + $token = $_SESSION[$paramSession]; + } else { + if ( function_exists('hash_algos') && in_array('sha512', hash_algos()) ) { + $token = hash('sha512', mt_rand(0, mt_getrandmax())); + } else { + $token=' '; + for ($i=0;$i<128;++$i) { + $r=mt_rand(0,35); + if ($r<26){ + $c=chr(ord('a')+$r); + } else{ + $c=chr(ord('0')+$r-26); + } + $token.=$c; + } + } + + $_SESSION[$paramSession]=$token; + } + return $token; + } + + private function csrfguard_ValidateToken($formParameter, $tokenRecibido) + { + if ( ! session_id() ) { + throw new \Exception('La sesión del usuario no está definida.'); + } + + $result = TRUE; + + $paramSession = self::CSRF_PARAM.'_'.$formParameter; + if ( isset($_SESSION[$paramSession]) ) { + if ( $_SESSION[$paramSession] !== $tokenRecibido ) { + $result = array(); + $result[] = 'Has enviado el formulario dos veces'; + } + $_SESSION[$paramSession] = ' '; + unset($_SESSION[$paramSession]); + } else { + $result = array(); + $result[] = 'Formulario no válido'; + } + return $result; + } + + //Test some form input. + protected function test_input($input){ + return htmlspecialchars(trim(strip_tags($input))); + } + +} diff --git a/assets/php/template.php b/assets/php/template.php new file mode 100644 index 0000000..000a596 --- /dev/null +++ b/assets/php/template.php @@ -0,0 +1,516 @@ +page = $_SERVER['PHP_SELF']; //Page that instantiates the template. + $this->prefix = '../'; //Default prefix. + + $this->set_page_prefix(); //Assigns the name and prefix of the page. + + $this->session = 'Iniciar Sesión'; //Default, the session has not started. + $this->session_route = 'login/'; //Default, the session has not started. + $this->panel = ''; //Default, the session has not started. + $this->user_route = 'panel_user/'; //Default, the type of client is user. + } + + //Methods: + + //Assigns the name and prefix of the page: + private function set_page_prefix() { + switch(true){ + case strpos($this->page, 'panel_user'): $this->page = 'Panel de Usuario'; break; + case strpos($this->page, 'panel_manager'): $this->page = 'Panel de Gerente'; break; + case strpos($this->page, 'panel_admin'): $this->page = 'Panel de Administrador'; break; + case strpos($this->page, 'login'): $this->page = 'Acceso'; break; + case strpos($this->page, 'logout'): $this->page = 'Cerrar Sesión'; break; + case strpos($this->page, 'register'): $this->page = 'Registro de Usuario'; break; + case strpos($this->page, 'showtimes'): $this->page = 'Cartelera'; break; + case strpos($this->page, 'cinemas'): $this->page = 'Nuestros Cines'; break; + case strpos($this->page, 'about_us'): $this->page = 'Sobre FDI-Cines'; $this->prefix = '../../'; break; + case strpos($this->page, 'terms'): $this->page = 'Términos y Condiciones'; $this->prefix = '../../'; break; + case strpos($this->page, 'detalles'): $this->page = 'Detalles'; $this->prefix = '../../'; break; + case strpos($this->page, 'bocetos'): $this->page = 'Bocetos'; $this->prefix = '../../'; break; + case strpos($this->page, 'miembros'): $this->page = 'Miembros'; $this->prefix = '../../'; break; + case strpos($this->page, 'planificacion'): $this->page = 'Planificación'; $this->prefix = '../../'; break; + case strpos($this->page, 'contacto'): $this->page = 'Contacto'; break; + default: $this->page = 'FDI-Cines'; $this->prefix = './'; break; + } + } + + //Returns page name: + function get_page(){ + return $this->page; + } + + //Returns page prefix: + function get_prefix(){ + return $this->prefix; + } + + //Print generic Head: + function print_head(){ + $page = $this->page; + $prefix = $this->prefix; + + echo" + CompluCine | {$page} + + + + + \n"; + } + + //Print generic Header: + function print_header(){ + $page = $this->page; + $prefix = $this->prefix; + $session = $this->session; + $session_route =$this->session_route; + $user_route = $this->user_route; + $panel =$this->panel; + + if(isset($_SESSION["nombre"])){ + if($_SESSION["rol"] == "admin") $user_route = 'panel_admin/'; + else if($_SESSION["rol"] == "manager") $user_route = 'panel_manager/'; + $panel = "
  • Mi Panel
  • "; + $session = 'Cerrar Sesión'; + $session_route = 'logout/'; + } + + echo"
    + favicon CompluCine | {$page} + +
    \n"; + } + + //Print generic subHeader: + function print_subheader(){ + //$page = $this->page; + $prefix = $this->prefix; + + echo"
    + +
    \n"; + } + + //Print generic Main: + function print_main($content = ""){ + $page = $this->page; + $prefix = $this->prefix; + + /* SubHeader on Main */ + $sub_header = ''; + if(strpos($_SERVER['PHP_SELF'], 'fdicines')){ + $sub_header = " +
    + +
    \n"; + } + + /* MAIN */ + if($prefix === "./"){ + if(isset($_SESSION["nombre"])){ + $tittle = "

    Bienvenido {$_SESSION["nombre"]}

    \n"; + } else { + $tittle = "

    Bienvenido a CompluCine

    \n"; + } + } else { + $tittle = "

    {$page}

    \n"; + } + + echo"
    +
    logo_FDI-Cines
    + {$sub_header} + {$tittle}{$content} +
    +
    \n"; + } + + //Print panel menu: + function print_panelMenu($panel){ + if($_SESSION["login"]){ + $prefix = $this->prefix; + $menus = array("
  • Panel Principal
  • "); + + switch($panel){ + case "admin": array_push($menus, "
  • Ver como... + +
  • "); + array_push($menus, "
  • Modificar + +
  • "); + break; + + case "manager": array_push($menus, "
  • Ver como... + +
  • "); + array_push($menus, "
  • Modificar + +
  • "); + break; + + case "user": array_push($menus, "
  • Cuenta de usuario
  • "); + array_push($menus, "
  • Historial Compras
  • "); + array_push($menus, "
  • Datos Pago
  • "); + array_push($menus, "
  • Eliminar Usuario
  • "); + break; + + default: $menus = array(); break; + } + + if($_SESSION["rol"] === $panel){ + echo"
    + +
    + "; + } + } + } + + //Print specific page content: + function print_section($section){ + /* Panel menu */ + $sub_header = ''; + if(strpos($_SERVER['PHP_SELF'], 'panel')){ + echo " + "; + $this->print_panelMenu($_SESSION["rol"]); + $this->print_msg(); + } + + echo $section; + } + + //Print Films Cards: + function print_fimls(){ + $reply = ""; + //List of the movies: + require_once(__DIR__.'/common/film_dao.php'); + + $prefix= $this->get_prefix(); + + $films = new Film_DAO("complucine"); + $films_array = $films->allFilmData(); + $ids = array(); + $tittles = array(); + $descriptions = array(); + $times = array(); + $languages = array(); + + foreach($films_array as $key => $value){ + $ids[$key] = $value->getId(); + $tittles[$key] = $value->getTittle(); + $descriptions[$key] = $value->getDescription(); + $times[$key] = $value->getDuration(); + $languages[$key] = $value->getLanguage(); + } + + switch($this->page){ + case "Cartelera": + for($i = 0; $i < count($films_array); $i++){ + $tittle = str_replace('_', ' ', $tittles[$i]); + if($i%2 === 0){ + if($i != 0) $reply .= " + "; + $reply .= "
    + "; + } + else{ + if($i != 0) $reply .= "
    + "; + $reply .= "
    + "; + } + $reply .= "
    +
    +
    +
    ".$tittles[$i]."
    +

    ".$tittle."

    +
    +
    +

    ".$descriptions[$i]."

    +
    +
  • Duración: ".$times[$i]." minutos
  • +
  • Lenguaje: ".$languages[$i]."
  • +
    +
    +
    + "; + } + $reply .= "
    \n"; + break; + + case "Panel de Administrador": + $reply .= "
    "; + for($i = 0; $i < count($films_array); $i++){ + $tittle = str_replace('_', ' ', $tittles[$i]); + if($i%2 === 0){ + if($i != 0) $reply .= "
    + "; + $reply .= "
    + "; + } + else{ + if($i != 0) $reply .= "
    + "; + $reply .= "
    + "; + } + $reply .= "
    +
    +
    +
    ".$tittles[$i]."
    +

    ".$tittle."

    +
    +
    + + + + + + +
    +
    + + + + + + +
    +
    +
    +
    + "; + } + $reply .= "
    \n"; + break; + + case "Panel de Gerente": + break; + + default: + $reply .='
    +
    +

    Últimos Estrenos


    '; + $count = 0; + for($i = count($tittles)-4; $i < count($tittles); $i++){ + if($count%2===0){ + if($count != 0) $reply .= " +
    "; + $reply .= " +
    "; + } + $reply .= " +
    +
    +
    ".$tittles[$i]."
    +
    +
    "; + $count++; + } + $reply .= " +
    +
    + +
    +
    "; + $count = rand(0, count($tittles)-1); + $title = str_replace('_', ' ', $tittles[$count]); + $reply .= " +

    {$title}


    +
    +
    ".$tittles[$count]."
    +
    +
    +
    \n"; + break; + } + + return $reply; + } + + //Print Cinemas info: + function print_cinemas(){ + $reply = ""; + + //List of the cinemas: + require_once(__DIR__.'/common/cinema_dao.php'); + + $cine = new Cinema_DAO("complucine"); + $cinemas = $cine->allCinemaData(); + $ids = array(); + $names = array(); + $directions = array(); + $phones = array(); + + if(is_array($cinemas)){ + foreach($cinemas as $key => $value){ + $ids[$key] = $value->getId(); + $names[$key] = $value->getName(); + $directions[$key] = $value->getDirection(); + $phones[$key] = $value->getPhone(); + } + } + + switch($this->page){ + case "Panel de Administrador": + $reply .= "
    +
    +
    + + + + + + + + + + + "; + if(is_array($cinemas)){ + for($i = 0; $i < count($cinemas); $i++){ + $reply .= ' + + + + + + + + '; + } + } + $reply .=' +
    IdNombreDireccionTelefono
    '. $ids[$i] .''. $names[$i] .''. $directions[$i] .''. $phones[$i] .' +
    + + + + + +
    +
    +
    + + + + + +
    +
    +
    +
    + '; + break; + + default: + break; + + } + + return $reply; + } + + //Print session MSG: + function print_msg() { + if(isset($_SESSION['message'])){ + echo "
    ".$_SESSION['message']."
    "; + unset($_SESSION['message']); + } + } + + //Print generic Footer: + function print_footer(){ + $prefix = $this->prefix; + + /* TODO */ + $css = "{$prefix}assets/css/highContrast.css"; + $nameCSS = "Alto Contraste"; + //$css = "{$prefix}assets/css/main.css"; + //$nameCSS = "Contraste Normal"; + + echo"\n"; + + echo" + + \n"; + } + + } +?> \ No newline at end of file diff --git a/cinemas/index.php b/cinemas/index.php new file mode 100644 index 0000000..c5e02d5 --- /dev/null +++ b/cinemas/index.php @@ -0,0 +1,10 @@ + \ No newline at end of file diff --git a/contacto/includes/formContact.php b/contacto/includes/formContact.php new file mode 100644 index 0000000..3a0a117 --- /dev/null +++ b/contacto/includes/formContact.php @@ -0,0 +1,88 @@ + ""); + parent::__construct('formContact', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()) { + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorNombre = self::createMensajeError($errores, 'name', 'span', array('class' => 'error')); + $errorEmail = self::createMensajeError($errores, 'email', 'span', array('class' => 'error')); + $errorMessage = self::createMensajeError($errores, 'message', 'span', array('class' => 'error')); + + // Se genera el HTML asociado a los campos del formulario y los mensajes de error. + $html = "
    +
    + Datos personales
    ".$htmlErroresGlobales."
    +
    +
    ".$errorNombre."
    +
    +
    +
    ".$errorEmail."
    +
    +
    +
    + Motivo de la consulta +
    + + +
    +
    + + +
    +
    + + +
    +
    +
    ".$errorMessage."
    + +
    +
    + + +
    +
    + + +
    +
    "; + + return $html; + } + + + protected function procesaFormulario($datos) { + $result = array(); + + $nombre = $this->test_input($datos['name']) ?? null; + if ( empty($nombre) || mb_strlen($nombre) < 3 || mb_strlen($nombre) > 8 ) { + $result['name'] = "El nombre tiene que tener\n una longitud de más de\n 3 caracteres\n y menos de 8 caracteres."; + } + + $email = $this->test_input($datos['email']) ?? null; + if ( empty($email) || !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $email) ) { + $result['email'] = "El email no es válido."; + } + + $message = $this->test_input($datos['message']) ?? null; + if ( empty($message) || mb_strlen($message) < 1 || mb_strlen($message) > 250 ) { + $result['message'] = "El mensaje no puede estar vacío\ny no puede contener más de\n250 caracteres."; + } + + if (count($result) === 0) { + $result = ROUTE_APP; + } + + return $result; + } +} \ No newline at end of file diff --git a/contacto/index.php b/contacto/index.php new file mode 100644 index 0000000..65a13db --- /dev/null +++ b/contacto/index.php @@ -0,0 +1,20 @@ +gestiona(); + + //Specific page content: + $section = ' +
    +

    Formulario (EN DESARROLLO)

    + '.$htmlForm.' +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/fdicines/about_us/index.php b/fdicines/about_us/index.php new file mode 100644 index 0000000..0a7830d --- /dev/null +++ b/fdicines/about_us/index.php @@ -0,0 +1,47 @@ + +
    +
    +

    Descripción

    +
    +
    +

    + CompluCine es un proyecto para la creación y desarrollo de una plataforma web que permita la compra de entradas + de cine, por fecha y hora, para cualquiera de los cines del grupo FDI-Cines + mostrar la cartelera disponible e incluya ofertas y promociones para los clientes. +

    +

    + Con este proyecto buscamos la creación de una aplicación web que + gestione la cartelera de un grupo de cines con una lista de películas variable, + unos horarios propios de cada cine por sesión y película, y con unos precios determinados. +

    +

    + Los usuarios podrán registrarse, comprar sus entradas para una + sesión, elegir asientos, precomprar sus snacks y ver ofertas y promociones. +

    +
    +
    +
    +

    FDI-Cines

    +
    +
    +

    + Somos un grupo de estudiantes de la asignatura de Sistemas Web + de la Facultad de Informática de la Universidad Complutense de Madrid. +

    +

    + CompluCine es un proyecto web universitario y en ningún momento pretende ofrecer una funcionalidad real. + Para más información acerca del proyecto, haz click aquí. +

    +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/fdicines/bocetos/index.php b/fdicines/bocetos/index.php new file mode 100644 index 0000000..d5baf58 --- /dev/null +++ b/fdicines/bocetos/index.php @@ -0,0 +1,282 @@ + +
    +
    +

    FLUJO DE NAVEGACIÓN

    +
    + +
    +

    Usuario

    +

    + El Usuario puede tomar dos caminos a la hora de seleccionar la película, el cine, y la sesión a la que quiere asistir. La diferencia es puramente + de orden entre la elección de cine y de la película, a conveniencia del usuario; se procede a explicar ambos: +

    +

    + 1. Selección de Cine -> Selección de Película -> Selección de Sesión -> Reserva de Butacas -> Checkout: Primero se selecciona el cine en la vista de selección + de cines en la que se encuentra un mapa y una lista con los cines de la cadena. Una vez seleccionado el cine se redirigirá al usuario a la vista de selección + de película, con el filtro del cine correspondiente activado, de forma que solo se muestren las películas disponibles en el cine seleccionado. En esa vista se + eligirá la película y la versión a ver (VO, 3D, 4DX, etc). +

    +

    + Una vez elegida la película, se redirigirá al usuario a la elección de sesión. Se mostrarán todas las sesiones disponibles y el usuario podrá elegir la sesión y + el número de entradas que quiere reservar, pudiendo ver el precio final de las mismas. Se le llevará a la vista de butacas en donde podrá elegir qué butacas reservar. +

    +

    + Una vez elegidas las butacas, el usuario procede a la página de pago, en donde rellenará los datos necesarios para pagar online. Terminada la compra con éxito, se + mostrará una pantalla de "Compra Realizada", dando al usuario la seguridad de que su reserva se ha registrado correctamente. Luego se le redirigirá a la pantalla de + inicio. +

    +

    + 2. Selección de Película -> Selección de Cine -> Selección de Sesión -> Reserva de Butacas -> Checkout: Es idéntico al flujo anterior pero el usuario empieza eligiendo + la película, de forma que se le redirige a la vista de selección de cine, esta vez con un filtro, de forma que solo se muestran los cines que tengan sesiones activas + con la película seleccionada. +

    +

    + Una vez elegidos película y cine, el flujo es idéntico al anterior. +

    +
    + +
    +

    Gerente

    +

    + El Gerente es el encargado de gestionar las sesiones y salas de cada cine. La forma de proceder es la misma que el administrador, con vistas equivalentes. + En el caso de la gestión de salas, se administrarán los asientos disponibles (por temas de Covid-19) y si está o no habilitada para su uso. +

    +
    + +
    +

    Administrador

    +

    El Administrador es el encargado de gestionar las: películas, cines, promociones, otros administradores y gerentes de cada cine.

    +

    Para cada categoría tiene un panel en el que puede seleccionar, a partir de una lista, el elemento que quiere modificar, también hay otro panel al lado, en donde + puede modificar los datos de un elemento ya existente o crear uno nuevo introduciendo datos que no existan en la BD. También hay una opción de Eliminar en caso de que + quiera eliminar un elemento.

    +

    También cuenta con un botón de "Vista de Usuario", con el que puede navegar por la página con la vista que tendrá el usuario final.

    +
    +
    +
    + + +
    +
    + +
    +

    Pantallas Genéricas

    +
    +
    +
    +
    + +
    +

    Pantalla de inicio

    +

    Pantalla de bienvenida al entrar en la web.

    +
    +
    +
    +
    +
    + +
    +

    Pantalla de Registro / Inicio de sesión

    +

    Pantalla para que un usuario nuevo se registre o, en caso de ya tener una cuenta de usuario, inicie sesión.

    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Menú de usuario registrado

    +

    Pantalla con todas las opciones disponibles, propias de un usuario registrado.

    +
    +
    +
    +
    +
    + +
    +

    Cartelera

    +

    Pantalla con información sobre todas las películas disponibles en ese momento.

    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Cines

    +

    Pantalla con un mapa que indica la geolocalización de todos los cines de FDI-Cines.

    +
    +
    +
    +
    +
    + +
    +

    Selección de Horario

    +

    Pantalla que muestra los horarios disponibles por salas para un cine y película elegidos.

    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Mapa de los Asientos

    +

    Pantalla con un mapa para selccionar los asientos que se quieren escoger. Los asientos ocupados no pondrán ser seleccionados.

    +
    +
    +
    +
    +
    + +
    +

    Pagar

    +

    Pantalla para realizar el pago, después de haber selecionado película, cine, sala, horario y butacas.

    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Compra Realizada

    +

    Pantalla de confirmación con los datos de compra.

    +
    +
    +
    +
    +
    + +
    +

    Sobre nosotros

    +

    Pantalla con información sobre FDI-Cines.

    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Formulario de Contacto

    +

    Pantalla con un formulario para realizar una consulta a los administradores.

    +
    +
    +
    +
    +
    + +
    +

    Términos y Condiciones

    +

    Pantalla con todos los términos y condiciones de uso del servicio.

    +
    +
    +
    +
    + + +
    +

    Pantallas de Gerentes

    +
    +
    +
    +
    + +
    +

    Panel de Incio Gerente

    +

    Pantalla con las funciones exclusivas a las que puede acceder un Gerente.

    +
    +
    +
    +
    +
    + +
    +

    Gestionar salas

    +

    Pantalla en la que los Gerentes pueden interactuar para añadir, modificar o eliminar la sala de un cine.

    +
    +
    +
    +
    +
    + +
    +

    Gestionar Sesiones

    +

    Pantalla en la que los Gerentes pueden interactuar para añadir, modificar o eliminar las sesiones de una película.

    +
    +
    +
    +
    + + +
    +

    Pantallas de Administradores

    +
    +
    +
    +
    + +
    +

    Panel Inicio Administrador

    +

    Pantalla con las funciones exclusivas a las que puede acceder un Administrador.

    +
    +
    +
    +
    +
    + +
    +

    Gestionar Películas

    +

    Pantalla en la que los Administradores pueden interactuar para añadir, modificar o eliminar las películas de la cartelera.

    +
    +
    +
    +
    +
    +
    +
    + +
    +

    Gestionar Cines

    +

    Pantalla en la que los Administradores pueden interactuar para añadir, modificar o eliminar los cines.

    +
    +
    +
    +
    +
    + +
    +

    Gestionar Promociones

    +

    Pantalla en la que los Administradores pueden interactuar para añadir, modificar o eliminar las promociones existentes.

    +
    +
    +
    +
    +
    + +
    +

    Gestionar Administradores y Gerentes

    +

    Pantalla en la que los Administradores pueden interactuar para añadir, modificar o eliminar tanto otros Administradores como Gerentes.

    +
    +
    +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/fdicines/detalles/index.php b/fdicines/detalles/index.php new file mode 100644 index 0000000..695598d --- /dev/null +++ b/fdicines/detalles/index.php @@ -0,0 +1,94 @@ + +
    +
    +

    Detalles

    +
    +
    +

    + Con este proyecto buscamos la creación de una aplicación web que + gestione la cartelera de un grupo de cines con una cartelera de películas variable, unos horarios propios de cada cine por sesión y película + y unos precios determinados. +
    + Los usuarios podrán registrarse, comprar sus entradas para una + sesión, elegir asientos, precomprar sus snacks y ver ofertas y promociones. +

    +
    +
    +
    + +
    +
    +
    +
    +

    Tipos de usuario

    +
    +
    +

    Usuario No Registrado

    +

    + Este tipo de usuario, puede interactuar con la web sin necesidad de estar registrado. Podrá realizar compras, ver horarios y cartelera, sin necesidad de realizar ningún registro. + No podrá usar ninguna de las promociones, pues estas estarán únicamente destinadas a los usuarios registrados. +

    +
    +
    +

    Usuario Registrado

    +

    + Estos usuarios son aquellos que previamente han realizado un registro en la base de datos del sistema. Tendrán las mismas funcionalidades básicas + que un usuario no registrado y además, podrán acceder a ofertas y aplicar promociones y descuentos y ver el historial de sus compras. + Además, estos usuarios podrán cancelar una compra previamente hecha, pues estas se asociarían a su cuenta, algo que sería imposible + con un usuario no registrado. +

    +
    +
    +

    Gerente de Cine

    +

    + Un administrador de rango bajo capaz de acceder a la vista de administradores, puede ver las peliculas que hay en la base de datos. + Este usuario está asociado a un cine, sobre el cual puede añadir sesiones con peliculas existentes y modificar la disposicion de butacas. +

    +
    +
    +

    Administrador

    +

    + El administrador es capaz de ascender cuentas de usuario registradas a cuentas de gerente de cine. Ademas es el encargado de añadir nuevos cines y peliculas. + Para comprobar el correcto funcionamiento de la pagina podrá cambiar entre distintas vistas de usuario. + Las cuales le permitirán comprobar que cada usuario tiene acceso únicamente a sus funcionalidades y no a funcionalidades de otro rango superior. +

    +
    +
    +
    +
    +
    +

    Funcionalidad

    +
    +

    + La aplicación debe permitir la compra online de entradas para sesiones de cine, mostrando los cines y + horarios en los que se encuentra disponible la película seleccionada por el usuario dentro del catálogo disponible en ese momento (la cartelera). + Los usuarios podrán acceder a la compra de entradas buscando la película que desean ver y luego escogiendo un cine y horario determinado. + Además de una búsqueda específica, también se ofrecerá la posibilidad de visionar toda la cartelera, y escoger una película, horario y cine, de entre todas las posibilidades. +

    + Una vez escogido todo, se mostrará una página en la que el usuario decidirá la o las butacas en las que se sentará. Se mostrarán butacas disponibles y butacas ocupadas (en caso de que las haya). + Antes de realizar la compra, los usuarios podrán aplicar promociones especificas que le permitan obtener algun snack en el cine o descuentos disponibles en la aplicación. +

    +

    + Por otro lado la aplicacion debe permitir a los gerentes y administradores visionar la lista y contenido de todas las peliculas que hay en cartelera, + siendo los administradores los encargados de modificarlas y añadir nuevas. + De igual forma, ambos podran ver todos los cines activos de la aplicacion, pero solo los administradores serán capaces de añadir o modificar cines existentes. +

    + Cada cine tiene una cantidad de salas y sesiones con horarios específicos pora cada una de las películas. + Aunque ambos roles (administrador y gerente) pueden ver estas salas y horarios, es el gerente de cine el encargado de modificar las salas, + su disposición de butacas, modificar el horario de las sesiones y añadir nuevas sesiones, y crear promociones específicas para una sesión concreta o para el cine completo. + Todo esto unicamente para el cine con el cual esta relacionado. +

    +
    +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/fdicines/index.php b/fdicines/index.php new file mode 100644 index 0000000..10f3c9f --- /dev/null +++ b/fdicines/index.php @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/fdicines/miembros/index.php b/fdicines/miembros/index.php new file mode 100644 index 0000000..c25d1c4 --- /dev/null +++ b/fdicines/miembros/index.php @@ -0,0 +1,145 @@ + +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NombreEmail
    Marco Expósito Pérezmarcoexp@ucm.es
    Fernando Méndez Torrubianofernmend@ucm.es
    Daniel Muñoz Garcíadanimu03@ucm.es
    Ioan Marian Tulaiioantula@ucm.es
    Óscar Ruiz de Pedrooscarrui@ucm.es
    Adrian Real del Novaladrireal@ucm.es
    +
    '; + + //Specific page content: + $section = ' +
    +
    +
    + +
    +
    +
    + +

    ~ Marco Expósito Pérez (marcoexp@ucm.es)

    +
    +

    Aficionado a todo tipo de videojuegos, principalmente la saga Zelda. Tambien me gusta leer tanto literatura fantastica como mangas y veo anime asiduamente.

    +

    En verano suelo participar en campeonatos de pesca subacuatica y tambien me gusta bastante jugar al futbol federado, aunque hace un tiempillo ya que no hago.

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +

    ~ Fernando Méndez (fernmend@ucm.es)

    +
    +

    Estudiante de Ingeniería de Computadores en la Universidad Complutense de Madrid.

    +

    Presidente de la asociación Diskobolo. Colaborador de la Oficina de Sotfware Libre de la UCM y coordinador del grupo de Hacking Ético de la FDI.

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +

    ~ Daniel Muñoz García (danimu03@ucm.es)

    +
    +

    Estudiante del grado en ingeniería informática en la Universidad Complutense de Madrid. Aficionado a la ciberseguridad y las nuevas tecnologías.

    +

    Especializado en el diseño y gestión de bases de datos, tanto SQL como noSQL, y su desarrollo con distintos lenguajes como MongoDB o MySQL.

    +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +

    ~ Ioan Marian Tulai (ioantula@ucm.es)

    +
    +

    Estudiante con mucha ilusion y ganas de trabajar especialista en hardware.

    +

    Alta experiencia programando en C, gran interés en aprender nuevos lenguajes de programación y aficionado a dibujar.

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +

    ~ Óscar Ruiz de Pedro (oscarrui@ucm.es)

    +
    +

    Estudiante de ingeniería de computadores en la Universidad Complutense de Madrid.

    +

    Altas capacidades de programación en bajo nivel, me gustaría aprender más sobre el ámbito de la robótica.

    +

    Aficionado a todo tipo de videojuegos, impresión 3D, teatro y airsoft.

    +
    +
    +
    +
    +
    +
    + +
    +
    +
    + +

    ~ Adrian Real del Noval (adrireal@ucm.es)

    +
    +

    Estudiante de 3er año de Ingeniería de Computadores en la Universidad Complutense de Madrid.

    +

    Las áreas en las que tiene mayor interés son la electrónica, las GPUs, y los sistemas empotrados.

    +
    +
    +
    +
    +
    +
    +
    '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/fdicines/planificacion/index.php b/fdicines/planificacion/index.php new file mode 100644 index 0000000..c8fc730 --- /dev/null +++ b/fdicines/planificacion/index.php @@ -0,0 +1,272 @@ + +
    +
    +
    +
    +

    Tareas

    +
    +
    +

    Implementaciones Generales de la Web

    +
      +
    • Pantalla de Inicio (incluye promociones y estrenos) [Fer && Adrián]
    • +
    • Cartelera Dinámica [Fer --> Marian && Daniel]
    • +
    • Selección Cines (mapa) [Fer]
    • +
    • Listado de Horarios [Fer]
    • +
    • Selección de butacas [Fer --> Marco && Óscar]
    • +
    • Pagar + opción para código promocional [Fer]
    • +
    • Sobre FDI-Cines (About us) [Fer && Adrián]
    • +
    • Formulario de Contacto [Fer]
    • +
    • Términos y Condiciones [Fer && Adrián]
    • +
    +
    +
    +

    Paneles de Usuario Registrado

    +
      +
    • Registrarse e Iniciar sesión [Adrián]
    • +
    • Menú y panel de Usuario (Historial compras, cambiar contraseña, datos de pago y eliminar usuario) [Adrián]
    • +
    +
    +
    +

    Paneles de Gerente

    +
      +
    • Pantalla de inicio de gerente [Marco && Óscar]
    • +
    • Eliminar sesión de una película [Marco && Óscar]
    • +
    • Deshabilitar salas [Marco && Óscar]
    • +
    • Deshabilitar asientos en una sala [Marco && Óscar]
    • +
    +
    +
    +

    Paneles de Administrador

    +
      +
    • Panel de inicio administrador (ver todas la funcionalidades de admin de un vistazo) [Daniel && Marian]
    • +
    • Ver como >> Usuario no registrado || Usuario registrado || (Gerente: Añadir si vamos bien de tiempo) [Daniel && Marian]
    • +
    • Panel añadir/editar/eliminar cine [Marian && Daniel]
    • +
    • Panel añadir/editar/eliminar películas a la cartelera [Marian && Daniel]
    • +
    • Panel añadir/editar/eliminar promociones [Marian && Daniel]
    • +
    • Panel añadir/editar/eliminar gerentes [Marian && Daniel]
    • +
    +
    +
    +
    +
    +
    +

    Divisón del trabajo

    +
    +
    +

    Marco Expósito Pérez

    +
      +
    • Pantalla de inicio de gerente [Gerente]
    • +
    • Eliminar sesión de una película [Gerente]
    • +
    • Deshabilitar salas [Gerente]
    • +
    • Deshabilitar asientos en una sala [Gerente]
    • +
    • Selección de butacas [General (de apoyo)]
    • +
    +
    +
    +

    Fernando Méndez Torrubiano

    +
      +
    • Pantalla de Inicio (incluye promociones y estrenos) [General]
    • +
    • Cartelera Dinámica [General]
    • +
    • Selección Cines (mapa) [General]
    • +
    • Listado de Horarios [General]
    • +
    • Selección de butacas [General]
    • +
    • Pagar + opción para código promocional [General]
    • +
    • Sobre FDI-Cines (About us) [General (de apoyo)]
    • +
    • Formulario de Contacto [General]
    • +
    • Términos y Condiciones [General (de apoyo)]
    • +
    +
    +
    +

    Daniel Muñoz García

    +
      +
    • Panel de inicio administrador (ver todas la funcionalidades de admin de un vistazo) [Administrador]
    • +
    • Ver como >> Usuario no registrado || Usuario registrado || (Gerente: Añadir si vamos bien de tiempo) [Administrador]
    • +
    • Panel añadir/editar/eliminar cine [Administrador]
    • +
    • Panel añadir/editar/eliminar películas a la cartelera [Administrador]
    • +
    • Panel añadir/editar/eliminar promociones [Administrador]
    • +
    • Panel añadir/editar/eliminar gerentes [Administrador]
    • +
    +
    +
    +

    Ioan Marian Tulai

    +
      +
    • Panel de inicio administrador (ver todas la funcionalidades de admin de un vistazo) [Administrador]
    • +
    • Ver como >> Usuario no registrado | Usuario registrado | (Gerente: Añadir si vamos bien de tiempo) [Administrador]
    • +
    • Panel añadir/editar/eliminar cine [Administrador]
    • +
    • Panel añadir/editar/eliminar películas a la cartelera [Administrador]
    • +
    • Panel añadir/editar/eliminar promociones [Administrador]
    • +
    • Panel añadir/editar/eliminar gerentes [Administrador]
    • +
    +
    +
    +

    Óscar Ruiz de Pedro

    +
      +
    • Pantalla de inicio de gerente [Gerente]
    • +
    • Eliminar sesión de una película [Gerente]
    • +
    • Deshabilitar salas [Gerente]
    • +
    • Deshabilitar asientos en una sala [Gerente]
    • +
    • Selección de butacas [General (de apoyo)]
    • +
    +
    +
    +

    Adrian Real del Noval

    +
      +
    • Registrarse e Iniciar sesión [Usuario Registrado]
    • +
    • Menú y panel de Usuario (Historial compras, cambiar contraseña, datos de pago y eliminar usuario) [Usuario Registrado]
    • +
    • Sobre FDI-Cines (About us) [General]
    • +
    • Términos y Condiciones [General]
    • +
    • Pantalla de Inicio (incluye promociones y estrenos) [General (de apoyo)]
    • +
    +
    +
    +
    +
    +
    +

    Plazos

    +
    +
    +

    Práctica 1 [HTML]

    +
    100%
    +
      +
    • Inicio
    • +
    • Detalles
    • +
    • Bocetos
    • +
    • Miembros
    • +
    • Planificación
    • +
    • Contacto
    • +
    +
    +
    +

    Práctica 2 [HTML + PHP]

    +
    100%
    +
      +
    • Sobre FDI-Cines (About us) [Fer && Adrián]
    • +
    • Formulario de Contacto [Fer]
    • +
    • Términos y Condiciones [Fer && Adrián]
    • +
    • Pantalla de inicio de gerente [Marco && Óscar]
    • +
    +
    75%
    +
      +
    • Pantalla de Inicio (incluye promociones y estrenos) [Fer && Adrián]
    • +
    • Listado de Horarios [Fer]
    • +
    +
    50%
    +
      +
    • Menú y panel de Usuario (Historial compras, cambiar contraseña, datos de pago y eliminar usuario) [Adrián]
    • +
    • Eliminar sesión de una película [Marco && Óscar]
    • +
    • Deshabilitar salas [Marco && Óscar]
    • +
    • Panel de inicio administrador (ver todas la funcionalidades de admin de un vistazo) [Daniel && Marian]
    • +
    • Panel añadir/editar/eliminar cine [Marian && Dani]
    • +
    • Panel añadir/editar/eliminar películas a la cartelera [Marian && Dani]
    • +
    +
    25%
    +
      +
    • Registrarse && Iniciar sesión [Adrián]
    • +
    • Deshabilitar asientos en una sala [Marco && Óscar]
    • +
    • Ver como >> Usuario no registrado | Usuario registrado | (Gerente: Añadir si vamos bien de tiempo) [Daniel && Marian]
    • +
    • Panel añadir/editar/eliminar promociones [Marian && Dani]
    • +
    • Panel añadir/editar/eliminar gerentes [Marian && Dani]
    • +
    +
    +
    +

    Práctica 3 [HTML + PHP + CSS]

    +
    100%
    +
      +
    • Eliminar sesión de una película [Marco && Óscar]
    • +
    • Deshabilitar salas [Marco && Óscar]
    • +
    +
    75%
    +
      +
    • Registrarse && Iniciar sesión [Adrián]
    • +
    • Menú y panel de Usuario (Historial compras, cambiar contraseña, datos de pago y eliminar usuario) [Adrián]
    • +
    • Panel de inicio administrador (ver todas la funcionalidades de admin de un vistazo) [Daniel && Marian]
    • +
    • Panel añadir/editar/eliminar cine [Marian && Dani]
    • +
    • Panel añadir/editar/eliminar películas a la cartelera [Marian && Dani]
    • +
    +
    50%
    +
      +
    • Deshabilitar asientos en una sala [Marco && Óscar]
    • +
    • Ver como >> Usuario no registrado | Usuario registrado | (Gerente: Añadir si vamos bien de tiempo) [Daniel && Marian]
    • +
    • Panel añadir/editar/eliminar promociones [Marian && Dani]
    • +
    • Panel añadir/editar/eliminar gerentes [Marian && Dani]
    • +
    +
    +
    +

    Entrega Final [HTML + PHP + CSS + JS]

    +
    100%
    +
      +
    • Todo el trabajo restante.
    • +
    +
    +
    +
    +
    +
    + + +
    +

    Línea Temporal

    +
    +
    +
    + + +
    +

    Hitos

    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    HitoFecha estimadaEstado
    Práctica 04 de Marzo de 2021ENTREGADO
    Práctica 118 de Marzo de 2021ENTREGADO
    Práctica 215 de Abril de 2021ENTREGADO
    Práctica 314 de Mayo de 2021ENTREGADO
    Entrega Final9 de Junio de 2021EN PROCESO
    +
    + + +
    +

    + *Esta planificación es orientativa y puede ir cambiando a lo largo del tiempo + en función de los requisitos de las prácticas y nuestra carga de trabajo. +

    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> + \ No newline at end of file diff --git a/fdicines/terms_conditions/index.php b/fdicines/terms_conditions/index.php new file mode 100644 index 0000000..875e6c2 --- /dev/null +++ b/fdicines/terms_conditions/index.php @@ -0,0 +1,193 @@ + +
    +
    +

    + Todo usuario que desee acceder a la compra de entradas a través del servicio, primero debe leer y aceptar los Términos y Condiciones de compra que a continuación se detallan. + Una vez que inicie la navegación a través de esta web el internauta adquiere la condición de USUARIO, y una vez que cumplimente los pasos establecidos para la compra de + entradas de cine, tendrá la consideración de CLIENTE. En cumplimiento de lo dispuesto en el Real Decreto 1906/99 de diecisiete de diciembre, por la que se regula la + contratación electrónica con condiciones generales, y de la Ley de Ordenación del Comercio Minorista (Ley 7/1996 de 15 de Enero, modificada por la Ley 47/2002 de 19 de + Diciembre) en lo aplicable a lo dispuesto sobre las ventas a distancia en los artículos 38 y siguientes, FDI-Cines (en adelante la EMPRESA) informa: +


    +

    + Las presentes Condiciones Generales de Contratación suponen la regulación general de los servicios prestados por + la EMPRESA a través del portal complucine.sytes.net, constituyendo el marco jurídico que desarrolla la relación contractual. La EMPRESA ofrece como intermediario el + servicio de venta de entradas para cines, a través de la web https://complucine.sytes.net. Las presentes Condiciones Generales, están sujetas a lo dispuesto a la Ley 7/1988, + de 13 de abril, sobre Condiciones Generales de Contratación, a la Ley 26/1984, de 19 de julio, General para la Defensa de Consumidores y Usuarios, al Real Decreto 1906/1999, + de 17 de diciembre de 1999, por el que se regula la Contratación Telefónica o Electrónica con condiciones generales, la Ley Orgánica 15/1999, de 13 de diciembre, de Protección + de Datos de Carácter Personal, la Ley 7/1996, de 15 de enero de Ordenación del Comercio Minorista, y a la Ley 34/2002 de 11 de julio, de Servicios de la Sociedad de la + Información y de Comercio Electrónico. Los servicios ofrecidos por complucine.sytes.net podrán ser contratados por cualesquiera usuarios que residan en España o en otro + Estado miembro de la Unión Europea o del Espacio Económico Europeo y por aquellos usuarios que, residiendo en un Estado no perteneciente a la Unión Europea o al Espacio + Económico Europea, les sea de aplicación la legislación española. Este documento es accesible en todo momento en la web de la EMPRESA y puede ser impreso y almacenado + por el CLIENTE. +


    + +
      +
    1. + OBJETO DEL CONTRATO El contrato tiene por objeto regular las condiciones generales de prestación de los servicios ofrecidos por la EMPRESA a través de + complucine.sytes.net. Los servicios que la EMPRESA presta actualmente y que son objeto de este contrato son por un lado,los servicios de información, de acceso gratuito, + y por otro el servicio de venta de entradas para salas de cine. El servicio de venta de entradas de cine es de carácter oneroso, y el precio de cada entrada está determinado + en cada momento en la web. El acceso a la información concerniente a los apartados cartelera, cines, estrenos y noticias es libre, no sujeto a pago alguno. +

    2. +
    3. + IDENTIFICACIÓN DE LAS PARTES CONTRATANTES. Las presentes condiciones generales de contratación del servicio ofrecido por la EMPRESA son suscritas, de una parte, + por la empresa identificada en este documento. Y, de otra parte, por el CLIENTE, cuyos datos introducidos para + realizar la compra de entradas o para realizar alguna sugerencia, a través del formulario establecido al efecto, son los que han sido consignados por él mismo. + Todos los datos incluidos en él han sido introducidos directamente por el cliente, por lo que la responsabilidad sobre la autenticidad de los mismos corresponde, directa + y exclusivamente, al CLIENTE. Para tener acceso al servicio de compra de entradas del portal, se requiere la cumplimentación de todos los datos no marcados como opcionales + solicitados para realizar la compra. +

    4. +
    5. + OBLIGACIONES RELATIVAS AL PROCEDIMIENTO DE COMPRA El CLIENTE es el único responsable de la veracidad de los datos introducidos por él mismo en el procedimiento + de compra, y acepta la obligación de facilitar datos veraces, exactos y completos. Si el CLIENTE incumple esta obligación, quedará bajo su responsabilidad el responder por + los posibles daños y perjuicios producidos a la EMPRESA o a un tercero. 4. CONDICIONES DEL SERVICIO Las presentes condiciones son de aplicación al servicio de venta de + entradas de cine ofrecido por la EMPRESA a través de la web complucine.sytes.net. Las condiciones comerciales de este servicio y las ofertas que eventualmente puedan + llevarse a cabo por la EMPRESA siempre aparecen en la mencionada página web por lo que pueden ser consultadas, archivadas o impresas. La EMPRESA se reserva el derecho de + modificar en cualquier momento las presentes Condiciones Generales de Uso así como cualesquiera otras condiciones generales o particulares, reglamentos de uso o avisos que + resulten de aplicación. La EMPRESA podrá modificar las Condiciones Generales notificándolo a los CLIENTES con antelación suficiente, con el fin de mejorar los servicios + y productos ofrecidos a través de complucine.sytes.net. Mediante la modificación de las Condiciones Generales expuestas en la página Web de www.compraentradas.com, se + entenderá por cumplido dicho deber de notificación. En todo caso, antes de utilizar los servicios o contratar productos, se pondrán consultar las Condiciones General es. + Asimismo se reserva el derecho a modificar en cualquier momento la presentación, configuración y localización del Sitio Web, así como los contenidos y las condiciones + requeridas para utilizar los mismos. El CLIENTE formalizará su compra de entradas de cine mediante el cumplimiento de todas las fases establecidas en el apartado COMPRA + DIRECTA y su envío telemático. 5. USO DEL SERVICIO Y RESPONSABILIDADES La EMPRESA no será responsable de los retrasos o fallos que se produjeran en el acceso, + funcionamiento y operatividad de la web, o en sus servicios y/o contenidos, así como tampoco de las interrupciones, suspensiones o el mal funcionamiento de la misma, + cuando tuvieren su origen en averías producidas por catástrofes naturales o situaciones de fuerza mayor , o de urgencia extrema, tales como huelgas, ataques o intrusiones + informáticas o cualquier otra situación de fuerza mayor o causa fortuita, así como por errores en las redes telemáticas de transferencia de datos. La EMPRESA no se hace + responsable de la fiabilidad, veracidad y exactitud de los contenidos ofrecidos en su web. El CLIENTE se compromete a cumplir con lo establecido en el AVISO LEGAL publicado + por la EMPRESA en la web complucine.sytes.net en cada momento. El CLIENTE reconoce y acepta que el acceso y uso del sitio web complucine.sytes.net y de los contenidos + incluidos en el mismo tiene lugar de forma libre y conscientemente, bajo su exclusiva responsabilidad. El CLIENTE se compromete a hacer un uso adecuado y lícito del Sitio + Web y de los contenidos, de conformidad con la legislación aplicable, las presentes Condiciones Generales de Uso, la moral y buenas costumbres generalmente aceptadas y + el orden público. +

    6. +
    7. + PROCEDIMIENTO DE COMPRA A través del apartado COMPRA DIRECTA el CLIENTE puede adquirir la/s entrada/s de cine telemáticamente. Los pasos a seguir son los + siguientes: +
        +
      • + OPCIONES PARA LA COMPRA Al pulsar sobre cualquier opción del sitio web, se cargarán las páginas que le permitirán, a través de una serie de menús, + seleccionar la película, cine, día y sesión a la que desea acudir. Cada menú se genera en función de la opción seleccionada en el menú anterior. Una vez completada la + selección podrá acceder al patio de butacas del cine y seleccionar las localidades que más le gusten. +
      • +
      • + SOLICITUD DE BUTACAS En el patio de butacas, las butacas en color verde representan los asientos que están disponibles. En las butacas ocupadas aparecerá el dibujo de una persona sentada. Para seleccionar + las localidades deseadas, pulse con el ratón sobre ellas; a medida que las pulse se pondrán de color blanco. Si se equivoca vuelva a pulsar sobre la butaca y volverá a + ponerse de color verde. Cuando termine de seleccionar las localidades pulse sobre el botón Solicitar y entrará en una página en la que se le pedirán los datos de la tarjeta + con la que desea pagar las entradas. NOTA: Las localidades han de seleccionarse juntas y en la misma fila. El máximo de localidades que se pueden solicitar es de 10. +
      • +
      • + ACEPTACIÓN DE LA PROPUESTA DEL CINE Una vez solicitadas las butacas, el cine respondera si aun siguen estando disponibles, en ese caso se procede al pago. +
      • +
      • + DATOS PARA EL PAGO En esta página debe introducirse un número de tarjeta y su caducidad; con la que abonar el importe de las entradas. Asimismo, también aparece un campo donde + opcionalmente-, se puede introducir un correo electrónico de contacto el cual es útil para informar al usuario en caso de que se suspendiera alguna sesión, se realizara + una reubicacion, etc. Tras introducir los datos para el pago, pulse sobre el botón Continuar. +
      • +
      • + CONFIRMACIÓN DE LA VENTA Si el proceso de compra se completa correctamente, le aparecerá una página de confirmación en la que se reflejan las características de las localidades adquiridas, así como un numero de referencia. El número de referencia + identifica su compra de forma única y será necesario en caso de que usted desee realizar alguna consulta. Dado que es un número de bastantes cifras si lo desea puede usted + sacar una copia en papel de dicha página pulsando sobre el botón imprimir o descargándolo en su ordenador. +
      • +
      • + DENEGACIÓN DE LA VENTA Por diversas razones como son: falta de comunicación con la entidad emisora de su tarjeta, pérdida temporal de la comunicación con el cine, etc.; puede que al sistema le resulte imposible realizar la compra. + En tal caso, le aparecerá una página indicándole tal circunstancia así como una referencia. Si desea realizar alguna consulta, utilice dicho número de referencia para que + podamos atenderle. +
      • +
      • + RECOGIDA DE ENTRADAS Cerca de las taquillas del cine, el CLIENTE encontrará un buzón instalado a tal efecto, en el que puede introducir la tarjeta + con la que realizó la compra y le emitirá sus entradas. Si tuviera alguna dificultad en localizar el buzón puede consultar al personal del cine. Si el CLIENTE tuviera algún + inconveniente a la hora de recoger las entradas, deberá asegurarse de haber introducido la tarjeta en la posición correcta, los buzones tienen un dibujo que muestra como. + Si por alguna razón el buzón no le dispensa las entradas, como por ejemplo que se haya quedado sin papel, deberá acudir a las taquillas con la tarjeta. +
      • +
      +

    8. +
    9. + IDIOMA La información y contenidos ofrecidos por la EMPRESA a través de la web complucine.sytes.net se ofrecen en idioma español. La EMPRESA no se hace + responsable de los daños o perjuicios que pudieran ocasionar al CLIENTE por la no comprensión de los mismos. +

    10. +
    11. + NORMAS RELATIVAS A LA FORMACIÓN Y VALIDEZ DEL CONTRATO EL CLIENTE entiende que la información contenida en la web, de información general sobre cartelera, + estrenos, cines, noticias, IVA, comisiones, así como las condiciones generales de contratación y perfeccionamiento del contrato, son bastantes y suficientes para la exclusión + de error en la formación del consentimiento. Las presentes condiciones generales de contratación, pasarán a formar parte del contrato en el momento de aceptación por parte + del CLIENTE, manifestada por medio de la cumplimentación y envío de los datos de compra introducidos en el apartado COMPRA DIRECTA. 9. VALIDEZ DEL PROCEDIMIENTO DE COMPRA + COMO PRUEBA DE ACEPTACIÓN Ambas partes declaran expresamente que la aceptación de la oferta de servicio de la EMPRESA por el CLIENTE se lleva a cabo a través del seguimiento + del procedimiento de compra descrito en el apartado COMPRA DIRECTA. El hecho de cumplimentar telemáticamente todos los pasos descritos para el proceso de compra de la/s + entrada/s por el CLIENTE supone la aceptación integra y expresa de las presentes condiciones generales. 10. PERFECCIÓN DEL CONTRATO El contrato quedará perfeccionado desde + la fecha en que el CLIENTE manifieste su conformidad con las presentes condiciones o, en su caso, las publicadas en el momento de realizar la compra, mediante la aportación + de los datos solicitados en el apartado DATOS PARA EL PAGO, de la sección COMPRA DIRECTA, y una vez que el CLIENTE confirme la compra efectuada. +

    12. +
    13. + PAGO La EMPRESA cobrará al CLIENTE por la prestación del servicio las tarifas vigentes en cada momento en la web y que aparecerán una vez seleccionada la película, + cine, día y sesión, apartado éste último, en el que aparecerá el precio correspondiente a la selección efectuada y los impuestos aplicables. Una vez seleccionada/s la/s + butaca/s, se abrirá la sección correspondiente al pago, con la petición de introducción de los datos de la tarjeta de crédito, en la cual se detallará el precio y la comisión + correspondiente a cada butaca. +

    14. +
    15. + DERECHO DE DESISTIMIENTO El CLIENTE debe asegurarse fehacientemente antes de tramitar la reserva de la exactitud y adecuación de los datos + introducidos, ya que no es posible la devolución de las entradas adquiridas una vez realizada la compra. No poder asistir al espectáculo o cometer un error al adquirir las + entradas no son motivos que permitan su devolución. Sólo podrán anularse entradas por posibles incidencias técnicas u operativas, imputables a la EMPRESA. El usuario no podrá + ejercitar el derecho de desistimiento o resolución previsto en el artículo 44 de la ley 47/2002 de 19 de diciembre de reforma de la Ley 7/1996, de 15 de enero, de Ordenación + del Comercio Minorista, al estar excluido en el artículo 45 b). Tampoco podrá ser ejercido por el usuario el derecho de Resolución previsto en el artículo 4 del R.D. + 1906/19999, de 17 de diciembre, al estar excluido el ejercicio del mismo en el artículo 4.5. No obstante lo anterior, cuando el importe de una compra hubiese sido cargado + fraudulenta o indebidamente, utilizando el número de una tarjeta de pago, el titular de la misma podrá solicitar la anulación del cargo a la EMPRESA siempre y cuando se + acredite la previa presentación de denuncia por estos hechos. La devolución del importe de las mismas se realizará mediante reclamación por escrito, a la que deberán + acompañarse los documentos (denuncia) que acredite n la pérdida o robo de la tarjeta con la que se efectuó el pago. Sin embargo, si la compra hubiese sido efectivamente + realizada por el titular de la tarjeta y la exigencia de devolución no fuera consecuencia de haberse ejercido el derecho de desistimiento o de resolución reconocido en el + artículo 44 y, por tanto, hubiese exigido indebidamente la anulación del correspondiente cargo, aquel quedará obligado frente al vendedor al resarcimiento de los daños y + perjuicios ocasionados como consecuencia de dicha anulación. La EMPRESA pretende facilitar tanto a promotores como al público la adquisición de dichas entradas pero en ningún + momento la EMPRESA es la entidad promotora del espectáculo. +

    16. +
    17. + RECLAMACIONES Para cualquier aclaración sobre las presentes condición es generales o para realizar cualquier + reclamación relativa a su compra, el CLIENTE tiene a su disposición las direcciones especificadas al principio de este documento. +

    18. +
    19. + DURACIÓN Y TERMINACIÓN La prestación del servicio de la web complucine.sytes.net tiene una duración indefinida. No obstante,la EMPRESA está autorizada para + dar por terminada o suspender la prestación del servicio en cualquier momento, sin perjuicio de lo que se hubiere dispuesto al respecto en las correspondientes condiciones + generales. Cuando ello sea razonablemente posible, la EMPRESA advertirá previamente la terminación o suspensión de la prestación del servicio. +

    20. +
    21. + PROPIEDAD INTELECTUAL E INDUSTRIAL El CLIENTE acepta que todos los derechos de propiedad industrial e intelectual sobre los contenidos y cualesquiera otros + elementos insertados en la web complucine.sytes.net pertenecen a la EMPRESA. La EMPRESA es titular de los elementos que integran el diseño gráfico de su página web, los + menús, botones de navegación, el código HTML, los textos, imágenes, texturas, gráficos y cualquier otro contenido de la página web o, en cualquier caso, dispone de la + correspondiente autorización para la utilización de dichos elementos. El contenido de la web no podrá ser reproducido ni en todo ni en parte, ni transmitido, ni registrado + por ningún sistema de recuperación de información, en ninguna forma ni en ningún medio, a menos que se cuente con la autorización previa, por escrito, de la citada Entidad. + Asimismo queda prohibido suprimir, eludir o manipular el copyright y demás datos identificativos de los derechos de la EMPRESA, así como los dispositivos técnicos de + protección, o cualquiera mecanismos de información que pudieren contener los contenidos. +

    22. +
    23. + PROTECCIÓN DE DATOS DE CARÁCTER PERSONAL La EMPRESA ha adoptado las medidas y niveles de seguridad de protección de los datos personales exigidos por la Ley + Orgánica 15/1999, de 13 de diciembre, de Protección de Datos de Carácter Personal y sus reglamentos de desarrollo. Los datos personales recabados a través de + complucine.sytes.net son objeto de tratamiento automatizado y se incorporan a un fichero titularidad de la EMPRESA, que es a su vez la responsable del mencionado fichero. + La cumplimentación de los datos correspondientes a la compra de entradas o del formulario de sugerencias en el sitio web www.cinentradas.com implica el consentimiento expreso + del CLIENTE a la inclusión de sus datos de carácter personal en el referido fichero automatizado de la EMPRESA. El Cliente titular de los datos puede ejercitar gratuitamente + sus derechos de acceso, rectificación, cancelación y oposición con arreglo a lo previsto en la Ley Orgánica 15/1999, de 13 de diciembre, de Protección de Datos de Carácter + Personal y demás normativa aplicable al efecto, mediante el envio de un correo electrónico a la dirección MARKETING@complucine.sytes.net, o bien mediante carta dirigida a la + dirección de la EMPRESA especificada al inicio de este documento. Ya sea por correo electrónico o postal, debera constar claramente la + identidad del titular de los datos de forma que permita reconocer la identidad del CLIENTE que ejercita cualquiera de los anteriores derechos, debiendo indicar asimismo la + dirección a la que EMPRESA deberá hacer llegar la respuesta.El citado fichero figura inscrito en el Registro General de la Agencia Española de Protección de Datos. La + finalidad de la recogida de datos no es otra que la de poder ofrecer al CLIENTE los servicios de venta de entradas, así como la de atender las sugerencias realizadas por + los mismos. +

    24. +
    25. + NULIDAD PARCIAL Si cualquier parte de estas condiciones de servicio fuera contraria a Derecho y, por tanto, inválida, ello no afectará a las otras disposiciones + conformes a Derecho. Las partes se comprometen a renegociar aquellas partes de las condiciones de servicio que resultaran nulas y a incorporarlas al resto de las condiciones + de servicio. +

    26. +
    27. + LEY APLICABLE Y JURISDICCIÓN COMPETENTE. El CLIENTE se somete, con renuncia expresa a cualquier otro fuero, a los juzgados y tribunales de la ciudad de + Madrid (España). Estas Condiciones Generales se rigen por la ley española. Ambas partes reconocen que la legislación aplicable al presente contrato, y a todas las relaciones + jurídicas dimanantes del mismo, será la española, por expresa aplicación de lo dispuesto en el artículo 1.262 del Código Civil, en relación a lo dispuesto en el Capítulo IV, + del Título Preliminar del mismo cuerpo legal. +

    28. +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> \ No newline at end of file diff --git a/index.php b/index.php new file mode 100644 index 0000000..b49ad5a --- /dev/null +++ b/index.php @@ -0,0 +1,18 @@ + +
    +
    +
    + '.$template->print_fimls().' +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/login/includes/formLogin.php b/login/includes/formLogin.php new file mode 100644 index 0000000..ddcb8b5 --- /dev/null +++ b/login/includes/formLogin.php @@ -0,0 +1,100 @@ + 'error')); + $errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error')); + + $html = "
    +
    ".$htmlErroresGlobales."
    + Datos Personales +
    ".$errorNombre."
    +
    ".$errorPassword."
    +
    +
    + + +
    +
    "; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + //$nombre = $this->test_input($datos['name']) ?? null; + $nombre = $datos['name'] ?? null; + $nombre = strtolower($nombre); + if ( empty($nombre) || mb_strlen($nombre) < 3 || mb_strlen($nombre) > 8 ) { + $result['name'] = "El nombre tiene que tener\n una longitud de al menos\n 3 caracteres\n y menos de 8 caracteres."; + } + + //$password = $this->test_input($datos['pass']) ?? null; + $password = $datos['pass'] ?? null; + if ( empty($password) || mb_strlen($password) < 4 ) { + $result['pass'] = "El password tiene que tener\n una longitud de al menos\n 4 caracteres."; + } + + if (count($result) === 0) { + $bd = new UserDAO('complucine'); + if($bd){ + $this->user = $bd->selectUser($nombre, $password); + if ($this->user) { + $this->user->setPass(null); + $_SESSION["user"] = serialize($this->user); + $_SESSION["nombre"] = $this->user->getName(); + $_SESSION["rol"] = $this->user->getRol(); + $_SESSION["login"] = true; + $result = 'validate.php'; + } else { + $result[] = "El usuario o el password\nno coinciden."; + } + } else { + $result[] = "Error al conectar con la BD."; + } + } + + return $result; + } + + //Returns validation response: + static public function getReply() { + + if(isset($_SESSION["login"])){ + $name = strtoupper($_SESSION['nombre']); + $reply = "

    Bienvenido {$name}


    +

    {$name}, has iniciado sesión correctamente.

    +

    Usa los botones para navegar

    + + \n"; + } + else if(!isset($_SESSION["login"])){ + $reply = "

    ERROR


    ". + "

    El usuario o contraseña no son válidos.

    +

    Vuelve a intetarlo o regístrate si no lo habías hecho previamente.

    + +
    \n"; + } + + return $reply; + } +} +?> \ No newline at end of file diff --git a/login/index.php b/login/index.php new file mode 100644 index 0000000..dc00623 --- /dev/null +++ b/login/index.php @@ -0,0 +1,73 @@ +getIsLogin(); + + //Forms: + require('includes/formLogin.php'); + require($prefix.'register/includes/formRegister.php'); + $formLogin = new FormLogin(); + $htmlFormLogin = $formLogin->gestiona(); + $formRegister = new FormRegister(); + $htmlFormRegister = $formRegister->gestiona(); + + if($isLogin){ + $form = " +
    +
    +

    ¿No tienes una cuenta?

    +
    +

    Para crear una cuenta de usuario es necesario haber rellenado el formulario de registro previamente

    +

    Haz click en el botón para registrate.

    +
    + +
    +
    +
    +
    +

    Iniciar Sesión

    + ".$htmlFormLogin." +
    "."\n"; + } else { + $form = " +
    +

    Registro

    + ".$htmlFormRegister." +
    +
    +
    +

    ¿Ya estás registrado?

    +
    +

    Si dispones de una cuenta de usuario, no es necesario que rellenes este formulario nuevamente

    +

    Haz click en el botón para iniciar sesión.

    +
    + +
    +
    +
    "."\n"; + } + + //Specific page content: + $section = ' +
    +
    + '.$form.' +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> \ No newline at end of file diff --git a/login/login_register_view.php b/login/login_register_view.php new file mode 100644 index 0000000..acaeda4 --- /dev/null +++ b/login/login_register_view.php @@ -0,0 +1,38 @@ +setIsLogin(true); + + if(array_key_exists('register', $_POST)){ + $this->setIsLogin(false); + } + else if(array_key_exists('login', $_POST)){ + $this->setIsLogin(true); + } + } + + //Methods: + private function setIsLogin($set){ + return $this->isLogin = $set; + } + + public function getIsLogin(){ + return $this->isLogin; + } + + public function getLogin(){ + return $this->login; + } + + public function getRegister(){ + return $this->register; + } + } +?> \ No newline at end of file diff --git a/login/validate.php b/login/validate.php new file mode 100644 index 0000000..c027625 --- /dev/null +++ b/login/validate.php @@ -0,0 +1,27 @@ + +
    +
    +
    +
    +
    + '.$reply.' +
    +
    +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; + +?> \ No newline at end of file diff --git a/logout/index.php b/logout/index.php new file mode 100644 index 0000000..6e8ab5b --- /dev/null +++ b/logout/index.php @@ -0,0 +1,40 @@ +Se ha cerrado la sesión
    ". + "

    Serás redirigido al inicio en unos segundos.
    + Haz clic aquí si tu navegador no te redirige automáticamente.

    \n"; + } + else{ + $reply = "

    Ha ocurrido un problema y no hemos podido finalizar la sesión

    ". + "

    Serás redirigido al inicio en unos segundos.
    + Haz clic aquí si tu navegador no te redirige automáticamente.

    \n"; + } + + //Specific page content: + $section = ' +
    +
    +
    +
    +
    + '.$reply.' +
    +
    +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; + +?> \ No newline at end of file diff --git a/panel_admin/includes/formAddCinema.php b/panel_admin/includes/formAddCinema.php new file mode 100644 index 0000000..ade4005 --- /dev/null +++ b/panel_admin/includes/formAddCinema.php @@ -0,0 +1,89 @@ +"./?state=mc"); + parent::__construct('formAddCinema',$op); + } + + protected function generaCamposFormulario($datos,$errores=array()){ + + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorName = self::createMensajeError($errores,'name','span',array('class'=>'error')); + $errorDirection = self::createMensajeError($errores,'direction','span',array('class'=>'error')); + $errrorPhone = self ::createMensajeError($errores,'phone',array('class'=>'error')); + + $html = '
    +
    '.$htmlErroresGlobales.' + Añadir cine +
    '.$errorName.'
    +
    '.$errorDirection.'
    +
    '.$errrorPhone.'
    +
    +
    + + +
    +
    '; + return $html; + } + + //Process form: + public function procesaFormulario($datos) { + $result =array(); + + $name = $this->test_input($datos['name'])??null; + + if(empty($name)){ + $result['name']= "El nombre no es válido"; + } + + $direction = $this -> test_input($datos['direction']) ?? null; + + if(empty($direction)){ + $result['direction'] = "La dirección no es valida"; + } + + $phone = $this -> test_input($datos['phone']) ?? null; + + if(empty($phone)){ + $result['phone'] = "El teléfono no es valido"; + } + + if(count($result)===0){ + + $bd = new Cinema_DAO('complucine'); + $exist = $bd -> GetCinema($name,$direction); + if(mysqli_num_rows($exist)!=0){ + $result[] = "Ya existe un cine con ese nombre o dirección"; + } + else{ + $bd->createCinema(null,$name,$direction,$phone); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha añadido el cine correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mc'; + } + $exist->free(); + } + return $result; + } + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formAddFilm.php b/panel_admin/includes/formAddFilm.php new file mode 100644 index 0000000..cbb7421 --- /dev/null +++ b/panel_admin/includes/formAddFilm.php @@ -0,0 +1,167 @@ + "./?state=mf", 'enctype' => 'multipart/form-data'); + parent::__construct('formAddFilm', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error')); + $errorDuration = self::createMensajeError($errores, 'duration', 'span', array('class' => 'error')); + $errorLanguage = self::createMensajeError($errores, 'language', 'span', array('class' => 'error')); + $errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error')); + $errorImage = self::createMensajeError($errores, 'img', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + AÑADIR PELÍCULA +
    '.$errorTittle.'
    +
    '.$errorDuration.'
    +
    '.$errorLanguage.'
    +
    '.$errorDescription.'
    +
    Imagen promocional:
    '.$errorImage.'

    +
    +
    + + +
    +
    + '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + + /* PROCESAR LA SUBIDA DE IMAGEN + $ok = count($_FILES) == 1 && $_FILES['archivo']['error'] == UPLOAD_ERR_OK; + if ( $ok ) { + $archivo = $_FILES['archivo']; + $nombre = $_FILES['archivo']['name']; + //1.a) Valida el nombre del archivo + $ok = $this->check_file_uploaded_name($nombre) && $this->check_file_uploaded_length($nombre) ; + + // 1.b) Sanitiza el nombre del archivo + //$ok = $this->sanitize_file_uploaded_name($nombre); + // + + // 1.c) Utilizar un id de la base de datos como nombre de archivo + + // 2. comprueba si la extensión está permitida + $ok = $ok && in_array(pathinfo($nombre, PATHINFO_EXTENSION), self::EXTENSIONS); + + // 3. comprueba el tipo mime del archivo correspode a una imagen image + $finfo = new \finfo(FILEINFO_MIME_TYPE); + $mimeType = $finfo->file($_FILES['archivo']['tmp_name']); + $ok = preg_match('/image\/*./', $mimeType); + + if ( $ok ) { + $tmp_name = $_FILES['archivo']['tmp_name']; + + if ( !move_uploaded_file($tmp_name, "../img/films/{$nombre}") ) { + $result['img'] = 'Error al mover el archivo'; + } + + //if ( !copy("../img/tmp/{$nombre}", "/{$nombre}") ) { + // $result['img'] = 'Error al mover el archivo'; + //} + + }else { + $result['img'] = 'El archivo tiene un nombre o tipo no soportado'; + } + } else { + $result['img'] = 'Error al subir el archivo.'; + } + */ + + $tittle = $this->test_input($datos['tittle']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $tittle) + if ( empty($tittle) ) { + $result['tittle'] = "El título no es válido"; + } + + $duration = $this->test_input($datos['duration']) ?? null; + //||!mb_ereg_match(self::HTML5_EMAIL_REGEXP, $duration) + if ( empty($duration) || $duration <0) { + $result['duration'] = "La duración no es válida"; + } + + $language = $this->test_input($datos['language']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $language) + if ( empty($language) ) { + $result['language'] = "El idioma no es válido"; + } + + $description = $this->test_input($datos['description']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $description) + if ( empty($language)) { + $result['language'] = "La descripcion no es válida"; + } + + if (count($result) === 0) { + $bd = new Film_DAO("complucine"); + + //FALTARIA SUBIR LA IMAGEN + $exist = $bd-> GetFilm($tittle,$language); + if(mysqli_num_rows($exist) != 0){ + $result[] = "Ya existe una nueva pelicula con el mismo titulo e idioma."; + } + else{ + + /* PROCESAR SUBIDA DE IMAGEN + $tmp_name = $_FILES['img']['tmp_name']; + if ( !move_uploaded_file($tmp_name, "../img/films/{$nombre}") ) { + $result[] = 'Error al mover el archivo'; + } + //else if ( !copy(DIR_ALMACEN. "/{$nombre}", DIR_ALMACEN_PROTEGIDO. "/{$nombre}") ) { + // $result[] = 'Error al mover el archivo'; + //} + */ + //else { + $bd->createFilm(null, $tittle,$duration,$language,$description, null); //Null hasta tener $nombre + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha añadido la pelicula correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mf'; + //} + + } + $exist->free(); + } + return $result; + } + + private function check_file_uploaded_name ($filename) { + return (bool) ((mb_ereg_match('/^[0-9A-Z-_\.]+$/i',$filename) === 1) ? true : false ); + } + private function check_file_uploaded_length ($filename) { + return (bool) ((mb_strlen($filename,'UTF-8') < 250) ? true : false); + } + +} +?> \ No newline at end of file diff --git a/panel_admin/includes/formAddManager.php b/panel_admin/includes/formAddManager.php new file mode 100644 index 0000000..88a207c --- /dev/null +++ b/panel_admin/includes/formAddManager.php @@ -0,0 +1,142 @@ + "./?state=mg"); + parent::__construct('formAddManager', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + $errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error')); + + $html = '
    '.$htmlErroresGlobales.'
    + Selecciona usuario.
    '.$errorId.'
    ' + .$this->showUsers(). + '
    +
    + Selecciona cine.
    '.$errorIdCinema.'
    ' + .$this->showCinemas(). + '
    +
    + + +
    + + '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $id = $this->test_input($datos['id']) ?? null; + if (is_null($id) ) { + $result['id'] = "ERROR. No existe un usuario con ese ID"; + } + + $idcinema = $this->test_input($datos['idcinema']) ?? null; + //||!mb_ereg_match(self::HTML5_EMAIL_REGEXP, $duration) + if (empty($idcinema)) { + $result['idcinema'] = "ERROR. No existe un cine con ese ID"; + } + + + if (count($result) === 0) { + $bd = new Manager_DAO("complucine"); + + // check if already exist a manager with same name + $exist = $bd->GetManagerCinema($id, $idcinema); + if( mysqli_num_rows($exist) != 0){ + $result[] = "Ya existe un manager asociado a este usuario y cine"; + } + else{ + $bd->createManager($id, $idcinema); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha añadido el gerente correctamente en la base de datos.

    + +
    +
    +
    + "; + $result = './?state=mg'; + } + $exist->free(); + + + } + return $result; + } + + private function showUsers() { + $user = new UserDAO("complucine"); + $users = $user->allUsersNotM(); + $ids = array(); + $usernames = array(); + $emails = array(); + $roles = array(); + + + foreach($users as $key => $value){ + $ids[$key] = $value->getId(); + $usernames[$key] = $value->getName(); + $emails[$key] = $value->getEmail(); + $roles[$key] = $value->getRol(); + } + $html=''; + for($i = 0; $i < count($users); $i++){ + $html .= ' + + '; + } + return $html; + } + + private function showCinemas() { + $cine = new Cinema_DAO("complucine"); + $cinemas = $cine->allCinemaData(); + $ids = array(); + $names = array(); + $directions = array(); + $phones = array(); + + foreach($cinemas as $key => $value){ + $ids[$key] = $value->getId(); + $names[$key] = $value->getName(); + $directions[$key] = $value->getDirection(); + $phones[$key] = $value->getPhone(); + } + $html = ''; + for($i = 0; $i < count($cinemas); $i++){ + $html.= ' + + '; + } + return $html; + } + + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formAddPromotion.php b/panel_admin/includes/formAddPromotion.php new file mode 100644 index 0000000..bb92600 --- /dev/null +++ b/panel_admin/includes/formAddPromotion.php @@ -0,0 +1,107 @@ + "./?state=mp"); + parent::__construct('formAddPromotion', $op); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error')); + $errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error')); + $errorCode = self::createMensajeError($errores, 'code', 'span', array('class' => 'error')); + $errorActive = self::createMensajeError($errores, 'active', 'span', array('class' => 'error')); + //$errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + AÑADIR PROMOCIÓN +
    '.$errorTittle.'
    +
    '.$errorDescription.'
    +
    '.$errorCode.'
    +
    '.$errorActive.'
    +
    Imagen promocional:
    +
    +
    + + +
    +
    +
    '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $tittle = $this->test_input($datos['tittle']) ?? null; + + if ( empty($tittle) ) { + $result['tittle'] = "El título no es válido"; + } + + $description = $this->test_input($datos['description']) ?? null; + + if ( empty($description)) { + $result['description'] = "La descripcion no es válida"; + } + + $code = $this->test_input($datos['code']) ?? null; + + if ( empty($code) ) { + $result['code'] = "El idioma no es válido"; + } + + $active = $this->test_input($datos['active']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $description) + if ( $active>1 ||$active<0 ) { + $result['active'] = "La descripcion no es válida"; + } + + if (count($result) === 0) { + $bd = new Promotion_DAO("complucine"); + + //FALTARIA SUBIR LA IMAGEN + $exist = $bd-> GetPromotion($code); + if(mysqli_num_rows($exist) != 0){ + $result[] = "Ya existe una nueva promocion con el mismo codigo."; + } + else{ + $bd->createPromotion(null, $tittle,$description,$code,$active); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha añadido la promocion correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mp'; + + } + $exist->free(); + } + return $result; + } + + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formDeleteCinema.php b/panel_admin/includes/formDeleteCinema.php new file mode 100644 index 0000000..ddf429d --- /dev/null +++ b/panel_admin/includes/formDeleteCinema.php @@ -0,0 +1,75 @@ +"./?state=mc"); + parent::__construct('formAddCinema',$op); + } + + protected function generaCamposFormulario($datos,$errores=array()){ + + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + ¿Estás seguro de que quieres eliminar este cine? +
    '.$errorId.'
    +

    Name: '.$_POST['name'].'

    +

    Dirección: '.$_POST['direction'].'

    +

    Teléfono: '.$_POST['phone'].'

    +
    +
    + + +
    + '; + return $html; + } + + //Process form: + public function procesaFormulario($datos) { + $result =array(); + + $id = $this->test_input($datos['id'])??null; + + if(is_null($id)){ + $result['id']= "El nombre no es válido"; + } + + if(count($result)===0){ + $bd = new Cinema_DAO('complucine'); + $exist = $bd -> cinemaData($id); + if(mysqli_num_rows($exist)==1){ + $bd->deleteCinema($id); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha eliminado el cine correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mc'; + } + $exist->free(); + } + else{ + $result[] = "El cine seleccionado no existe."; + } + return $result; + } + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formDeleteFilm.php b/panel_admin/includes/formDeleteFilm.php new file mode 100644 index 0000000..ec890ac --- /dev/null +++ b/panel_admin/includes/formDeleteFilm.php @@ -0,0 +1,86 @@ + "./?state=mf"); + parent::__construct('formDeleteFilm', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + //$errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error')); + //$errorDuration = self::createMensajeError($errores, 'duration', 'span', array('class' => 'error')); + //$errorLanguage = self::createMensajeError($errores, 'language', 'span', array('class' => 'error')); + //$errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error')); + //$errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + ¿Estás seguro de que quieres eliminar esta pelicula? +
    '.$errorId.'
    +

    Id: '.$_POST['id'].'

    +

    Título: '.$_POST['tittle'].'

    +

    Duración: '.$_POST['duration'].'

    +

    Idioma: '.$_POST['language'].'

    +

    Descripción: '.$_POST['description'].'

    +
    +
    + + +
    +
    '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + $id = $this->test_input($datos['id']) ?? null; + if ( is_null($id)) { + $result['id'] = "La pelicula seleccionada no existe."; + } + + if (count($result) === 0) { + $bd = new Film_DAO("complucine"); + $exist = $bd-> FilmData($id); + if( mysqli_num_rows($exist) == 1){ + $bd->deleteFilm($id); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha eliminado la pelicula correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mf'; + } + else{ + $result[] = "La pelicula seleccionada no existe."; + } + + $exist->free(); + } + return $result; + } + + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formDeleteManager.php b/panel_admin/includes/formDeleteManager.php new file mode 100644 index 0000000..95bc22d --- /dev/null +++ b/panel_admin/includes/formDeleteManager.php @@ -0,0 +1,81 @@ + "./?state=mg"); + parent::__construct('formDeleteManager', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + //$errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + ¿Estás seguro de que quieres eliminar este gerente?
    '.$errorId.'
    + +

    Id: '.$_POST['id'].'

    +

    IdCinema: '.$_POST['idcinema'].'

    +

    Nombre: '.$_POST['username'].'

    +

    Email: '.$_POST['email'].'

    +

    Rol: '.$_POST['rol'].'

    +
    +
    + + +
    +
    '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $id = $this->test_input($datos['id']) ?? null; + if (is_null($id) ) { + $result['id'] = "ERROR. No existe un manager con ese ID"; + } + + if (count($result) === 0) { + $bd = new Manager_DAO('complucine'); + $exist = $bd-> GetManager($id); + if( mysqli_num_rows($exist) == 1){ + $bd->deleteManager($id); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha eliminado el gerente correctamente en la base de datos.

    + +
    +
    +
    "; + $result = './?state=mg'; + } + else{ + $result[] = "ERROR. No existe un manager con ese ID"; + } + + + } + return $result; + } + + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formDeletePromotion.php b/panel_admin/includes/formDeletePromotion.php new file mode 100644 index 0000000..e7585d1 --- /dev/null +++ b/panel_admin/includes/formDeletePromotion.php @@ -0,0 +1,89 @@ + "./?state=mp"); + parent::__construct('formEditPromotion', $op); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + //$errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error')); + //$errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error')); + //$errorCode = self::createMensajeError($errores, 'code', 'span', array('class' => 'error')); + //$errorActive = self::createMensajeError($errores, 'active', 'span', array('class' => 'error')); + //$errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + ¿Estás seguro de que quieres eliminar esta promocion? +
    '.$errorId.'
    +

    Id: '.$_POST['id'].'

    +

    Nombre: '.$_POST['tittle'].'

    +

    Description:'.$_POST['description'].'

    +

    Codigo: '.$_POST['code'].'

    +

    Activa: '.$_POST['active'].'

    +
    Imagen promocional:
    +
    +
    + + +
    +
    +
    '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $id = $this->test_input($_POST['id']) ?? null; + if ( is_null($id)) { + $result['id'] = "La promoción seleccionada no existe."; + } + + if (count($result) === 0) { + $bd = new Promotion_DAO("complucine"); + + //FALTARIA SUBIR LA IMAGEN + $exist = $bd-> promotionData($id); + if(mysqli_num_rows($exist) == 1){ + $bd->deletePromotion($id); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha eliminado la promocion correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mp'; + } + else{ + + $result[] = "La promocion seleccionada no existe."; + } + $exist->free(); + } + return $result; + } +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formEditCinema.php b/panel_admin/includes/formEditCinema.php new file mode 100644 index 0000000..820c37a --- /dev/null +++ b/panel_admin/includes/formEditCinema.php @@ -0,0 +1,98 @@ +"./?state=mc"); + parent::__construct('formAddCinema',$op); + } + + protected function generaCamposFormulario($datos,$errores=array()){ + + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId= self::createMensajeError($errores,'id','span',array('class'=>'error')); + $errorName = self::createMensajeError($errores,'name','span',array('class'=>'error')); + $errorDirection = self::createMensajeError($errores,'direction','span',array('class'=>'error')); + $errrorPhone = self ::createMensajeError($errores,'phone',array('class'=>'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    + Datos de cine + +
    '.$errorName.'
    +
    '.$errorDirection.'
    +
    '.$errrorPhone.'
    +
    +
    + + +
    +
    + + '; + return $html; + } + + //Process form: + public function procesaFormulario($datos) { + $result =array(); + + + $id = $this->test_input($datos['id']) ?? null; + // if (is_null($id)) { + // $result['id'] = "El cine seleccionado no existe."; + //} + + $name = $this->test_input($datos['name'])??null; + + if(empty($name)){ + $result['name']= "El nombre no es válido"; + } + + $direction = $this->test_input($datos['direction']) ?? null; + + if(empty($direction)){ + $result['direction'] = "La dirección no es valida"; + } + + $phone = $this -> test_input($datos['phone']) ?? null; + + if(empty($phone)){ + $result['phone'] = "El teléfono no es valido"; + } + + if(count($result)===0){ + $bd = new Cinema_DAO('complucine'); + $exist = $bd -> cinemaData($id); + if(mysqli_num_rows($exist)==1){ + $bd->editCinema($id,$name,$direction,$phone); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha editado el cine correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mc'; + } + else{ + $result[] = "El cine seleccionado no existe."; + } + $exist->free(); + } + return $result; + } + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formEditFilm.php b/panel_admin/includes/formEditFilm.php new file mode 100644 index 0000000..3e36281 --- /dev/null +++ b/panel_admin/includes/formEditFilm.php @@ -0,0 +1,115 @@ + "./?state=mf"); + parent::__construct('formEditFilm', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + $errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error')); + $errorDuration = self::createMensajeError($errores, 'duration', 'span', array('class' => 'error')); + $errorLanguage = self::createMensajeError($errores, 'language', 'span', array('class' => 'error')); + $errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error')); + $errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error')); + + $html = ' +
    +
    '.$htmlErroresGlobales.'
    + Datos de pelicula + +
    '.$errorTittle.'
    +
    '.$errorDuration.'
    +
    '.$errorLanguage.'
    +
    '.$errorDescription.'
    +
    Imagen promocional:
    +
    +
    + + +
    +
    + + +
    + '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $id = $this->test_input($datos['id']) ?? null; + if (is_null($id)) { + $result[] = "La pelicula seleccionada no existe."; + } + + $tittle = $this->test_input($datos['tittle']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $tittle) + if ( empty($tittle) ) { + $result['tittle'] = "El título no es válido"; + } + + $duration = $this->test_input($datos['duration']) ?? null; + //||!mb_ereg_match(self::HTML5_EMAIL_REGEXP, $duration) + if ( empty($duration) || $duration <0) { + $result['duration'] = "La duración no es válida"; + } + + $language = $this->test_input($datos['language']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $language) + if ( empty($language) ) { + $result['language'] = "El idioma no es válido"; + } + + $description = $this->test_input($datos['description']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $description) + if ( empty($language)) { + $result['language'] = "La descripcion no es válida"; + } + + + if (count($result) === 0) { + $bd = new Film_DAO("complucine"); + $exist = $bd-> FilmData($id); + if( mysqli_num_rows($exist) == 1){ + $bd->editFilm($id, $tittle, $duration, $language, $description, $img = null /* Cambiar cuando se ñaladan las imágenes */); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha editado la pelicula correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mf'; + } + else{ + $result[] = "La pelicula seleccionada no existe."; + } + $exist->free(); + } + return $result; + } +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formEditManager.php b/panel_admin/includes/formEditManager.php new file mode 100644 index 0000000..1ee8129 --- /dev/null +++ b/panel_admin/includes/formEditManager.php @@ -0,0 +1,113 @@ + "./?state=mg"); + parent::__construct('formEditManager', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + $errorIdCinema = self::createMensajeError($errores, 'idcinema', 'span', array('class' => 'error')); + + $html = '
    +

    EDITAR GERENTE ID:'.$_POST['id'].'

    +
    '.$htmlErroresGlobales.'
    + Selecciona cine.
    '.$errorIdCinema.'
    +
    '.$errorId.'
    ' + .$this->showCinemas(). + '
    +
    + + +
    +
    + '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $id = $this->test_input($datos['id']) ?? null; + if (is_null($id) ) { + $result['id'] = "ERROR. No existe un usuario con ese ID"; + } + + $idcinema = $this->test_input($datos['idcinema']) ?? null; + //||!mb_ereg_match(self::HTML5_EMAIL_REGEXP, $duration) + if (is_null($idcinema)) { + $result['idcinema'] = "ERROR. No existe un cine con ese ID"; + } + + + if (count($result) === 0) { + $bd = new Manager_DAO("complucine"); + $exist = $bd-> GetManager($id); + if( mysqli_num_rows($exist) == 1){ + $bd->editManager($id,$idcinema); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha editado el gerente correctamente en la base de datos.

    + +
    +
    +
    "; + $result = './?state=mg'; + + } + else{ + $result[] = "ERROR. No existe un cine con ese ID"; + } + $exist->free(); + + + } + return $result; + } + + private function showCinemas() { + $cine = new Cinema_DAO("complucine"); + $cinemas = $cine->allCinemaData(); + $ids = array(); + $names = array(); + $directions = array(); + $phones = array(); + + foreach($cinemas as $key => $value){ + $ids[$key] = $value->getId(); + $names[$key] = $value->getName(); + $directions[$key] = $value->getDirection(); + $phones[$key] = $value->getPhone(); + } + $html = ''; + for($i = 0; $i < count($cinemas); $i++){ + $html.= ' + + '; + } + return $html; + } + + +} + +?> \ No newline at end of file diff --git a/panel_admin/includes/formEditPromotion.php b/panel_admin/includes/formEditPromotion.php new file mode 100644 index 0000000..d2dc3d7 --- /dev/null +++ b/panel_admin/includes/formEditPromotion.php @@ -0,0 +1,115 @@ + "./?state=mp"); + parent::__construct('formEditPromotion', $op); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorId = self::createMensajeError($errores, 'id', 'span', array('class' => 'error')); + $errorTittle = self::createMensajeError($errores, 'tittle', 'span', array('class' => 'error')); + $errorDescription = self::createMensajeError($errores, 'description', 'span', array('class' => 'error')); + $errorCode = self::createMensajeError($errores, 'code', 'span', array('class' => 'error')); + $errorActive = self::createMensajeError($errores, 'active', 'span', array('class' => 'error')); + //$errorImage = self::createMensajeError($errores, 'image', 'span', array('class' => 'error')); + + $html = '
    +
    '.$htmlErroresGlobales.'
    +
    + Datos de promocion + +
    '.$errorTittle.'
    +
    '.$errorDescription.'
    +
    '.$errorCode.'
    +
    '.$errorActive.'
    +
    Imagen promocional:
    +
    +
    + + +
    +
    +
    '; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $id = $this->test_input($_POST['id']) ?? null; + if (is_null($id)) { + $result['id'] = "La promoción seleccionada no existe."; + } + + $tittle = $this->test_input($datos['tittle']) ?? null; + + if ( empty($tittle) ) { + $result['tittle'] = "El título no es válido"; + } + + $description = $this->test_input($datos['description']) ?? null; + + if ( empty($description)) { + $result['description'] = "La descripcion no es válida"; + } + + $code = $this->test_input($datos['code']) ?? null; + + if ( empty($code) ) { + $result['code'] = "El idioma no es válido"; + } + + $active = $this->test_input($datos['active']) ?? null; + //|| !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $description) + if ( $active>1 ||$active<0 ) { + $result['active'] = "La descripcion no es válida"; + } + + if (count($result) === 0) { + $bd = new Promotion_DAO("complucine"); + + //FALTARIA SUBIR LA IMAGEN + $exist = $bd-> promotionData($id); + if(mysqli_num_rows($exist) == 1){ + $bd->editPromotion($id, $tittle,$description,$code,$active); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha modificado la promocion correctamente en la base de datos.

    + +
    +
    +
    +
    + "; + $result = './?state=mp'; + } + else{ + + $result[] = "La promocion seleccionada no existe."; + } + $exist->free(); + } + return $result; + } + + +} + +?> \ No newline at end of file diff --git a/panel_admin/index.php b/panel_admin/index.php new file mode 100644 index 0000000..cd54087 --- /dev/null +++ b/panel_admin/index.php @@ -0,0 +1,58 @@ + + + + + + print_head(); + ?> + + + print_header(); + ?> + + + print_main(); + ?> + + +
    + + print_panelMenu($_SESSION["rol"]); + ?> + +
    + print_msg(); + $panel->showPanel($template); + ?> +
    +
    + + print_footer(); + ?> + + + diff --git a/panel_admin/panelAdmin.php b/panel_admin/panelAdmin.php new file mode 100644 index 0000000..ed43c29 --- /dev/null +++ b/panel_admin/panelAdmin.php @@ -0,0 +1,398 @@ +state = $panel; + $this->login= $login; + } + + function showPanel($template) { + $this->prefix = $template->get_prefix(); + if($this->login){ + switch($this->state) { + case 'mc': if(isset($_POST['edit_cinema'])) { + $this->editCinema(); + } + else if(isset($_POST['delete_cinema'])) { + $this->deleteCinema(); + } + else { + $this-> addCinema(); + echo ($template->print_cinemas()); + + }; + break; + case 'mf': if(isset($_POST['edit_film'])) { + $this->editFilm(); + } + else if(isset($_POST['delete_film'])) { + $this->deleteFilm(); + } + else { + $this->addFilm(); + echo( $template->print_fimls()); + }; + break; + case 'mp': + if(isset($_POST['edit_promotion'])) { + $this->editPromotion(); + } + else if(isset($_POST['delete_promotion'])) { + $this->deletePromotion(); + } + else { + $this->addPromotion(); + $this->print_promotions(); + + }; + break; + case 'mg': if(isset($_POST['edit_manager'])) { + $this->editManager(); + } + else if(isset($_POST['delete_manager'])) { + $this->deleteManager(); + } + else if(isset($_POST['add_manager'])) { + $this->addManager(); + } + + else { + $this->showAddBotton(); + $this->print_managers(); + }; + break; + case 'un': echo"

    En construcción


    "; break; + case 'ur': echo"

    En construcción


    "; break; + case 'ag': echo"

    En construcción


    "; break; + default: echo '
    +

    Bienvenido al Panel de Administrador.

    +
    +
    '."\n"; break; + } + } + else { + echo '
    +
    +
    +

    No tienes permiso de administrador.


    +

    Inicia Sesión con una cuenta de administtación.

    + +
    +
    +
    '."\n"; + } + } + + function getTemplate(){ + return $this->template; + } + + //Functions FILMS + function addFilm(){ + include_once('./includes/formAddFilm.php'); + $formAF = new formAddFilm(); + $htmlAForm = $formAF->gestiona(); + echo ' +
    +
    + '.$htmlAForm.' +
    '."\n"; + } + + function deleteFilm() { + include_once('./includes/formDeleteFilm.php'); + $formDF = new formDeleteFilm(); + $htmlDForm = $formDF->gestiona(); + echo ' +
    +
    + '.$htmlDForm.' +
    '."\n"; + } + function editFilm() { + include_once('./includes/formEditFilm.php'); + $formEF = new formEditFilm(); + $htmlDForm = $formEF->gestiona(); + echo ' +
    +
    + '.$htmlDForm.' +
    '."\n"; + } + + //Functions Cinemas + function addCinema(){ + include_once('./includes/formAddCinema.php'); + $formAC = new formAddCinema(); + $htmlAForm = $formAC->gestiona(); + echo ' +
    +
    + '.$htmlAForm.' +
    '."\n"; + } + + function deleteCinema() { + include_once('./includes/formDeleteCinema.php'); + $formDC = new formDeleteCinema(); + $htmlDForm = $formDC->gestiona(); + echo ' +
    +
    + '.$htmlDForm.' +
    '."\n"; + } + + function editCinema() { + include_once('./includes/formEditCinema.php'); + $formEC = new formEditCinema(); + $htmlDForm = $formEC->gestiona(); + echo ' +
    +
    + '.$htmlDForm.' +
    '."\n"; + } + + + //Functions MANAGERS + function print_managers(){ + include_once('../assets/php/common/manager_dao.php'); + include_once('../assets/php/common/manager.php'); + $manager = new Manager_DAO("complucine"); + $managers = $manager->allManagersData(); + $ids = array(); + $idscinemas = array(); + $usernames = array(); + $email = array(); + $rol = array(); + if(is_array($managers)){ + foreach($managers as $key => $value){ + $ids[$key] = $value->getId(); + $idscinemas[$key] = $value->getIdcinema(); + $usernames[$key] = $value->getUsername(); + $email[$key] = $value->getEmail(); + $rol[$key] = $value->getRoll(); + } + } + echo "
    +
    +
    + + + + + + + + + + + + "; + if(is_array($managers)){ + for($i = 0; $i < count($managers); $i++){ + echo ' + + + + + + + + + '; + } + } + echo' +
    IdIdCinemaNombreEmailRol
    '. $ids[$i] .''. $idscinemas[$i] .''. $usernames[$i] .''. $email[$i] .''. $rol[$i] .' +
    + + + +
    +
    +
    + + + + + + +
    +
    +
    +
    +
    + '; + } + function showAddBotton() { + echo'
    +
    +

    Añadir gerente

    +
    +
    + +
    +
    +
    +
    + + '; + } + function addManager(){ + include_once('./includes/formAddManager.php'); + $formAM = new formAddManager(); + $htmlAForm = $formAM->gestiona(); + echo ' +
    +
    +

    AÑADIR GERENTE

    + '.$htmlAForm.' +
    +
    '."\n"; + } + function editManager(){ + include_once('./includes/formEditManager.php'); + $formEM = new formEditManager(); + $htmlEForm = $formEM->gestiona(); + echo ' +
    +
    +

    EDITAR GERENTE

    + '.$htmlEForm.' +
    +
    '."\n"; + } + + function deleteManager(){ + include_once('./includes/formDeleteManager.php'); + $formDM = new formDeleteManager(); + $htmlDForm = $formDM->gestiona(); + echo ' +
    +
    +

    ELIMINAR GERENTE

    + '.$htmlDForm.' +
    +
    '."\n"; + } + + + //Functions PROMOTIONS + function addPromotion(){ + include_once('./includes/formAddPromotion.php'); + $formAP = new formAddPromotion(); + $htmlAForm = $formAP->gestiona(); + echo ' +
    +
    +

    AÑADIR PROMOCIÓN

    + '.$htmlAForm.' +
    +
    '."\n"; + } + function editPromotion(){ + include_once('./includes/formEditPromotion.php'); + $formEP = new formEditPromotion(); + $htmlEForm = $formEP->gestiona(); + echo ' +
    +
    +

    EDITAR PROMOCIÓN

    + '.$htmlEForm.' +
    +
    '."\n"; + } + + function deletePromotion(){ + include_once('./includes/formDeletePromotion.php'); + $formDP = new formDeletePromotion(); + $htmlDForm = $formDP->gestiona(); + echo ' +
    +
    +

    ELIMINAR PROMOCIÓN

    + '.$htmlDForm.' +
    '."\n"; + } + + function print_promotions(){ + $promo = new Promotion_DAO("complucine"); + $promos = $promo->allPromotionData(); + $ids = array(); + $tittles = array(); + $descriptions = array(); + $codes = array(); + $actives = array(); + + if(is_array($promos)){ + foreach($promos as $key => $value){ + $ids[$key] = $value->getId(); + $tittles[$key] = $value->getTittle(); + $descriptions[$key] = $value->getDescription(); + $codes[$key] = $value->getCode(); + $actives[$key] = $value->getActive(); + } + } + + echo " +
    + + + + + + + + + + + + "; + if(is_array($promos)){ + for($i = 0; $i < count($promos); $i++){ + echo ' + + + + + + + + + '; + } + } + echo' +
    IdTítuloDescripcionCódigoActivo
    '. $ids[$i] .''. $tittles[$i] .''. $descriptions[$i] .''. $codes[$i] .''. $actives[$i] .' +
    + + + + + + +
    +
    +
    + + + + + + +
    +
    +
    +
    + '; + + } + } + +?> + diff --git a/panel_manager/includes/formHall.php b/panel_manager/includes/formHall.php new file mode 100644 index 0000000..9b9f591 --- /dev/null +++ b/panel_manager/includes/formHall.php @@ -0,0 +1,201 @@ +option = $option; + $this->cinema = $cinema; + $options = array("action" => "./?state=".$option); + parent::__construct('formHall',$options); + } + + protected function generaCamposFormulario($data, $errores = array()){ + //Prepare the data + if($this->option == "new_hall"){ + $number = $data['number'] ?? ""; + $rows = $data['rows'] ?? '12'; + $cols = $data['cols'] ?? '8'; + }else { + $number = $data['number'] ?? $_POST["number"]; + $rows = $data['rows'] ?? $_POST["rows"]; + $cols = $data['cols'] ?? $_POST["cols"]; + } + + $og_number = $data['og_number'] ?? $number; + + //Seats_map + $seats = 0; + $seats_map = array(); + for($i = 1;$i <= $rows; $i++){ + for($j = 1; $j <= $cols; $j++){ + $seats_map[$i][$j] = "-1"; + } + } + + //Show the original seats_map once u click restart or the first time u enter this form from manage_halls's form + if(isset($data["restart"]) || isset($_POST["edit_hall"]) ){ + $seat_list = Seat::getSeatsMap($og_number, $this->cinema); + if($seat_list){ + foreach($seat_list as $seat){ + $seats_map[$seat->getNumRows()][$seat->getNumCol()] = $seat->getState(); + if($seat->getState()>=0){ + $seats++; + } + } + } + }//Show the checkbox seats_map updated and everything to selected if alltoone was pressed + else{ + $alltoone = $_POST["alltoone"] ?? 0; + for($i = 1;$i <= $rows; $i++){ + for($j = 1; $j <= $cols; $j++){ + if($alltoone || isset($data["checkbox".$i.$j])) { + $seats_map[$i][$j] = $data["checkbox".$i.$j] ?? "0"; + $seats++; + if($seats_map[$i][$j] == "-1"){ + $seats_map[$i][$j] = "0"; + } + }else + $seats_map[$i][$j] = "-1"; + } + } + } + + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorNumber = self::createMensajeError($errores, 'number', 'span', array('class' => 'error')); + $errorSeats = self::createMensajeError($errores, 'seats', 'span', array('class' => 'error')); + + $html = ' +
    '.$htmlErroresGlobales.' '.$errorSeats.' +
    + Mapa de Asientos +
    +
    +
    + '; + if($this->option == "edit_hall") + $html .= ' '; + $html .=' +
    + '.$errorNumber.' +
    + +
    +
    +
    + '; + if($this->option == "new_hall") + $html .=' + '; + if($this->option == "edit_hall"){ + $html .=' + + '; + } + $html .='
    +
    +

    Pantalla

    + + + + + '; + for($j = 1; $j<=$cols; $j++){ + $html .= ' + '; + } + $html .= ' + + '; + for($i = 1;$i<=$rows;$i++){ + $html .= ' + + + '; + for($j=1; $j<=$cols; $j++){ + if($seats_map[$i][$j]>=0){ + $html .= ' + ';} + else { + $html .= ' + ';} + } + $html .=''; + } + + $html .= ' + +
    '.$j.'
    '.$i.'
    +
    '; + + return $html; + } + + //Methods: + + //Process form: + protected function procesaFormulario($datos){ + $result = array(); + + $rows = $datos['rows']; + $cols = $datos['cols']; + $og_number = $datos["og_number"]; + + //Prepare the seat_map + $seats_map = array(); + $seats = 0; + for($i = 1;$i <= $rows; $i++){ + for($j = 1; $j <= $cols; $j++){ + if(isset($datos["checkbox".$i.$j])){ + $seats_map[$i][$j] = $datos["checkbox".$i.$j]; + $seats++; + if($seats_map[$i][$j] == "-1"){ + $seats_map[$i][$j] = "0"; + } + }else{ + $seats_map[$i][$j] = "-1"; + } + } + } + + if ($seats == 0 && isset($datos["sumbit"]) ) { + $result['seats'] = "
  • No puede haber 0 asientos disponibles.

  • "; + } + + + $number = $datos['number'] ?? null; + if (empty($number) && isset($datos["sumbit"])) { + $result['number'] = "
  • El numero de sala tiene que ser mayor que 0.

  • "; + } + + if (count($result) === 0 && isset($datos["sumbit"]) ) { + if($this->option == "new_hall"){ + $_SESSION['msg'] = Hall::create_hall($number, $this->cinema, $rows, $cols, $seats, $seats_map); + $result = './?state=success'; + } + if($this->option == "edit_hall"){ + $_SESSION['msg'] = Hall::edit_hall($number,$this->cinema, $rows, $cols, $seats, $seats_map, $og_number); + $result = './?state=success'; + } + } + + if (!isset($result['number']) && isset($datos["delete"]) ) { + if($this->option == "edit_hall"){ + $_SESSION['msg'] = Hall::delete_hall($number, $this->cinema, $rows, $cols, $seats, $seats_map, $og_number); + $result = './?state=success'; + } + } + + + return $result; + } +} + +?> + diff --git a/panel_manager/includes/formSession.php b/panel_manager/includes/formSession.php new file mode 100644 index 0000000..d8586ae --- /dev/null +++ b/panel_manager/includes/formSession.php @@ -0,0 +1,150 @@ +option = $option; + $this->cinema = $cinema; + $options = array("action" => "./?state=".$option); + parent::__construct('formSession',$options); + } + + //TODO Edit session no funciona correctamente con el seleccionar una pelicula distinta, hay que guardar la id de la sesion de alguna forma y usarla o guardar en la sesion + protected function generaCamposFormulario($data, $errores = array()){ + + $filmList = new Film_DAO('complucine'); + $films = $filmList->allFilmData(); + + if($this->option == "new_session") { + $film = $data['film'] ?? 1; + $hall = $data['hall'] ?? $_POST["hall"]; + $date = $data['date'] ?? $_POST["date"]; + $start = $data['start'] ?? ''; + $price = $data['price'] ?? ''; + $format = $data['format'] ?? ''; + } + else { + $film = $data['film'] ?? $_POST["film"]; + $hall = $data['hall'] ?? $_POST["hall"]; + $date = $data['date'] ?? $_POST["date"]; + $start = $data['start'] ?? $_POST["start"]; + $price = $data['price'] ?? $_POST["price"]; + $format = $data['format'] ?? $_POST["format"]; + } + $or_hall = $data["or_hall"] ?? $hall; + $or_date = $data["or_date"] ?? $date; + $or_start = $data["or_start"] ?? $start; + + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorPrice = self::createMensajeError($errores, 'price', 'span', array('class' => 'error')); + $errorFormat = self::createMensajeError($errores, 'format', 'span', array('class' => 'error')); + + $html = ' +
    '.$htmlErroresGlobales.' '.$errorPrice.' +
    + Datos +
    '.$errorFormat.' +
    + + + +
    +
    + Horario +
    + +
    + +
    + '; + if($film){ + if($this->option == "new_session") + $html .= '
    +
    '; + + if($this->option == "edit_session"){ + $html .= '
    +
    '; + } + } + $html .= ' + +
    +
    + '; + return $html; + } + //Methods: + + //Process form: + protected function procesaFormulario($data){ + $result = array(); + + $film = $data['film'] ; + $hall = $data['hall'] ; + $date = $data['date'] ; + $start = $data['start']; + $price = $data['price'] ; + $format = $data['format'] ; + $repeat = $data['repeat'] ?? 0; + $or_hall = $data["or_hall"] ; + $or_date = $data["or_date"] ; + $or_start = $data["or_start"] ; + + if (($price == 0 || empty($price))&& isset($data["sumbit"]) ) { + $result['price'] = "
  • No puede haber 0 euros.

  • "; + } + + + if (count($result) === 0 && isset($data["sumbit"]) ) { + if($this->option == "new_session"){ + $_SESSION['msg'] = Session::create_session($this->cinema, $hall, $start, $date, $film, $price, $format,$repeat); + $result = './?state=success'; + } + if($this->option == "edit_session"){ + $_SESSION['msg'] = Session::edit_session($this->cinema, $or_hall, $or_date, $or_start, $hall, $start, $date, $film, $price, $format); + $result = './?state=success'; + } + } + + if(!isset($result['hall']) && !isset($result['start']) && !isset($result['date']) && isset($data["delete"])) { + $_SESSION['msg'] = Session::delete_session($this->cinema, $or_hall, $or_start, $or_date); + $result = './?state=success'; + } + + return $result; + } +} + +?> \ No newline at end of file diff --git a/panel_manager/includes/processForm.php b/panel_manager/includes/processForm.php new file mode 100644 index 0000000..f818d41 --- /dev/null +++ b/panel_manager/includes/processForm.php @@ -0,0 +1,65 @@ + "new_hall","number" => $_POST["number"],"cols" => $_POST["cols"],"rows" => $_POST["rows"], "cinema" => $_SESSION["cinema"], "seats" => 0); + //Check what checkboxs are seats or not + for($i = 1;$i<=$data["rows"];$i++){ + for($j=1; $j<=$data["cols"]; $j++){ + if(!empty($_POST['checkbox'.$i.$j.''])){ + $data[$i][$j] = $_POST['checkbox'.$i.$j.'']; + $data["seats"]++; + } else $data[$i][$j] = "-1"; + } + } + FormHall::processesForm($data); + } + + if(isset($_POST['edit_hall'])){ + $data = array("option" => "edit_hall","number" => $_POST["number"],"cols" => $_POST["cols"],"rows" => $_POST["rows"], "cinema" => $_SESSION["cinema"],"seats" => 0); + //Check what checkboxs are seats or not + for($i = 1;$i<=$data["rows"];$i++){ + for($j=1; $j<=$data["cols"]; $j++){ + if(!empty($_POST['checkbox'.$i.$j.''])){ + $data[$i][$j] = $_POST['checkbox'.$i.$j.'']; + $data["seats"]++; + } else $data[$i][$j] = "-1"; + } + } + FormHall::processesForm($data); + } + + if(isset($_POST['delete_hall'])){ + $data = array("option" => "delete_hall","number" => $_POST["number"], "cinema" => $_SESSION["cinema"]); + FormHall::processesForm($data); + } + + if(isset($_POST['new_session'])){ + $data = array("option" => "new_session","film" => $_POST["film"],"hall" => $_POST["hall"],"date" => $_POST["date"],"start" => $_POST["start"] + ,"price" => $_POST["price"],"format" => $_POST["format"],"repeat" => $_POST["repeat"], "cinema" => $_SESSION["cinema"]); + FormSession::processesForm($data); + } + + if(isset($_POST['edit_session'])){ + $data = array("option" => "edit_session","film" => $_POST["film"],"hall" => $_POST["hall"],"date" => $_POST["date"],"start" => $_POST["start"] + ,"price" => $_POST["price"],"format" => $_POST["format"],"repeat" => $_POST["repeat"], "cinema" => $_SESSION["cinema"] + , "origin_hall"=>$_SESSION["or_hall"],"origin_date"=> $_SESSION["or_date"],"origin_start"=> $_SESSION["or_start"]); + + $_SESSION["or_hall"] = ""; + $_SESSION["or_date"] = ""; + $_SESSION["or_start"] = ""; + FormSession::processesForm($data); + } + + if(isset($_POST['delete_session'])){ + $data = array("option" => "delete_session","cinema" => $_SESSION["cinema"], "hall"=> $_POST["origin_hall"] + ,"date"=> $_POST["origin_date"],"start"=> $_POST["origin_start"]); + FormSession::processesForm($data); + } + +?> \ No newline at end of file diff --git a/panel_manager/index.php b/panel_manager/index.php new file mode 100644 index 0000000..f6208e7 --- /dev/null +++ b/panel_manager/index.php @@ -0,0 +1,90 @@ +GetManager($user->getId()); + + if($manager){ + if($manager->num_rows == 1){ + $fila = $manager->fetch_assoc(); + $manager = new Manager($fila["id"], $fila["idcinema"], null, null, null); + } + } + } + $state = isset($_GET['state']) ? $_GET['state'] : ''; + switch($state){ + case "view_ruser": + case "view_user": + $panel = '
    +
    +
    +

    Esta vista aun no esta implementada.


    +
    +
    +
    '."\n"; + break; + case "manage_halls": + $panel = Manager_panel::manage_halls($manager); + break; + case "new_hall": + $panel = Manager_panel::new_hall($manager); + break; + case "edit_hall": + $panel = Manager_panel::edit_hall($manager); + break; + case "manage_sessions": + $panel = Manager_panel::manage_sessions($manager); + break; + case "new_session": + $panel = Manager_panel::new_session($manager); + break; + case "edit_session": + $panel = Manager_panel::edit_session($manager); + break; + case "select_film": + $panel = Manager_panel::select_film($template,$manager); + break; + case "success": + $panel = Manager_panel::success(); + break; + default: + $panel = Manager_panel::welcome($manager); + break; + } + } + else{ + $panel = '
    +
    +
    +

    Debes iniciar sesión para ver el Panel de Manager.


    +

    Inicia Sesión con una cuenta de Gerente.

    + +
    +
    +
    '."\n"; + } + + //Specific page content: + $section = ' + +
    + +
    + '.$panel.' +
    +
    '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?> diff --git a/panel_manager/panel_manager.php b/panel_manager/panel_manager.php new file mode 100644 index 0000000..e27e743 --- /dev/null +++ b/panel_manager/panel_manager.php @@ -0,0 +1,223 @@ +getIdcinema()); + + $panel = '
    +

    Bienvenido '.$name.' a tu Panel de Manager.

    +
    +

    Usuario: '.$name.'

    +

    Cine: '.$cinema.'

    +

    Espero que estes pasando un buen dia

    +
    '; + + return $panel; + } + + static function success(){ + $panel = '
    +

    Operacion completada.

    +
    +

    '.$_SESSION['msg'].'

    +
    '."\n"; + $_SESSION['msg'] = ""; + + return $panel; + } + + static function manage_halls($manager){ + + $panel = '
    +
    '; + $listhall = Hall::getListHalls($manager->getIdcinema()); + if(!$listhall){ + $panel .= "

    No hay ninguna sala en este cine"; + }else{ + $panel .= ' + + + + + + + + + + '; + + foreach($listhall as $hall){ + $panel .=' + + + + + + + + + + + + + '; + } + $panel.=' + +
    NumeroFilasColumnasAsientos Disponibles
    '. $hall->getNumber().' '. $hall->getNumRows().' '. $hall->getNumCol().' '.$hall->getTotalSeats().'
    '; + } + $panel.=' +
    + +
    +

    +
    '; + return $panel; + } + + static function new_hall($manager){ + + $formHall = new FormHall("new_hall",$manager->getIdcinema()); + + $panel = '

    Crear una sala.



    + '.$formHall->gestiona(); + return $panel; + } + + static function edit_hall($manager){ + $formHall = new FormHall("edit_hall",$manager->getIdcinema()); + + $panel = '

    Editar una sala.



    + '.$formHall->gestiona(); + return $panel; + } + + static function manage_sessions($manager){ + //Base filtering values + $date = isset($_POST['date']) ? $_POST['date'] : date("Y-m-d"); + $hall = isset($_POST['hall']) ? $_POST['hall'] : "1"; + + //Session filter + $panel='
    +
    + + + +
    +
    + '; + //Session list + $panel .='
    '; + $sessions = Session::getListSessions($hall,$manager->getIdcinema(),$date); + + if($sessions) { + $panel .=' +
    + + + + + + + + + + '; + + + foreach($sessions as $session){ + $panel .=' + + + + + + + + + + + + + + + '; + } + $panel.=' + +
    HoraPeliculaFormatoPrecio
    '.date("H:i", strtotime( $session->getStartTime())).' '. str_replace('_', ' ', Session::getThisSessionFilm($session->getIdfilm())["tittle"]) .' '.$session->getFormat().' '.$session->getSeatPrice().'
    + '; + } else { + $panel.='

    No hay ninguna sesion

    '; + } + $panel.=' + +
    '; + + return $panel; + } + + static function new_session($manager){ + $formSession = new FormSession("new_session", $manager->getIdcinema() ); + + $panel = '

    Crear una sesion.



    + '.$formSession->gestiona(); + return $panel; + } + + static function edit_session($manager){ + $formSession = new FormSession("edit_session", $manager->getIdcinema() ); + + $panel = '

    Editar una sesion.



    + '.$formSession->gestiona(); + return $panel; + } + + //TODO: estado al modificar sesiones para la seleccion de peliculas usando el template->print films + static function select_film($template,$manager){ + if(isset($_GET["option"])){ + $_SESSION["option"] = $_GET["option"]; + $panel = '

    Seleccionar Pelicula.



    '; + $panel .= $template->print_fimls(); + $_SESSION["option"] = ""; + } else $panel = self::warning($manager); + + return $panel; + } + + //Funcion que se envia cuando hay inconsistencia en el panel manager, principalmente por tocar cosas con la ulr + static function warning($manager){ + $panel = '
    +

    No deberias poder acceder aqui.

    +
    +

    No uses la url para toquitear cosas >.<

    +
    '."\n"; + + return $panel; + } + + + } +?> \ No newline at end of file diff --git a/panel_user/includes/formChangeEmail.php b/panel_user/includes/formChangeEmail.php new file mode 100644 index 0000000..3ce64e8 --- /dev/null +++ b/panel_user/includes/formChangeEmail.php @@ -0,0 +1,95 @@ + "./?option=manage_profile"); + parent::__construct('formChangeUserEmail', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + $email = $datos['email'] ?? ''; + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorEmail = self::createMensajeError($errores, 'new_email', 'span', array('class' => 'error')); + $errorEmail2 = self::createMensajeError($errores, 'remail', 'span', array('class' => 'error')); + $errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error')); + + $html = "
    +
    ".$htmlErroresGlobales."
    + Nuevo email de usuario +
    ".$errorEmail."
    +
    ".$errorEmail2."
    +
    ".$errorPassword."
    +
    +
    + + +
    +
    "; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $email = $this->test_input($datos['new_email']) ?? null; + if ( empty($email) || !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $email) ) { + $result['new_email'] = "El nuevo email no es válido."; + } + + $email2 = $this->test_input($datos['remail']) ?? null; + if ( empty($email2) || strcmp($email, $email2) !== 0 ) { + $result['remail'] = "Los emails deben coincidir"; + } + + $password = $this->test_input($datos['pass']) ?? null; + if ( empty($password) || mb_strlen($password) < 4 ) { + $result['pass'] = "El password tiene que tener\n una longitud de al menos\n 4 caracteres."; + } + + if (count($result) === 0) { + $bd = new UserDAO("complucine"); + $user = $bd->selectUser(unserialize($_SESSION['user'])->getName(), $password); + if (!$user) { + $result[] = "El usuario no existe."; + $_SESSION['message'] = "
    +
    +
    +
    +

    Ha ocurrido un probrema


    +

    No hemos podido actualizar su email de usuario. + Comprueba que la contraseña introducida sea correcta.

    + +
    +
    +
    +
    + "; + } else { + $bd->changeUserEmail(unserialize($_SESSION['user'])->getId(), $email); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha modificado su email correctamente.

    + +
    +
    +
    +
    + "; + $result = './?option=manage_profile'; + } + } + return $result; + } +} +?> \ No newline at end of file diff --git a/panel_user/includes/formChangeName.php b/panel_user/includes/formChangeName.php new file mode 100644 index 0000000..ed67a0d --- /dev/null +++ b/panel_user/includes/formChangeName.php @@ -0,0 +1,103 @@ + "./?option=manage_profile"); + parent::__construct('formChangeUserName', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + $nombre = $datos['nombreUsuario'] ?? ''; + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorNombre = self::createMensajeError($errores, 'new_name', 'span', array('class' => 'error')); + $errorNombre2 = self::createMensajeError($errores, 'rename', 'span', array('class' => 'error')); + $errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error')); + + $html = "
    +
    ".$htmlErroresGlobales."
    + Nuevo Nombre de usuario +
    ".$errorNombre."
    +
    ".$errorNombre2."
    +
    ".$errorPassword."
    +
    +
    + + +
    +
    "; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $nombre = $this->test_input($datos['new_name']) ?? null; + $nombre = strtolower($nombre); + if ( empty($nombre) || mb_strlen($nombre) < 3 || mb_strlen($nombre) > 8 ) { + $result['new_name'] = "El nombre tiene que tener\n una longitud de al menos\n 3 caracteres\n y menos de 8 caracteres."; + } + + $nombre2 = $this->test_input($datos['rename']) ?? null; + if ( empty($nombre2) || strcmp($nombre, $nombre2) !== 0 ) { + $result['rename'] = "Los nombres deben coincidir."; + } + + $password = $this->test_input($datos['pass']) ?? null; + if ( empty($password) || mb_strlen($password) < 4 ) { + $result['pass'] = "El password tiene que tener\n una longitud de al menos\n 4 caracteres."; + } + + if (count($result) === 0) { + $bd = new UserDAO("complucine"); + $user = $bd->selectUser(unserialize($_SESSION['user'])->getName(), $password); + if (!$user) { + $result[] = "Ha ocurrido un problema\nal actualizar el nombre de usuario."; + $_SESSION['message'] = "
    +
    +
    +
    +

    Ha ocurrido un probrema


    +

    No hemos podido actualizar su nombre de usuario. + Comprueba que la contraseña introducida sea correcta.

    + +
    +
    +
    +
    + "; + } else { + $user = $bd->selectUserName($nombre); + if ($user->data_seek(0)){ + $result[] = "El nombre de usuario ya existe."; + } else { + $bd->changeUserName(unserialize($_SESSION['user'])->getId(), $nombre); + $user = $bd->selectUser($nombre, $password); + $_SESSION['user'] = serialize($user); + $_SESSION["nombre"] = $user->getName(); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha modificado su nombre de usuario correctamente.

    + +
    +
    +
    +
    + "; + $result = './?option=manage_profile'; + } + } + } + return $result; + } +} +?> \ No newline at end of file diff --git a/panel_user/includes/formChangePass.php b/panel_user/includes/formChangePass.php new file mode 100644 index 0000000..d4c1af3 --- /dev/null +++ b/panel_user/includes/formChangePass.php @@ -0,0 +1,91 @@ + "./?option=manage_profile"); + parent::__construct('formChangeUserPass', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorOldPass = self::createMensajeError($errores, 'old_pass', 'span', array('class' => 'error')); + $errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error')); + $errorPassword2 = self::createMensajeError($errores, 'repass', 'span', array('class' => 'error')); + + $html = "
    +
    ".$htmlErroresGlobales."
    + Nueva Contraseña +
    ".$errorOldPass."
    +
    ".$errorPassword."
    +
    ".$errorPassword2."
    +
    +
    + + +
    +
    "; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $old_pass = $this->test_input($datos['old_pass']) ?? null; + if ( empty($old_pass) || mb_strlen($old_pass) < 4 ) { + $result['old_pass'] = "El password tiene que tener\n una longitud de al menos\n 4 caracteres."; + } + + $password = $this->test_input($datos['pass']) ?? null; + if ( empty($password) || mb_strlen($password) < 4 ) { + $result['pass'] = "El password tiene que tener una\n longitud de al menos\n 4 caracteres."; + } + $password2 = $this->test_input($datos['repass']) ?? null; + if ( empty($password2) || strcmp($password, $password2) !== 0 ) { + $result['repass'] = "Los passwords deben coincidir."; + } + + if (count($result) === 0) { + $bd = new UserDAO("complucine"); + $user = $bd->selectUser(unserialize($_SESSION['user'])->getName(), $old_pass); + if (!$user) { + $result[] = "Ha ocurrido un problema\nal actualizar la contraseña."; + $_SESSION['message'] = "
    +
    +
    +
    +

    Ha ocurrido un probrema


    +

    No hemos podido actualizar su contraseña de usuario. + Comprueba que la contraseña actual sea correcta.

    + +
    +
    +
    +
    + "; + } else { + $bd->changeUserPass(unserialize($_SESSION['user'])->getId(), $password); + $_SESSION['message'] = "
    +
    +
    +
    +

    Operacion realizada con exito


    +

    Se ha modificado su contraseña de usuario correctamente.

    + +
    +
    +
    +
    + "; + $result = './?option=manage_profile'; + } + } + return $result; + } +} +?> \ No newline at end of file diff --git a/panel_user/includes/formDeleteAccount.php b/panel_user/includes/formDeleteAccount.php new file mode 100644 index 0000000..f6e3dd2 --- /dev/null +++ b/panel_user/includes/formDeleteAccount.php @@ -0,0 +1,91 @@ + "./?option=delete_user"); + parent::__construct('formDeleteAccount', $options); + } + + protected function generaCamposFormulario($datos, $errores = array()){ + $nombre = $datos['username'] ?? ''; + + // Se generan los mensajes de error si existen. + $htmlErroresGlobales = self::generaListaErroresGlobales($errores); + $errorNombre = self::createMensajeError($errores, 'new_name', 'span', array('class' => 'error')); + $errorEmail = self::createMensajeError($errores, 'email', 'span', array('class' => 'error')); + $errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error')); + $errorPassword2 = self::createMensajeError($errores, 'repass', 'span', array('class' => 'error')); + + $html = "
    +
    ".$htmlErroresGlobales."
    + Datos de la cuenta +
    ".$errorNombre."
    +
    ".$errorEmail."
    +
    ".$errorPassword."
    +
    ".$errorPassword2."
    +
    +
    + + +
    +
    + + +
    +
    "; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $nombre = $this->test_input($datos['name']) ?? null; + $nombre = strtolower($nombre); + if ( empty($nombre) || mb_strlen($nombre) < 3 || mb_strlen($nombre) > 8 ) { + $result['new_name'] = "El nombre tiene que tener\n una longitud de al menos\n 3 caracteres\n y menos de 8 caracteres."; + } + + $email = $this->test_input($datos['email']) ?? null; + if ( empty($email) || !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $email) ) { + $result['email'] = "El email no es válido."; + } + + $password = $this->test_input($datos['pass']) ?? null; + if ( empty($password) || mb_strlen($password) < 4 ) { + $result['pass'] = "El password tiene que tener\n una longitud de al menos\n 4 caracteres."; + } + $password2 = $this->test_input($datos['repass']) ?? null; + if ( empty($password2) || strcmp($password, $password2) !== 0 ) { + $result['repass'] = "Los passwords deben coincidir."; + } + + if (count($result) === 0) { + $bd = new UserDAO("complucine"); + $user = $bd->selectUser($nombre, $password); + if (!$user) { + $result[] = "El usuario o contraseña\nno son correctos."; + } else { + if( (unserialize($_SESSION['user'])->getId() === $user->getId()) && ($nombre === $user->getName()) + && ($email === $user->getEmail()) && ($bd->verifyPass($password, $user->getPass())) ){ + + $bd->deleteUserAccount($user->getId()); + unset($_SESSION); + session_destroy(); + + $result = ROUTE_APP; + } else { + $result[] = "Los datos introducidos\nno son válidos."; + } + } + } + return $result; + } +} +?> \ No newline at end of file diff --git a/panel_user/index.php b/panel_user/index.php new file mode 100644 index 0000000..1448297 --- /dev/null +++ b/panel_user/index.php @@ -0,0 +1,59 @@ +
    +
    +
    +

    Debes iniciar sesión para ver tu Panel de Usuario.


    +

    Inicia Sesión si estás registrado.

    + +

    Registrate si no lo habías hecho previamente.

    +
    +
    +
    +
    '."\n"; + } + + + //Specific page content: + $section = ' +
    +
    + +
    + '.$reply.' +
    +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; + +?> + diff --git a/panel_user/panelUser.php b/panel_user/panelUser.php new file mode 100644 index 0000000..1de806d --- /dev/null +++ b/panel_user/panelUser.php @@ -0,0 +1,91 @@ +getName()); + $email = unserialize($_SESSION['user'])->getEmail(); + return $reply = '
    +

    Bienvenido '.$name.' a tu Panel de Usuario.

    +
    +

    '.strftime("%A %e de %B de %Y | %H:%M").'

    +
    +

    Usuario: '.$name.'

    +

    Email: '.$email.'

    +
    '."\n"; + } + + //Manage the user account. + static function manage(){ + + require_once('./includes/formChangePass.php'); + require_once('./includes/formChangeEmail.php'); + require_once('./includes/formChangeName.php'); + + $formCN = new FormChangeName(); + $htmlFormChangeName = $formCN->gestiona(); + + $formCP = new FormChangePass(); + $htmlFormChangePass = $formCP->gestiona(); + + $formCE = new FormChangeEmail(); + $htmlFormChangeEmail = $formCE->gestiona(); + + return $reply = ' +
    +

    Cambiar nombre de usuario

    + '.$htmlFormChangeName.' +
    + +
    +

    Cambiar contraseña

    + '.$htmlFormChangePass.' +
    + +
    +

    Cambiar email de usuario

    + '.$htmlFormChangeEmail.' +
    '."\n"; + } + + //User purchase history. + static function purchases(){ + return $reply = '
    +

    Aquí el historial de compras


    +
    '."\n"; + } + + //User payment details + static function payment(){ + return $reply = '
    +

    Aquí los datos de pago


    +
    '."\n"; + } + + //Delete user account. + static function delete(){ + require_once('./includes/formDeleteAccount.php'); + + $formDA = new FormDeleteAccount(); + $htmlFormDeleteAccount = $formDA->gestiona(); + + return $reply = '
    +

    ELIMINAR CUENTA DE USUARIO


    +
    + +
    + '.$htmlFormDeleteAccount.' +
    +
    +
    '."\n"; + } + } +?> \ No newline at end of file diff --git a/register/includes/formRegister.php b/register/includes/formRegister.php new file mode 100644 index 0000000..eaa0c58 --- /dev/null +++ b/register/includes/formRegister.php @@ -0,0 +1,124 @@ + 'error')); + $errorEmail = self::createMensajeError($errores, 'email', 'span', array('class' => 'error')); + $errorPassword = self::createMensajeError($errores, 'pass', 'span', array('class' => 'error')); + $errorPassword2 = self::createMensajeError($errores, 'repass', 'span', array('class' => 'error')); + + $html = "
    +
    ".$htmlErroresGlobales."
    + Datos personales +
    ".$errorNombre."
    +
    ".$errorEmail."
    +
    ".$errorPassword."
    +
    ".$errorPassword2."
    +
    +
    + + +
    +
    + + +
    +
    "; + + return $html; + } + + protected function procesaFormulario($datos){ + $result = array(); + + $nombre = $this->test_input($datos['name']) ?? null; + $nombre = strtolower($nombre); + if ( empty($nombre) || mb_strlen($nombre) < 3 || mb_strlen($nombre) > 8 ) { + $result['name'] = "El nombre tiene que tener\n una longitud de al menos\n 3 caracteres\n y menos de 8 caracteres."; + } + + $email = $this->test_input($datos['email']) ?? null; + if ( empty($email) || !mb_ereg_match(self::HTML5_EMAIL_REGEXP, $email) ) { + $result['email'] = "El email no es válido."; + } + + $password = $this->test_input($datos['pass']) ?? null; + if ( empty($password) || mb_strlen($password) < 4 ) { + $result['pass'] = "El password tiene que tener\n una longitud de al menos\n 4 caracteres."; + } + $password2 = $this->test_input($datos['repass']) ?? null; + if ( empty($password2) || strcmp($password, $password2) !== 0 ) { + $result['repass'] = "Los passwords deben coincidir"; + } + + if (count($result) === 0) { + $bd = new UserDAO('complucine'); + if($bd){ + $this->user = $bd->selectUserName($nombre); + if ($this->user->data_seek(0)) { + $result[] = "El usuario ya existe."; + } + else{ + $bd->createUser("", $nombre, $email, $password, "user"); + $this->user = $bd->selectUser($nombre, $password); + if ($this->user) { + $this->user->setPass(null); + $_SESSION["user"] = serialize($this->user); + $_SESSION["nombre"] = $this->user->getName(); + $_SESSION["rol"] = $this->user->getRol(); + $_SESSION["login"] = true; + $result = "../register/register.php"; + } + } + } else { + $result[] = "Error al conectar con la BD."; + } + } + + return $result; + } + + //Returns validation response: + static public function getReply() { + + if(isset($_SESSION["login"])){ + $name = strtoupper($_SESSION['nombre']); + $reply = "

    Bienvenido {$_SESSION['nombre']}


    +

    {$name}, has creado tu cuenta de usuario correctamente.

    +

    Usa los botones para navegar

    + + \n"; + } + else if(!isset($_SESSION["login"])){ + $reply = "

    ERROR


    +

    Ha ocurrido un problema y no hemos podido completar el registro

    +

    Vuelve a intetarlo o inicia sesión si tienes una cuenta de usuario.

    + +
    \n"; + } + + return $reply; + } + +} +?> \ No newline at end of file diff --git a/register/register.php b/register/register.php new file mode 100644 index 0000000..850f298 --- /dev/null +++ b/register/register.php @@ -0,0 +1,24 @@ + +
    +
    +
    +
    +
    + '.$reply.' +
    +
    +
    +
    +
    + '; + + require RAIZ_APP.'/HTMLtemplate.php'; +?> \ No newline at end of file diff --git a/showtimes/index.php b/showtimes/index.php new file mode 100644 index 0000000..2d88550 --- /dev/null +++ b/showtimes/index.php @@ -0,0 +1,16 @@ + +
    +
    + '.$template->print_fimls().' +
    +
    + '; + + //General page content: + require RAIZ_APP.'/HTMLtemplate.php'; +?>