In MVC architecture (Model-View-Controller), the object responsible for passing and receiving data to and from views, acting as a bridge between the "Model" and the "View".
2
votes
1answer
45 views
4
votes
1answer
57 views
Rails 5 controller to get information about Steam users
I've done a bit of modifications and finally got it working, and did a lot of reading about @ vs @@ vs just declaring and I came ...
1
vote
0answers
47 views
NodeJS controllers for a bus and a user
I'm writing my server and now I'm creating a controller for each route so I could use the same controller in different apis rather than rewrite the same code over and over. Below is my code example of ...
4
votes
1answer
135 views
Laravel - Revised Authentication Controller
I'm developing a Social Engineering Awareness Training Application. This is the focus of my thesis for my undergraduate degree. This will be a multi-part review request, however, if you want to see ...
4
votes
1answer
86 views
Email Controller
I'm developing a Social Engineering Awareness Training Application. This is the focus of my thesis for my undergraduate degree. This will be a multi-part review request, however, if you want to see ...
5
votes
1answer
74 views
Laravel - Authentication Controller
I'm developing a Social Engineering Awareness Training Application. This is the focus of my thesis for my undergraduate degree. This will be a multi-part review request, however, if you want to see ...
3
votes
1answer
88 views
REST API that allows creating/removing users, CRUD ToDo tasks
My project is supposed to be used as back-end for a simple to-do web app that lets you create an account, add, edit, complete, and delete todos.
It could be used with some front end consumer like ...
-3
votes
1answer
54 views
How to refactor code from Rails controller to model when there are session variables?
I have the following controller:
...
-2
votes
1answer
56 views
How to optimize the below code in order to reduce the space and time to execute? [closed]
Am using the datasource which is from the MVC controller method "GetRepairIssues" in the client side to bind the options to the dropdownlist. The result comes as expected. I have to do it even better ...
7
votes
1answer
226 views
C# Rental Program
I knew a little Java, and thought what the hell, I'll help my school and design this program that'll help checkout phone chargers and calculators and things to students. So I got in way over my head, ...
3
votes
0answers
415 views
Spring MVC dynamically adding form elements
I made a simple form with an option of adding one text field dynamically on mouse click. And I will be grateful for suggestions on how I may improve the code.
...
1
vote
0answers
89 views
Creating JavaFX bindable property readed from joystick
I'm lately messing up with handling joystick in java.
So here is the thing. I wrote a simple class that handle input from joystick, but I'm no certain if I'm doing it well.
Here is what I want to ...
1
vote
0answers
226 views
Dynamically loading and naming controllers in nodejs and express
I'm trying to write a module to dynamically load all the files from my "controllers" folder, and then add them to the main express instance as routers.
The files inside the controllers export an ...
2
votes
1answer
54 views
List enrolled users & show checkmark if all activities are complete
I'm a beginner with rails working on a rails 4 project to use with my students. Users enroll in lessons; on enrollment, four activities are created for each user (expositions, scrambled, dictations, ...
1
vote
1answer
103 views
Laravel controller to update appointment requests
My question/refactor is similar to what is found here:
Laravel controller for form validation skinny
However, I feel that the answer is for 5.0 and not 5.2. This question does not pertain only to one ...
0
votes
0answers
24 views
Player session controller
I would like to refactor two of the controllers in the application, as both of them use the same functionality and therefore code is repeated. This is the approach I decided to use:
Base - controller
...
0
votes
0answers
38 views
Model controller relation
I am creating a PHP app in MVC (no framework). I am having a difficult time understanding how the Model and the Controller communicate in an optimal manner.
User.php
...
5
votes
0answers
73 views
Baseball player statistics controller
I'm somewhat new to JavaScript and Angular and read in Crockford's book that the hoisting function declaration can lead to issues. Any pointers on how to structure my file would be much appreciated.
<...
3
votes
1answer
128 views
Simple PHP MVC framework
I recently wrote this PHP MVC framework. Would like your review.
index.php
...
10
votes
1answer
131 views
ASP controller for tracking equipment
This was originally posted here. I'm hoping Code Review will be a little more helpful in giving me a concrete direction.
I've been working on a project based off of this tutorial.
Unfortunately, ...
1
vote
0answers
107 views
Using session variables to overcome enctype=“multipart/form-data”
I was trying to design a page which will help me upload documents for each case, along with some form data. I then realized request.getParameter() will not work ...
1
vote
1answer
186 views
Rails Grape API Endpoint optional params validation in update
I have the following rails grape api endpoint in the users resource:
...
2
votes
1answer
95 views
Table View Controller for selecting and saving user default preferences in an iOS app
This is the Swift code from one of the view controllers in my app that calculates a one rep maximum weight a person can theoretically lift. This particular view controller presents a list in a ...
3
votes
1answer
31 views
3
votes
1answer
48 views
Redirecting to the appropriate URL for some type of notification
I have a polymorphic notification model with action attribute. When user clicks on a notification he/she should be redirected to given page the notification refers to through notifiable.
What is the ...
5
votes
2answers
102 views
Rails controller to manage EC2 instances
I did a small sample application for an Interview. Since I didn't got accepted I would like your opinion on how to improve it.
The aux methods are private.
I have a ...
2
votes
1answer
133 views
Polymorphic event notification model in Rails
I have a polymorphic notification model. When user gets a notification he can get on the page of the notifiable to check out what happened exactly. For instance ...
3
votes
1answer
92 views
Spring controller code to group information by date
I'm using the Spring Framework in my web application and I'm curious as to whether my controller implementations are good or not.
I've used many Hashmaps to make a object that serves my purpose for ...
2
votes
1answer
274 views
Conversational bot architecture
I am currently building a small conversational bot, and I am struggling with the architecture. I use Facebook Messenger combined with Wit.ai's API and a Shopify store API. My rails app is the ...
2
votes
1answer
53 views
Controller to update a catalogue through an uploaded Excel file
The goal of following MVC controller code is to achieve following workflow:
User exports catalog (either with items of type Spread or of type Consumables) to Excel;
User makes changes in exported ...
1
vote
2answers
88 views
Controller method to manage SMS subscriptions
I have a huge method in my controller that is not DRY and just could use some general TLC. I'm new to ruby and I have not refactored my own code before, only contrived code you find on tutorials. ...
2
votes
3answers
1k views
AngularJS controller to fetch and display employee data from database
This is the code for an AngularJS controller that I've written:
...
5
votes
1answer
140 views
1
vote
1answer
50 views
Updating an auto-generated invoice (future) when current plan changes
I've built-out a mechanism to go and find an auto-generated invoice and update it with new information when a plan is changed or if users are added to the plan for the current billing period. It will ...
2
votes
1answer
183 views
Simple calculator in PHP utilizing MVC
I have been struggling with understanding Model, View, Service, Controller architecture and wrote some code.
Is my Model class the Model part of MVC (did I define ...
3
votes
0answers
52 views
Fat Controller Action - Deep nested filters
I have this really really long controller action and would like someone to help me break it down.
...
1
vote
1answer
178 views
Laravel 5 controller to list appointments by date range and by label
I am starting to get into OOP using PHP and MVC. I just want to know if this code is good practice. Is this how I should be using my controller and model, in its simplest form?
AppointmentsController:...
1
vote
1answer
57 views
Angular Box Color Exercise
I have completed an exercise where there are 4 different color boxes and 1 main box below them that is blank, when you click on one of the colored boxes, the main box changes to the color of the box ...
7
votes
1answer
744 views
Sails.js controller method for an admin to update a user account
I am new to Sails.js, Node.js, and web application development in general. My current understanding is that well-written controllers should be "skinny" meaning they should be as simple as possible, ...
3
votes
2answers
290 views
CakePHP static pages (without entity) but with dynamic content
I have a few pages that is not connected with entities (index page, terms of use page, email page).
Detailed description: In CakePHP, when you want to have a static page (such as index for example), ...
2
votes
0answers
108 views
Controller method to add a product, stored across three database tables
I have some questions on how I can improve this "add" action method in a controller.
Using a single form, the user can upload a product to be displayed on the site. A Product is composed of three ...
4
votes
1answer
101 views
CakePHP change 'miniMap' action and respect template
I have some questions on how I can improve this "action" (method) in "controller":
My template has a navbar with dynamic content (if the user is logged in a special button appears, his name appears ...
1
vote
1answer
245 views
Price calculator for motors and pumps
Note
This question was born in request to post more details from this question on Programmers. Since details may uncover new/different complexity, I'm asking another question here. I also will use ...
3
votes
1answer
43 views
Controllers for interacting with a vacation service
I have a controller called VacationController; in this controller, I retrieve a list of vacations which will be displayed in a grid.
In the grid, I have the option to create a new vacation through a ...
2
votes
1answer
88 views
Handling success and failure when retrieving product information
I've got an Angular controller where I have two functions that are repeated inside two functions:
...
1
vote
1answer
111 views
Monkey patch allowing virtual controller methods in PHP MVC application
I'm in the process of building a soon to be opensource CMS. 100% MVC. The basic idea is that a plugin should be able to add pages (read: methods) to a given controller, without needing to instantiate ...
2
votes
0answers
78 views
Business logic in controller
Led by the recently read premise "Lean controllers and fat models" I've come to the conclusion that my controller might be too fat at the moment.
Basically, what I'm trying to achieve is simple Edit ...
2
votes
2answers
56 views
Controller method to validate and save
I have built RESTful web services. The services endpoints have a similar logic:
If the input validation succeeds, do a database operation and return the result.
If the db operation fails, return the ...
2
votes
1answer
331 views
AngularJS to-do list controller
I am new to Angular. Am I following best practices here? I understand controllers should not do too much. My controller seems to have a lot of logic here. Can I do anything to improve it? It is just a ...
1
vote
1answer
48 views
Selecting orders submitted by a user, segregated by status
I have recently started using Laravel as my chosen framework. It is my first time using a framework. As I have made progress through my project, my controller methods have started to increase in size. ...